Class: Aws::S3::Types::ReplicationTimeValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::ReplicationTimeValue
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass ReplicationTimeValue data as a hash:
{
minutes: 1,
}
A container specifying the time value for S3 Replication Time Control (S3 RTC) and replication metrics ‘EventThreshold`.
Instance Attribute Summary collapse
-
#minutes ⇒ Integer
Contains an integer specifying time in minutes.
Instance Attribute Details
#minutes ⇒ Integer
Contains an integer specifying time in minutes.
Valid values: 15 minutes.
10947 10948 10949 10950 |
# File 'lib/aws-sdk-s3/types.rb', line 10947 class ReplicationTimeValue < Struct.new( :minutes) include Aws::Structure end |