Interface CfnBucket.TargetObjectKeyFormatProperty

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

@Stability(Stable) public static interface CfnBucket.TargetObjectKeyFormatProperty extends software.amazon.jsii.JsiiSerializable
Amazon S3 key format for log objects.

Only one format, PartitionedPrefix or SimplePrefix, is allowed.

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.s3.*;
 Object simplePrefix;
 TargetObjectKeyFormatProperty targetObjectKeyFormatProperty = TargetObjectKeyFormatProperty.builder()
         .partitionedPrefix(PartitionedPrefixProperty.builder()
                 .partitionDateSource("partitionDateSource")
                 .build())
         .simplePrefix(simplePrefix)
         .build();
 

See Also: