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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-devopsagent/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)


5034
5035
5036
5037
5038
5039
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 5034

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

#usageFloat

Current usage for this metric

Returns:

  • (Float)


5034
5035
5036
5037
5038
5039
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 5034

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