interface CfnExportMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BCMDataExports.CfnExportMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbcmdataexports#CfnExportMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bcmdataexports.CfnExportMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bcmdataexports.CfnExportMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bcmdataexports » 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 { aws_bcmdataexports as bcmdataexports } from '@aws-cdk/cfn-property-mixins';
const cfnExportMixinProps: bcmdataexports.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