interface DestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Express.CfnDirectoryBucket.DestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3express#CfnDirectoryBucket_DestinationProperty |
Java | software.amazon.awscdk.services.s3express.CfnDirectoryBucket.DestinationProperty |
Python | aws_cdk.aws_s3express.CfnDirectoryBucket.DestinationProperty |
TypeScript | aws-cdk-lib » aws_s3express » CfnDirectoryBucket » 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-lib';
const destinationProperty: s3express.CfnDirectoryBucket.DestinationProperty = {
bucketArn: 'bucketArn',
format: 'format',
// the properties below are optional
bucketAccountId: 'bucketAccountId',
prefix: 'prefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| bucket | string | The account ID that owns the destination S3 bucket. |
| prefix? | string | The prefix to use when exporting data. |
bucketArn
Type:
string
The Amazon Resource Name (ARN) of the destination Amazon S3 bucket to which data is exported.
format
Type:
string
Specifies the file format used when exporting data to Amazon S3.
bucketAccountId?
Type:
string
(optional)
The account ID that owns the destination S3 bucket.
prefix?
Type:
string
(optional)
The prefix to use when exporting data.
The prefix is prepended to all results.

.NET
Go
Java
Python
TypeScript