Class: Aws::S3::Types::ReplicationTime
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::ReplicationTime
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass ReplicationTime data as a hash:
{
status: "Enabled", # required, accepts Enabled, Disabled
time: { # required
minutes: 1,
},
}
A container specifying S3 Replication Time Control (S3 RTC) related information, including whether S3 RTC is enabled and the time when all objects and operations on objects must be replicated. Must be specified together with a ‘Metrics` block.
Instance Attribute Summary collapse
-
#status ⇒ String
Specifies whether the replication time is enabled.
-
#time ⇒ Types::ReplicationTimeValue
A container specifying the time by which replication should be complete for all objects and operations on objects.
Instance Attribute Details
#status ⇒ String
Specifies whether the replication time is enabled.
10923 10924 10925 10926 10927 |
# File 'lib/aws-sdk-s3/types.rb', line 10923 class ReplicationTime < Struct.new( :status, :time) include Aws::Structure end |
#time ⇒ Types::ReplicationTimeValue
A container specifying the time by which replication should be complete for all objects and operations on objects.
10923 10924 10925 10926 10927 |
# File 'lib/aws-sdk-s3/types.rb', line 10923 class ReplicationTime < Struct.new( :status, :time) include Aws::Structure end |