Class: Aws::S3Control::Types::ReplicationTime
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::ReplicationTime
- Defined in:
- gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb
Overview
A container that specifies 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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#status ⇒ String
Specifies whether S3 Replication Time Control (S3 RTC) is enabled.
-
#time ⇒ Types::ReplicationTimeValue
A container that specifies the time by which replication should be complete for all objects and operations on objects.
Instance Attribute Details
#status ⇒ String
Specifies whether S3 Replication Time Control (S3 RTC) is enabled.
7030 7031 7032 7033 7034 7035 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 7030 class ReplicationTime < Struct.new( :status, :time) SENSITIVE = [] include Aws::Structure end |
#time ⇒ Types::ReplicationTimeValue
A container that specifies the time by which replication should be complete for all objects and operations on objects.
7030 7031 7032 7033 7034 7035 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 7030 class ReplicationTime < Struct.new( :status, :time) SENSITIVE = [] include Aws::Structure end |