Class: Aws::S3::Types::ReplicationTime

Inherits:
Struct
  • Object
show all
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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#statusString

Specifies whether the replication time is enabled.

Returns:

  • (String)


14885
14886
14887
14888
14889
14890
# File 'lib/aws-sdk-s3/types.rb', line 14885

class ReplicationTime < Struct.new(
  :status,
  :time)
  SENSITIVE = []
  include Aws::Structure
end

#timeTypes::ReplicationTimeValue

A container specifying the time by which replication should be complete for all objects and operations on objects.



14885
14886
14887
14888
14889
14890
# File 'lib/aws-sdk-s3/types.rb', line 14885

class ReplicationTime < Struct.new(
  :status,
  :time)
  SENSITIVE = []
  include Aws::Structure
end