Interface CfnDirectoryBucketPropsMixin.InventoryConfigurationProperty

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

@Stability(Stable) public static interface CfnDirectoryBucketPropsMixin.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.cfnpropertymixins.services.s3express.*;
 InventoryConfigurationProperty inventoryConfigurationProperty = InventoryConfigurationProperty.builder()
         .destination(DestinationProperty.builder()
                 .bucketAccountId("bucketAccountId")
                 .bucketArn("bucketArn")
                 .format("format")
                 .prefix("prefix")
                 .build())
         .enabled(false)
         .id("id")
         .includedObjectVersions("includedObjectVersions")
         .optionalFields(List.of("optionalFields"))
         .prefix("prefix")
         .scheduleFrequency("scheduleFrequency")
         .build();
 

See Also: