Class: Aws::S3::Types::SourceSelectionCriteria
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::SourceSelectionCriteria
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass SourceSelectionCriteria data as a hash:
{
sse_kms_encrypted_objects: {
status: "Enabled", # required, accepts Enabled, Disabled
},
}
A container for filters that define which source objects should be replicated.
Instance Attribute Summary collapse
-
#sse_kms_encrypted_objects ⇒ Types::SseKmsEncryptedObjects
A container for filter information for the selection of S3 objects encrypted with AWS KMS.
Instance Attribute Details
#sse_kms_encrypted_objects ⇒ Types::SseKmsEncryptedObjects
A container for filter information for the selection of S3 objects encrypted with AWS KMS. If you include ‘SourceSelectionCriteria` in the replication configuration, this element is required.
9399 9400 9401 9402 |
# File 'lib/aws-sdk-s3/types.rb', line 9399 class SourceSelectionCriteria < Struct.new( :sse_kms_encrypted_objects) include Aws::Structure end |