Class: Aws::MarketplaceMetering::Types::ResolveCustomerResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::MarketplaceMetering::Types::ResolveCustomerResult
- Includes:
- Structure
- Defined in:
- 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 ‘CustomerAWSAccountId` provides the AWS account ID associated with the `CustomerIdentifier` for the individual customer.
-
#customer_identifier ⇒ String
The ‘CustomerIdentifier` is 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 AWS account ID associated with the `CustomerIdentifier` for the individual customer.
419 420 421 422 423 424 425 |
# File 'lib/aws-sdk-marketplacemetering/types.rb', line 419 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`.
419 420 421 422 423 424 425 |
# File 'lib/aws-sdk-marketplacemetering/types.rb', line 419 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.
419 420 421 422 423 424 425 |
# File 'lib/aws-sdk-marketplacemetering/types.rb', line 419 class ResolveCustomerResult < Struct.new( :customer_identifier, :product_code, :customer_aws_account_id) SENSITIVE = [] include Aws::Structure end |