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 ‘UsageRecords` processed by `BatchMeterUsage`.
-
#unprocessed_records ⇒ Array<Types::UsageRecord>
Contains all ‘UsageRecords` that were not processed by `BatchMeterUsage`.
Instance Attribute Details
#results ⇒ Array<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.
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_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`.
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 |