Interface CfnDirectoryBucket.InventoryConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDirectoryBucket.InventoryConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDirectoryBucket

@Stability(Stable) public static interface CfnDirectoryBucket.InventoryConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.s3express.*;
 InventoryConfigurationProperty inventoryConfigurationProperty = InventoryConfigurationProperty.builder()
         .destination(DestinationProperty.builder()
                 .bucketArn("bucketArn")
                 .format("format")
                 // the properties below are optional
                 .bucketAccountId("bucketAccountId")
                 .prefix("prefix")
                 .build())
         .enabled(false)
         .id("id")
         .includedObjectVersions("includedObjectVersions")
         .scheduleFrequency("scheduleFrequency")
         // the properties below are optional
         .optionalFields(List.of("optionalFields"))
         .prefix("prefix")
         .build();
 

See Also: