Class: Aws::MarketplaceMetering::Types::UsageAllocation

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#allocated_usage_quantityInteger

The total quantity allocated to this bucket of usage.

Returns:

  • (Integer)


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

#tagsArray<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.

Returns:



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