Class: Aws::DevOpsAgent::Types::UsageMetric
- Inherits:
-
Struct
- Object
- Struct
- Aws::DevOpsAgent::Types::UsageMetric
- 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
-
#limit ⇒ Integer
Configured limit for this metric.
-
#usage ⇒ Float
Current usage for this metric.
Instance Attribute Details
#limit ⇒ Integer
Configured limit for this metric. A value of -1 indicates no limit is enforced.
6142 6143 6144 6145 6146 6147 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 6142 class UsageMetric < Struct.new( :limit, :usage) SENSITIVE = [] include Aws::Structure end |
#usage ⇒ Float
Current usage for this metric
6142 6143 6144 6145 6146 6147 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 6142 class UsageMetric < Struct.new( :limit, :usage) SENSITIVE = [] include Aws::Structure end |