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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBucket.SourceSelectionCriteriaPropertystatic final classAn implementation forCfnBucket.SourceSelectionCriteriaProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getReplicaModifications
A filter that you can specify for selection for modifications on replicas.Returns union: either
IResolvableorCfnBucket.ReplicaModificationsProperty- See Also:
-
getSseKmsEncryptedObjects
A container for filter information for the selection of Amazon S3 objects encrypted with AWS KMS.Returns union: either
IResolvableorCfnBucket.SseKmsEncryptedObjectsProperty- See Also:
-
builder
-