Class: Aws::MarketplaceMetering::Types::BatchMeterUsageResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::MarketplaceMetering::Types::BatchMeterUsageResult
- 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
-
#results ⇒ Array<Types::UsageRecordResult>
Contains all
UsageRecordsprocessed byBatchMeterUsage. -
#unprocessed_records ⇒ Array<Types::UsageRecord>
Contains all
UsageRecordsthat were not processed byBatchMeterUsage.
Instance Attribute Details
#results ⇒ Array<Types::UsageRecordResult>
Contains all UsageRecords processed by BatchMeterUsage. These
records were either honored by Amazon Web Services Marketplace
Metering Service or were invalid. Invalid records should be fixed
before being resubmitted.
67 68 69 70 71 72 |
# File 'lib/aws-sdk-marketplacemetering/types.rb', line 67 class BatchMeterUsageResult < Struct.new( :results, :unprocessed_records) SENSITIVE = [] include Aws::Structure end |
#unprocessed_records ⇒ Array<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.
67 68 69 70 71 72 |
# File 'lib/aws-sdk-marketplacemetering/types.rb', line 67 class BatchMeterUsageResult < Struct.new( :results, :unprocessed_records) SENSITIVE = [] include Aws::Structure end |