Class: Aws::MarketplaceMetering::Types::ResolveCustomerResult

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#customer_aws_account_idString

The CustomerAWSAccountId provides the AWS account ID associated with the CustomerIdentifier for the individual customer.

Returns:

  • (String)


419
420
421
422
423
424
425
# File 'gems/aws-sdk-marketplacemetering/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_identifierString

The CustomerIdentifier is used to identify an individual customer in your application. Calls to BatchMeterUsage require CustomerIdentifiers for each UsageRecord.

Returns:

  • (String)


419
420
421
422
423
424
425
# File 'gems/aws-sdk-marketplacemetering/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_codeString

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.

Returns:

  • (String)


419
420
421
422
423
424
425
# File 'gems/aws-sdk-marketplacemetering/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