Class: Aws::MarketplaceMetering::Types::ResolveCustomerResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::MarketplaceMetering::Types::ResolveCustomerResult
- Defined in:
- gems/aws-sdk-marketplacemetering/lib/aws-sdk-marketplacemetering/types.rb
Overview
The result of the ResolveCustomer operation. Contains the
CustomerIdentifier along with the CustomerAWSAccountId and
ProductCode.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#customer_aws_account_id ⇒ String
The
CustomerAWSAccountIdprovides the Amazon Web Services account ID associated with theCustomerIdentifierfor the individual customer. -
#customer_identifier ⇒ String
The
CustomerIdentifieris used to identify an individual customer in your application. -
#product_code ⇒ String
The product code is returned to confirm that the buyer is registering for your product.
Instance Attribute Details
#customer_aws_account_id ⇒ String
The CustomerAWSAccountId provides the Amazon Web Services account
ID associated with the CustomerIdentifier for the individual
customer.
459 460 461 462 463 464 465 |
# File 'gems/aws-sdk-marketplacemetering/lib/aws-sdk-marketplacemetering/types.rb', line 459 class ResolveCustomerResult < Struct.new( :customer_identifier, :product_code, :customer_aws_account_id) SENSITIVE = [] include Aws::Structure end |
#customer_identifier ⇒ String
The CustomerIdentifier is used to identify an individual customer
in your application. Calls to BatchMeterUsage require
CustomerIdentifiers for each UsageRecord.
459 460 461 462 463 464 465 |
# File 'gems/aws-sdk-marketplacemetering/lib/aws-sdk-marketplacemetering/types.rb', line 459 class ResolveCustomerResult < Struct.new( :customer_identifier, :product_code, :customer_aws_account_id) SENSITIVE = [] include Aws::Structure end |
#product_code ⇒ String
The product code is returned to confirm that the buyer is
registering for your product. Subsequent BatchMeterUsage calls
should be made using this product code.
459 460 461 462 463 464 465 |
# File 'gems/aws-sdk-marketplacemetering/lib/aws-sdk-marketplacemetering/types.rb', line 459 class ResolveCustomerResult < Struct.new( :customer_identifier, :product_code, :customer_aws_account_id) SENSITIVE = [] include Aws::Structure end |