interface ExportProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BCMDataExports.Mixins.CfnExportPropsMixin.ExportProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbcmdataexports/mixins#CfnExportPropsMixin_ExportProperty |
Java | software.amazon.awscdk.mixins.preview.services.bcmdataexports.mixins.CfnExportPropsMixin.ExportProperty |
Python | aws_cdk.mixins_preview.aws_bcmdataexports.mixins.CfnExportPropsMixin.ExportProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bcmdataexports » mixins » CfnExportPropsMixin » ExportProperty |
The details that are available for an export.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bcmdataexports_mixins } from '@aws-cdk/mixins-preview/aws-bcmdataexports';
const exportProperty: bcmdataexports_mixins.CfnExportPropsMixin.ExportProperty = {
dataQuery: {
queryStatement: 'queryStatement',
tableConfigurations: {
tableConfigurationsKey: {
tableConfigurationsKey: 'tableConfigurations',
},
},
},
description: 'description',
destinationConfigurations: {
s3Destination: {
s3Bucket: 's3Bucket',
s3OutputConfigurations: {
compression: 'compression',
format: 'format',
outputType: 'outputType',
overwrite: 'overwrite',
},
s3Prefix: 's3Prefix',
s3Region: 's3Region',
},
},
exportArn: 'exportArn',
name: 'name',
refreshCadence: {
frequency: 'frequency',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| data | IResolvable | Data | The data query for this specific data export. |
| description? | string | The description for this specific data export. |
| destination | IResolvable | Destination | The destination configuration for this specific data export. |
| export | string | The Amazon Resource Name (ARN) for this export. |
| name? | string | The name of this specific data export. |
| refresh | IResolvable | Refresh | The cadence for AWS to update the export in your S3 bucket. |
dataQuery?
Type:
IResolvable | Data
(optional)
The data query for this specific data export.
description?
Type:
string
(optional)
The description for this specific data export.
destinationConfigurations?
Type:
IResolvable | Destination
(optional)
The destination configuration for this specific data export.
exportArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) for this export.
name?
Type:
string
(optional)
The name of this specific data export.
refreshCadence?
Type:
IResolvable | Refresh
(optional)
The cadence for AWS to update the export in your S3 bucket.

.NET
Go
Java
Python
TypeScript