Class: Aws::S3::Types::Metrics

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 Metrics data as a hash:

{
  status: "Enabled", # required, accepts Enabled, Disabled
  event_threshold: {
    minutes: 1,
  },
}

A container specifying replication metrics-related settings enabling replication metrics and events.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#event_thresholdTypes::ReplicationTimeValue

A container specifying the time threshold for emitting the ‘s3:Replication:OperationMissedThreshold` event.



9960
9961
9962
9963
9964
9965
# File 'lib/aws-sdk-s3/types.rb', line 9960

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

#statusString

Specifies whether the replication metrics are enabled.

Returns:

  • (String)


9960
9961
9962
9963
9964
9965
# File 'lib/aws-sdk-s3/types.rb', line 9960

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