Class: Aws::S3::Types::ReplicaModifications
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::ReplicaModifications
- Defined in:
- gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass ReplicaModifications data as a hash:
{
status: "Enabled", # required, accepts Enabled, Disabled
}
A filter that you can specify for selection for modifications on
replicas. Amazon S3 doesn't replicate replica modifications by
default. In the latest version of replication configuration (when
Filter
is specified), you can specify this element and set the
status to Enabled
to replicate modifications on replicas.
Filter
element, Amazon S3 assumes that the
replication configuration is the earlier version, V1. In the earlier
version, this element is not allowed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#status ⇒ String
Specifies whether Amazon S3 replicates modifications on replicas.
Instance Attribute Details
#status ⇒ String
Specifies whether Amazon S3 replicates modifications on replicas.
14477 14478 14479 14480 14481 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 14477 class ReplicaModifications < Struct.new( :status) SENSITIVE = [] include Aws::Structure end |