interface InventoryTableConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Mixins.CfnBucketPropsMixin.InventoryTableConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/mixins#CfnBucketPropsMixin_InventoryTableConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3.mixins.CfnBucketPropsMixin.InventoryTableConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_s3.mixins.CfnBucketPropsMixin.InventoryTableConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3 » mixins » CfnBucketPropsMixin » InventoryTableConfigurationProperty |
The inventory table configuration for an S3 Metadata configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as s3_mixins } from '@aws-cdk/mixins-preview/aws-s3';
const inventoryTableConfigurationProperty: s3_mixins.CfnBucketPropsMixin.InventoryTableConfigurationProperty = {
configurationState: 'configurationState',
encryptionConfiguration: {
kmsKeyArn: 'kmsKeyArn',
sseAlgorithm: 'sseAlgorithm',
},
tableArn: 'tableArn',
tableName: 'tableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration | string | The configuration state of the inventory table, indicating whether the inventory table is enabled or disabled. |
| encryption | IResolvable | Metadata | The encryption configuration for the inventory table. |
| table | string | The Amazon Resource Name (ARN) for the inventory table. |
| table | string | The name of the inventory table. |
configurationState?
Type:
string
(optional)
The configuration state of the inventory table, indicating whether the inventory table is enabled or disabled.
encryptionConfiguration?
Type:
IResolvable | Metadata
(optional)
The encryption configuration for the inventory table.
tableArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) for the inventory table.
tableName?
Type:
string
(optional)
The name of the inventory table.

.NET
Go
Java
Python
TypeScript