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