Class: Aws::S3Control::Types::Metrics
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::Metrics
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3control/types.rb
Overview
A container that specifies replication metrics-related settings.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_threshold ⇒ Types::ReplicationTimeValue
A container that specifies the time threshold for emitting the ‘s3:Replication:OperationMissedThreshold` event.
-
#status ⇒ String
Specifies whether replication metrics are enabled.
Instance Attribute Details
#event_threshold ⇒ Types::ReplicationTimeValue
A container that specifies the time threshold for emitting the ‘s3:Replication:OperationMissedThreshold` event.
<note markdown=“1”> This is not supported by Amazon S3 on Outposts buckets.
</note>
5432 5433 5434 5435 5436 5437 |
# File 'lib/aws-sdk-s3control/types.rb', line 5432 class Metrics < Struct.new( :status, :event_threshold) SENSITIVE = [] include Aws::Structure end |