Class: Aws::MarketplaceMetering::Types::UsageAllocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::MarketplaceMetering::Types::UsageAllocation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-marketplacemetering/types.rb
Overview
Usage allocations allow you to split usage into buckets by tags.
Each ‘UsageAllocation` indicates the usage quantity for a specific set of tags.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allocated_usage_quantity ⇒ Integer
The total quantity allocated to this bucket of usage.
-
#tags ⇒ Array<Types::Tag>
The set of tags that define the bucket of usage.
Instance Attribute Details
#allocated_usage_quantity ⇒ Integer
The total quantity allocated to this bucket of usage.
497 498 499 500 501 502 |
# File 'lib/aws-sdk-marketplacemetering/types.rb', line 497 class UsageAllocation < Struct.new( :allocated_usage_quantity, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The set of tags that define the bucket of usage. For the bucket of items with no tags, this parameter can be left out.
497 498 499 500 501 502 |
# File 'lib/aws-sdk-marketplacemetering/types.rb', line 497 class UsageAllocation < Struct.new( :allocated_usage_quantity, :tags) SENSITIVE = [] include Aws::Structure end |