> For the complete documentation index, see [llms.txt](https://knowledgebase.fabricdata.com/studio/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://knowledgebase.fabricdata.com/studio/integrations-and-apis/origin-studio-production-api/data-warehouse-settings.md).

# Data Warehouse Settings

Manage your scheduled data exports.

## List data warehouse settings

> Retrieve your current data export settings. Exports can only be set up once, so this returns at most one item. An empty list means exports have not been turned on yet. Available to Enterprise-plan customers only.

```json
{"openapi":"3.0.3","info":{"title":"Fabric API - Audit","version":"0.9.2264"},"tags":[{"name":"Data Warehouse Settings","description":"Manage your scheduled data exports."}],"servers":[{"url":"{protocol}://{domain}/{basePath}","variables":{"protocol":{"enum":["http","https"],"default":"https"},"domain":{"default":"api.studio.fabricdata.com"},"basePath":{"default":"v1"}}}],"security":[{"jwt-apikey-authorizer":[]}],"components":{"securitySchemes":{"jwt-apikey-authorizer":{"type":"apiKey","name":"Authorization","in":"header"}},"schemas":{"DataWarehouseSettingsFindManyResponse":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IDataWarehouseSettingsFindManyResponse","description":"Your data export settings. Exports can only be set up once, so this contains at most one item.","type":"object","additionalProperties":false,"required":["data"],"properties":{"data":{"type":"array","items":{"type":"object","required":["id","type","attributes"],"additionalProperties":false,"properties":{"id":{"type":"string","description":"The export settings ID"},"type":{"type":"string","enum":["dataWarehouseSettings"]},"attributes":{"$ref":"#/components/schemas/DataWarehouseSettingsAttributes"}}}}}},"DataWarehouseSettingsAttributes":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IDataWarehouseSettingsAttributes","description":"Your data export settings","type":"object","additionalProperties":false,"required":["credentialType","format","schedule"],"properties":{"credentialType":{"type":"string","enum":["iam-role","access-key"],"description":"How your exported data is accessed in the storage bucket"},"iamRoleArn":{"type":["string","null"],"description":"The AWS IAM role allowed to read your exported data from the storage bucket. Used when credentialType is 'iam-role'. Removing it turns off exports."},"accessKeyId":{"type":["string","null"],"description":"The access key ID, shown when credentialType is 'access-key'. The matching secret is never shown here."},"format":{"type":"string","enum":["parquet","csv"],"description":"The file format for your exported data"},"schedule":{"type":"string","enum":["once-a-day","twice-a-day"],"description":"How often your data is exported"},"exportLocation":{"type":["string","null"],"description":"The S3 URI your exported data is written to, e.g. s3://your-export-bucket/. Null when this deployment has no export storage configured."},"lastExportDate":{"type":["string","null"],"format":"date-time","description":"When your data was most recently exported"},"lastExportStatus":{"type":["string","null"],"enum":["success","failure",null],"description":"Whether the most recent export succeeded or failed"},"created":{"type":"string","format":"date-time","description":"When these settings were created"},"updated":{"type":"string","format":"date-time","description":"When these settings were last updated"}}},"ErrorResponse":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IErrorResponse","description":"Standard JSON:API error response returned when a request fails. Contains an `errors` array with one or more error objects (status, title, and optional detail).","type":"object","required":["errors"],"additionalProperties":false,"properties":{"errors":{"type":"array","items":{"$ref":"#/components/schemas/Error"}}}},"Error":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IError","description":"A single JSON:API error object. `status` is the HTTP status code as a string. `title` is a short, human-readable summary. `detail` provides optional context. `meta` may include structured conflict or authorization details.","type":"object","additionalProperties":false,"required":["status","title"],"properties":{"status":{"type":"string"},"title":{"type":"string"},"detail":{"type":"string"},"source":{"type":"object","description":"A JSON Pointer to the request field that caused the error (e.g. `/data/attributes/title`).","properties":{"pointer":{"type":"string"}}},"meta":{"type":"object","additionalProperties":true,"properties":{"stack":{"type":"string","description":"Error stack trace. Only present in non-production environments."},"conflictItems":{"type":"array","items":{"type":"object","properties":{"key":{"type":"string"},"value":{"type":"string"}}}},"unauthorizedItems":{"type":"array","items":{"type":"string"}}}}}}}},"paths":{"/dataWarehouseSettings":{"get":{"summary":"List data warehouse settings","operationId":"dataWarehouseSettingsFindMany","description":"Retrieve your current data export settings. Exports can only be set up once, so this returns at most one item. An empty list means exports have not been turned on yet. Available to Enterprise-plan customers only.","tags":["Data Warehouse Settings"],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DataWarehouseSettingsFindManyResponse"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden (your plan does not include data exports, or you do not have permission)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}}}
```

## Enable data warehouse exports

> Turn on scheduled data exports. Returns an error if exports are already turned on. Available to Enterprise-plan customers only.

```json
{"openapi":"3.0.3","info":{"title":"Fabric API - Audit","version":"0.9.2264"},"tags":[{"name":"Data Warehouse Settings","description":"Manage your scheduled data exports."}],"servers":[{"url":"{protocol}://{domain}/{basePath}","variables":{"protocol":{"enum":["http","https"],"default":"https"},"domain":{"default":"api.studio.fabricdata.com"},"basePath":{"default":"v1"}}}],"security":[{"jwt-apikey-authorizer":[]}],"components":{"securitySchemes":{"jwt-apikey-authorizer":{"type":"apiKey","name":"Authorization","in":"header"}},"schemas":{"DataWarehouseSettingsCreateOneRequest":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IDataWarehouseSettingsCreateOneRequest","description":"Request body for turning on data exports","type":"object","required":["data"],"additionalProperties":false,"properties":{"meta":{"$ref":"#/components/schemas/WriteRequestMeta"},"data":{"type":"object","required":["type","attributes"],"additionalProperties":false,"properties":{"type":{"type":"string","enum":["dataWarehouseSettings"]},"attributes":{"type":"object","required":["credentialType"],"additionalProperties":false,"properties":{"credentialType":{"type":"string","enum":["iam-role","access-key"]},"iamRoleArn":{"type":"string","description":"The AWS IAM role allowed to read your exported data. Required when credentialType is 'iam-role'."},"format":{"type":"string","enum":["parquet","csv"]},"schedule":{"type":"string","enum":["once-a-day","twice-a-day"],"description":"How often your data is exported. Defaults to once-a-day when omitted."}}}}}}},"WriteRequestMeta":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IWriteRequestMeta","description":"Optional audit metadata for a write request. `audit.source` is the issuing surface/channel (e.g. studio-web, mcp, api, system); `audit.reason` is a free-text justification. Both are optional and length-capped.","type":"object","additionalProperties":false,"properties":{"audit":{"type":"object","additionalProperties":false,"properties":{"source":{"type":"string","maxLength":64},"reason":{"type":"string","maxLength":256}}}}},"DataWarehouseSettingsResponse":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IDataWarehouseSettingsResponse","description":"Your data export settings","type":"object","additionalProperties":false,"required":["data"],"properties":{"data":{"type":"object","required":["id","type","attributes"],"additionalProperties":false,"properties":{"id":{"type":"string","description":"The export settings ID"},"type":{"type":"string","enum":["dataWarehouseSettings"]},"attributes":{"$ref":"#/components/schemas/DataWarehouseSettingsAttributes"}}},"meta":{"type":"object","additionalProperties":false,"description":"Included only when a new access key was issued by this request (turning on exports with credentialType 'access-key', or switching to it). The secret is shown once and never stored, so save it securely.","properties":{"accessKeyId":{"type":"string","description":"The access key ID for reading your exported data"},"accessKeySecret":{"type":"string","description":"The secret for your access key. Shown once and never stored or shown again, so save it securely."}}}}},"DataWarehouseSettingsAttributes":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IDataWarehouseSettingsAttributes","description":"Your data export settings","type":"object","additionalProperties":false,"required":["credentialType","format","schedule"],"properties":{"credentialType":{"type":"string","enum":["iam-role","access-key"],"description":"How your exported data is accessed in the storage bucket"},"iamRoleArn":{"type":["string","null"],"description":"The AWS IAM role allowed to read your exported data from the storage bucket. Used when credentialType is 'iam-role'. Removing it turns off exports."},"accessKeyId":{"type":["string","null"],"description":"The access key ID, shown when credentialType is 'access-key'. The matching secret is never shown here."},"format":{"type":"string","enum":["parquet","csv"],"description":"The file format for your exported data"},"schedule":{"type":"string","enum":["once-a-day","twice-a-day"],"description":"How often your data is exported"},"exportLocation":{"type":["string","null"],"description":"The S3 URI your exported data is written to, e.g. s3://your-export-bucket/. Null when this deployment has no export storage configured."},"lastExportDate":{"type":["string","null"],"format":"date-time","description":"When your data was most recently exported"},"lastExportStatus":{"type":["string","null"],"enum":["success","failure",null],"description":"Whether the most recent export succeeded or failed"},"created":{"type":"string","format":"date-time","description":"When these settings were created"},"updated":{"type":"string","format":"date-time","description":"When these settings were last updated"}}},"ErrorResponse":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IErrorResponse","description":"Standard JSON:API error response returned when a request fails. Contains an `errors` array with one or more error objects (status, title, and optional detail).","type":"object","required":["errors"],"additionalProperties":false,"properties":{"errors":{"type":"array","items":{"$ref":"#/components/schemas/Error"}}}},"Error":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IError","description":"A single JSON:API error object. `status` is the HTTP status code as a string. `title` is a short, human-readable summary. `detail` provides optional context. `meta` may include structured conflict or authorization details.","type":"object","additionalProperties":false,"required":["status","title"],"properties":{"status":{"type":"string"},"title":{"type":"string"},"detail":{"type":"string"},"source":{"type":"object","description":"A JSON Pointer to the request field that caused the error (e.g. `/data/attributes/title`).","properties":{"pointer":{"type":"string"}}},"meta":{"type":"object","additionalProperties":true,"properties":{"stack":{"type":"string","description":"Error stack trace. Only present in non-production environments."},"conflictItems":{"type":"array","items":{"type":"object","properties":{"key":{"type":"string"},"value":{"type":"string"}}}},"unauthorizedItems":{"type":"array","items":{"type":"string"}}}}}}}},"paths":{"/dataWarehouseSettings":{"post":{"summary":"Enable data warehouse exports","operationId":"dataWarehouseSettingsCreateOne","description":"Turn on scheduled data exports. Returns an error if exports are already turned on. Available to Enterprise-plan customers only.","tags":["Data Warehouse Settings"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DataWarehouseSettingsCreateOneRequest"}}}},"responses":{"201":{"description":"Created OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DataWarehouseSettingsResponse"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden (your plan does not include data exports, or you do not have permission)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"409":{"description":"Conflict (exports are already turned on)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"422":{"description":"Unprocessable Entity (the IAM role provided is not valid)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}}}
```

## Get data warehouse settings

> Retrieve your data export settings by ID. Available to Enterprise-plan customers only.

```json
{"openapi":"3.0.3","info":{"title":"Fabric API - Audit","version":"0.9.2264"},"tags":[{"name":"Data Warehouse Settings","description":"Manage your scheduled data exports."}],"servers":[{"url":"{protocol}://{domain}/{basePath}","variables":{"protocol":{"enum":["http","https"],"default":"https"},"domain":{"default":"api.studio.fabricdata.com"},"basePath":{"default":"v1"}}}],"security":[{"jwt-apikey-authorizer":[]}],"components":{"securitySchemes":{"jwt-apikey-authorizer":{"type":"apiKey","name":"Authorization","in":"header"}},"schemas":{"DataWarehouseSettingsResponse":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IDataWarehouseSettingsResponse","description":"Your data export settings","type":"object","additionalProperties":false,"required":["data"],"properties":{"data":{"type":"object","required":["id","type","attributes"],"additionalProperties":false,"properties":{"id":{"type":"string","description":"The export settings ID"},"type":{"type":"string","enum":["dataWarehouseSettings"]},"attributes":{"$ref":"#/components/schemas/DataWarehouseSettingsAttributes"}}},"meta":{"type":"object","additionalProperties":false,"description":"Included only when a new access key was issued by this request (turning on exports with credentialType 'access-key', or switching to it). The secret is shown once and never stored, so save it securely.","properties":{"accessKeyId":{"type":"string","description":"The access key ID for reading your exported data"},"accessKeySecret":{"type":"string","description":"The secret for your access key. Shown once and never stored or shown again, so save it securely."}}}}},"DataWarehouseSettingsAttributes":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IDataWarehouseSettingsAttributes","description":"Your data export settings","type":"object","additionalProperties":false,"required":["credentialType","format","schedule"],"properties":{"credentialType":{"type":"string","enum":["iam-role","access-key"],"description":"How your exported data is accessed in the storage bucket"},"iamRoleArn":{"type":["string","null"],"description":"The AWS IAM role allowed to read your exported data from the storage bucket. Used when credentialType is 'iam-role'. Removing it turns off exports."},"accessKeyId":{"type":["string","null"],"description":"The access key ID, shown when credentialType is 'access-key'. The matching secret is never shown here."},"format":{"type":"string","enum":["parquet","csv"],"description":"The file format for your exported data"},"schedule":{"type":"string","enum":["once-a-day","twice-a-day"],"description":"How often your data is exported"},"exportLocation":{"type":["string","null"],"description":"The S3 URI your exported data is written to, e.g. s3://your-export-bucket/. Null when this deployment has no export storage configured."},"lastExportDate":{"type":["string","null"],"format":"date-time","description":"When your data was most recently exported"},"lastExportStatus":{"type":["string","null"],"enum":["success","failure",null],"description":"Whether the most recent export succeeded or failed"},"created":{"type":"string","format":"date-time","description":"When these settings were created"},"updated":{"type":"string","format":"date-time","description":"When these settings were last updated"}}},"ErrorResponse":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IErrorResponse","description":"Standard JSON:API error response returned when a request fails. Contains an `errors` array with one or more error objects (status, title, and optional detail).","type":"object","required":["errors"],"additionalProperties":false,"properties":{"errors":{"type":"array","items":{"$ref":"#/components/schemas/Error"}}}},"Error":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IError","description":"A single JSON:API error object. `status` is the HTTP status code as a string. `title` is a short, human-readable summary. `detail` provides optional context. `meta` may include structured conflict or authorization details.","type":"object","additionalProperties":false,"required":["status","title"],"properties":{"status":{"type":"string"},"title":{"type":"string"},"detail":{"type":"string"},"source":{"type":"object","description":"A JSON Pointer to the request field that caused the error (e.g. `/data/attributes/title`).","properties":{"pointer":{"type":"string"}}},"meta":{"type":"object","additionalProperties":true,"properties":{"stack":{"type":"string","description":"Error stack trace. Only present in non-production environments."},"conflictItems":{"type":"array","items":{"type":"object","properties":{"key":{"type":"string"},"value":{"type":"string"}}}},"unauthorizedItems":{"type":"array","items":{"type":"string"}}}}}}}},"paths":{"/dataWarehouseSettings/{id}":{"get":{"summary":"Get data warehouse settings","operationId":"dataWarehouseSettingsFindOne","description":"Retrieve your data export settings by ID. Available to Enterprise-plan customers only.","tags":["Data Warehouse Settings"],"parameters":[{"name":"id","description":"The ID of the export settings to retrieve","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DataWarehouseSettingsResponse"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden (your plan does not include data exports, or you do not have permission)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"404":{"description":"Not Found (exports are not turned on, or the ID does not match)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}}}
```

## Update data warehouse settings

> Update your data export settings. Send only the fields you want to change. Available to Enterprise-plan customers only.

```json
{"openapi":"3.0.3","info":{"title":"Fabric API - Audit","version":"0.9.2264"},"tags":[{"name":"Data Warehouse Settings","description":"Manage your scheduled data exports."}],"servers":[{"url":"{protocol}://{domain}/{basePath}","variables":{"protocol":{"enum":["http","https"],"default":"https"},"domain":{"default":"api.studio.fabricdata.com"},"basePath":{"default":"v1"}}}],"security":[{"jwt-apikey-authorizer":[]}],"components":{"securitySchemes":{"jwt-apikey-authorizer":{"type":"apiKey","name":"Authorization","in":"header"}},"schemas":{"DataWarehouseSettingsUpdateOneRequest":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IDataWarehouseSettingsUpdateOneRequest","description":"Request body for updating your data export settings. Send only the fields you want to change.","type":"object","required":["data"],"additionalProperties":false,"properties":{"meta":{"$ref":"#/components/schemas/WriteRequestMeta"},"data":{"type":"object","required":["type","attributes"],"additionalProperties":false,"properties":{"id":{"type":"string"},"type":{"type":"string","enum":["dataWarehouseSettings"]},"attributes":{"type":"object","additionalProperties":false,"minProperties":1,"properties":{"credentialType":{"type":"string","enum":["iam-role","access-key"]},"iamRoleArn":{"type":["string","null"],"description":"Set to null to remove access and turn off exports"},"format":{"type":"string","enum":["parquet","csv"]},"schedule":{"type":"string","enum":["once-a-day","twice-a-day"]}}}}}}},"WriteRequestMeta":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IWriteRequestMeta","description":"Optional audit metadata for a write request. `audit.source` is the issuing surface/channel (e.g. studio-web, mcp, api, system); `audit.reason` is a free-text justification. Both are optional and length-capped.","type":"object","additionalProperties":false,"properties":{"audit":{"type":"object","additionalProperties":false,"properties":{"source":{"type":"string","maxLength":64},"reason":{"type":"string","maxLength":256}}}}},"DataWarehouseSettingsResponse":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IDataWarehouseSettingsResponse","description":"Your data export settings","type":"object","additionalProperties":false,"required":["data"],"properties":{"data":{"type":"object","required":["id","type","attributes"],"additionalProperties":false,"properties":{"id":{"type":"string","description":"The export settings ID"},"type":{"type":"string","enum":["dataWarehouseSettings"]},"attributes":{"$ref":"#/components/schemas/DataWarehouseSettingsAttributes"}}},"meta":{"type":"object","additionalProperties":false,"description":"Included only when a new access key was issued by this request (turning on exports with credentialType 'access-key', or switching to it). The secret is shown once and never stored, so save it securely.","properties":{"accessKeyId":{"type":"string","description":"The access key ID for reading your exported data"},"accessKeySecret":{"type":"string","description":"The secret for your access key. Shown once and never stored or shown again, so save it securely."}}}}},"DataWarehouseSettingsAttributes":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IDataWarehouseSettingsAttributes","description":"Your data export settings","type":"object","additionalProperties":false,"required":["credentialType","format","schedule"],"properties":{"credentialType":{"type":"string","enum":["iam-role","access-key"],"description":"How your exported data is accessed in the storage bucket"},"iamRoleArn":{"type":["string","null"],"description":"The AWS IAM role allowed to read your exported data from the storage bucket. Used when credentialType is 'iam-role'. Removing it turns off exports."},"accessKeyId":{"type":["string","null"],"description":"The access key ID, shown when credentialType is 'access-key'. The matching secret is never shown here."},"format":{"type":"string","enum":["parquet","csv"],"description":"The file format for your exported data"},"schedule":{"type":"string","enum":["once-a-day","twice-a-day"],"description":"How often your data is exported"},"exportLocation":{"type":["string","null"],"description":"The S3 URI your exported data is written to, e.g. s3://your-export-bucket/. Null when this deployment has no export storage configured."},"lastExportDate":{"type":["string","null"],"format":"date-time","description":"When your data was most recently exported"},"lastExportStatus":{"type":["string","null"],"enum":["success","failure",null],"description":"Whether the most recent export succeeded or failed"},"created":{"type":"string","format":"date-time","description":"When these settings were created"},"updated":{"type":"string","format":"date-time","description":"When these settings were last updated"}}},"ErrorResponse":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IErrorResponse","description":"Standard JSON:API error response returned when a request fails. Contains an `errors` array with one or more error objects (status, title, and optional detail).","type":"object","required":["errors"],"additionalProperties":false,"properties":{"errors":{"type":"array","items":{"$ref":"#/components/schemas/Error"}}}},"Error":{"$schema":"http://json-schema.org/draft-07/schema#","title":"IError","description":"A single JSON:API error object. `status` is the HTTP status code as a string. `title` is a short, human-readable summary. `detail` provides optional context. `meta` may include structured conflict or authorization details.","type":"object","additionalProperties":false,"required":["status","title"],"properties":{"status":{"type":"string"},"title":{"type":"string"},"detail":{"type":"string"},"source":{"type":"object","description":"A JSON Pointer to the request field that caused the error (e.g. `/data/attributes/title`).","properties":{"pointer":{"type":"string"}}},"meta":{"type":"object","additionalProperties":true,"properties":{"stack":{"type":"string","description":"Error stack trace. Only present in non-production environments."},"conflictItems":{"type":"array","items":{"type":"object","properties":{"key":{"type":"string"},"value":{"type":"string"}}}},"unauthorizedItems":{"type":"array","items":{"type":"string"}}}}}}}},"paths":{"/dataWarehouseSettings/{id}":{"patch":{"summary":"Update data warehouse settings","operationId":"dataWarehouseSettingsUpdateOne","description":"Update your data export settings. Send only the fields you want to change. Available to Enterprise-plan customers only.","tags":["Data Warehouse Settings"],"parameters":[{"name":"id","description":"The ID of the export settings to update","in":"path","required":true,"schema":{"type":"string"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DataWarehouseSettingsUpdateOneRequest"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DataWarehouseSettingsResponse"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden (your plan does not include data exports, or you do not have permission)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"404":{"description":"Not Found (exports are not turned on)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"422":{"description":"Unprocessable Entity (the IAM role provided is not valid)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}}}
```
