interface DestinationConfigurationsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BCMDataExports.Mixins.CfnExportPropsMixin.DestinationConfigurationsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbcmdataexports/mixins#CfnExportPropsMixin_DestinationConfigurationsProperty |
Java | software.amazon.awscdk.mixins.preview.services.bcmdataexports.mixins.CfnExportPropsMixin.DestinationConfigurationsProperty |
Python | aws_cdk.mixins_preview.aws_bcmdataexports.mixins.CfnExportPropsMixin.DestinationConfigurationsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bcmdataexports » mixins » CfnExportPropsMixin » DestinationConfigurationsProperty |
The destinations used for data exports.
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 destinationConfigurationsProperty: bcmdataexports_mixins.CfnExportPropsMixin.DestinationConfigurationsProperty = {
s3Destination: {
s3Bucket: 's3Bucket',
s3OutputConfigurations: {
compression: 'compression',
format: 'format',
outputType: 'outputType',
overwrite: 'overwrite',
},
s3Prefix: 's3Prefix',
s3Region: 's3Region',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | An object that describes the destination of the data exports file. |
s3Destination?
Type:
IResolvable | S3
(optional)
An object that describes the destination of the data exports file.

.NET
Go
Java
Python
TypeScript