Class: Aws::MarketplaceMetering::Types::BatchMeterUsageResult

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

Overview

Contains the ‘UsageRecords` processed by `BatchMeterUsage` and any records that have failed due to transient error.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resultsArray<Types::UsageRecordResult>

Contains all ‘UsageRecords` processed by `BatchMeterUsage`. These records were either honored by AWS Marketplace Metering Service or were invalid. Invalid records should be fixed before being resubmitted.

Returns:



55
56
57
58
59
60
# File 'lib/aws-sdk-marketplacemetering/types.rb', line 55

class BatchMeterUsageResult < Struct.new(
  :results,
  :unprocessed_records)
  SENSITIVE = []
  include Aws::Structure
end

#unprocessed_recordsArray<Types::UsageRecord>

Contains all ‘UsageRecords` that were not processed by `BatchMeterUsage`. This is a list of `UsageRecords`. You can retry the failed request by making another `BatchMeterUsage` call with this list as input in the `BatchMeterUsageRequest`.

Returns:



55
56
57
58
59
60
# File 'lib/aws-sdk-marketplacemetering/types.rb', line 55

class BatchMeterUsageResult < Struct.new(
  :results,
  :unprocessed_records)
  SENSITIVE = []
  include Aws::Structure
end