Class: Aws::DevOpsAgent::Types::UsageMetric

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-devopsagent/types.rb

Overview

Represents a usage metric with its configured limit and current usage value.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#limitInteger

Configured limit for this metric.

Returns:

  • (Integer)


5049
5050
5051
5052
5053
5054
# File 'lib/aws-sdk-devopsagent/types.rb', line 5049

class UsageMetric < Struct.new(
  :limit,
  :usage)
  SENSITIVE = []
  include Aws::Structure
end

#usageFloat

Current usage for this metric

Returns:

  • (Float)


5049
5050
5051
5052
5053
5054
# File 'lib/aws-sdk-devopsagent/types.rb', line 5049

class UsageMetric < Struct.new(
  :limit,
  :usage)
  SENSITIVE = []
  include Aws::Structure
end