interface S3DestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BCMDataExports.Mixins.CfnExportPropsMixin.S3DestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbcmdataexports/mixins#CfnExportPropsMixin_S3DestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bcmdataexports.mixins.CfnExportPropsMixin.S3DestinationProperty |
Python | aws_cdk.mixins_preview.aws_bcmdataexports.mixins.CfnExportPropsMixin.S3DestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bcmdataexports » mixins » 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 { mixins as bcmdataexports_mixins } from '@aws-cdk/mixins-preview/aws-bcmdataexports';
const s3DestinationProperty: bcmdataexports_mixins.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