interface InventoryConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3Express.CfnDirectoryBucketPropsMixin.InventoryConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3express#CfnDirectoryBucketPropsMixin_InventoryConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3express.CfnDirectoryBucketPropsMixin.InventoryConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3express.CfnDirectoryBucketPropsMixin.InventoryConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3express » CfnDirectoryBucketPropsMixin » InventoryConfigurationProperty |
Specifies an inventory configuration 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 inventoryConfigurationProperty: s3express.CfnDirectoryBucketPropsMixin.InventoryConfigurationProperty = {
destination: {
bucketAccountId: 'bucketAccountId',
bucketArn: 'bucketArn',
format: 'format',
prefix: 'prefix',
},
enabled: false,
id: 'id',
includedObjectVersions: 'includedObjectVersions',
optionalFields: ['optionalFields'],
prefix: 'prefix',
scheduleFrequency: 'scheduleFrequency',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination? | IResolvable | Destination | Specifies information about where to publish inventory reports for an Amazon S3 Express bucket. |
| enabled? | boolean | IResolvable | Specifies whether the inventory is enabled or disabled. |
| id? | string | The ID used to identify the inventory configuration. |
| included | string | Object versions to include in the inventory list. |
| optional | string[] | Contains the optional fields that are included in the inventory results. |
| prefix? | string | The prefix that is prepended to all inventory results. |
| schedule | string | Specifies the schedule for generating inventory results. |
destination?
Type:
IResolvable | Destination
(optional)
Specifies information about where to publish inventory reports for an Amazon S3 Express bucket.
enabled?
Type:
boolean | IResolvable
(optional)
Specifies whether the inventory is enabled or disabled.
id?
Type:
string
(optional)
The ID used to identify the inventory configuration.
includedObjectVersions?
Type:
string
(optional)
Object versions to include in the inventory list.
optionalFields?
Type:
string[]
(optional)
Contains the optional fields that are included in the inventory results.
prefix?
Type:
string
(optional)
The prefix that is prepended to all inventory results.
scheduleFrequency?
Type:
string
(optional)
Specifies the schedule for generating inventory results.

.NET
Go
Java
Python
TypeScript