AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Creates a data export and specifies the data query, the delivery preference, and any optional resource tags.

A DataQuery consists of both a QueryStatement and TableConfigurations.

The QueryStatement is an SQL statement. Data Exports only supports a limited subset of the SQL syntax. For more information on the SQL syntax that is supported, see Data query. To view the available tables and columns, see the Data Exports table dictionary.

The TableConfigurations is a collection of specified TableProperties for the table being queried in the QueryStatement. TableProperties are additional configurations you can provide to change the data and schema of a table. Each table can have different TableProperties. However, tables are not required to have any TableProperties. Each table property has a default value that it assumes if not specified. For more information on table configurations, see Data query. To view the table properties available for each table, see the Data Exports table dictionary or use the ListTables API to get a response of all tables and their available properties.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to CreateExportAsync.

Namespace: Amazon.BCMDataExports
Assembly: AWSSDK.BCMDataExports.dll
Version: 3.x.y.z

Syntax

C#
public abstract CreateExportResponse CreateExport(
         CreateExportRequest request
)

Parameters

request
Type: Amazon.BCMDataExports.Model.CreateExportRequest

Container for the necessary parameters to execute the CreateExport service method.

Return Value


The response from the CreateExport service method, as returned by BCMDataExports.

Exceptions

ExceptionCondition
InternalServerException An error on the server occurred during the processing of your request. Try again later.
ServiceQuotaExceededException You've reached the limit on the number of resources you can create, or exceeded the size of an individual resource.
ThrottlingException The request was denied due to request throttling.
ValidationException The input fails to satisfy the constraints specified by an Amazon Web Services service.

Version Information

.NET Framework:
Supported in: 4.5 and newer, 3.5

See Also