interface CfnExportMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BCMDataExports.Mixins.CfnExportMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbcmdataexports/mixins#CfnExportMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.bcmdataexports.mixins.CfnExportMixinProps |
Python | aws_cdk.mixins_preview.aws_bcmdataexports.mixins.CfnExportMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_bcmdataexports » mixins » CfnExportMixinProps |
Properties for CfnExportPropsMixin.
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 cfnExportMixinProps: bcmdataexports_mixins.CfnExportMixinProps = {
export: {
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',
},
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| export? | IResolvable | Export | The details that are available for an export. |
| tags? | Resource[] |
export?
Type:
IResolvable | Export
(optional)
The details that are available for an export.
tags?
Type:
Resource[]
(optional)

.NET
Go
Java
Python
TypeScript