interface S3DestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BCMDataExports.CfnExportPropsMixin.S3DestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbcmdataexports#CfnExportPropsMixin_S3DestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bcmdataexports.CfnExportPropsMixin.S3DestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bcmdataexports.CfnExportPropsMixin.S3DestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bcmdataexports » CfnExportPropsMixin » S3DestinationProperty |
Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a data exports file.
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 s3DestinationProperty: bcmdataexports.CfnExportPropsMixin.S3DestinationProperty = {
s3Bucket: 's3Bucket',
s3OutputConfigurations: {
compression: 'compression',
format: 'format',
outputType: 'outputType',
overwrite: 'overwrite',
},
s3Prefix: 's3Prefix',
s3Region: 's3Region',
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | string | The name of the Amazon S3 bucket used as the destination of a data export file. |
| s3 | IResolvable | S3 | The output configuration for the data export. |
| s3 | string | The S3 path prefix you want prepended to the name of your data export. |
| s3 | string | The S3 bucket Region. |
s3Bucket?
Type:
string
(optional)
The name of the Amazon S3 bucket used as the destination of a data export file.
s3OutputConfigurations?
Type:
IResolvable | S3
(optional)
The output configuration for the data export.
s3Prefix?
Type:
string
(optional)
The S3 path prefix you want prepended to the name of your data export.
s3Region?
Type:
string
(optional)
The S3 bucket Region.

.NET
Go
Java
Python
TypeScript