Interface CfnBucket.SourceSelectionCriteriaProperty

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

@Stability(Stable) public static interface CfnBucket.SourceSelectionCriteriaProperty extends software.amazon.jsii.JsiiSerializable
A container that describes additional filters for identifying the source objects that you want to replicate.

You can choose to enable or disable the replication of these objects.

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.*;
 SourceSelectionCriteriaProperty sourceSelectionCriteriaProperty = SourceSelectionCriteriaProperty.builder()
         .replicaModifications(ReplicaModificationsProperty.builder()
                 .status("status")
                 .build())
         .sseKmsEncryptedObjects(SseKmsEncryptedObjectsProperty.builder()
                 .status("status")
                 .build())
         .build();
 

See Also: