interface DestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3Express.CfnDirectoryBucketPropsMixin.DestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3express#CfnDirectoryBucketPropsMixin_DestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3express.CfnDirectoryBucketPropsMixin.DestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3express.CfnDirectoryBucketPropsMixin.DestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3express » CfnDirectoryBucketPropsMixin » DestinationProperty |
Specifies information about where to publish inventory reports for an Amazon S3 Express bucket.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3express as s3express } from '@aws-cdk/cfn-property-mixins';
const destinationProperty: s3express.CfnDirectoryBucketPropsMixin.DestinationProperty = {
bucketAccountId: 'bucketAccountId',
bucketArn: 'bucketArn',
format: 'format',
prefix: 'prefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The account ID that owns the destination S3 bucket. |
| bucket | string | The Amazon Resource Name (ARN) of the destination Amazon S3 bucket to which data is exported. |
| format? | string | Specifies the file format used when exporting data to Amazon S3. |
| prefix? | string | The prefix to use when exporting data. |
bucketAccountId?
Type:
string
(optional)
The account ID that owns the destination S3 bucket.
bucketArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the destination Amazon S3 bucket to which data is exported.
format?
Type:
string
(optional)
Specifies the file format used when exporting data to Amazon S3.
prefix?
Type:
string
(optional)
The prefix to use when exporting data.
The prefix is prepended to all results.

.NET
Go
Java
Python
TypeScript