interface DestinationConfigurationsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BCMDataExports.CfnExport.DestinationConfigurationsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbcmdataexports#CfnExport_DestinationConfigurationsProperty |
Java | software.amazon.awscdk.services.bcmdataexports.CfnExport.DestinationConfigurationsProperty |
Python | aws_cdk.aws_bcmdataexports.CfnExport.DestinationConfigurationsProperty |
TypeScript | aws-cdk-lib » aws_bcmdataexports » CfnExport » 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-lib';
const destinationConfigurationsProperty: bcmdataexports.CfnExport.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
An object that describes the destination of the data exports file.

.NET
Go
Java
Python
TypeScript