interface InventoryTableConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3.CfnBucket.InventoryTableConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3#CfnBucket_InventoryTableConfigurationProperty |
Java | software.amazon.awscdk.services.s3.CfnBucket.InventoryTableConfigurationProperty |
Python | aws_cdk.aws_s3.CfnBucket.InventoryTableConfigurationProperty |
TypeScript | aws-cdk-lib » aws_s3 » CfnBucket » 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 { aws_s3 as s3 } from 'aws-cdk-lib';
const inventoryTableConfigurationProperty: s3.CfnBucket.InventoryTableConfigurationProperty = {
configurationState: 'configurationState',
// the properties below are optional
encryptionConfiguration: {
sseAlgorithm: 'sseAlgorithm',
// the properties below are optional
kmsKeyArn: 'kmsKeyArn',
},
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
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