Class: Amazon::AWS::CustomerContentLookup

Inherits:
Operation
  • Object
show all
Defined in:
lib/amazon/aws.rb

Overview

Obtain the information an Amazon customer has made public about themselves.

Constant Summary

Constants inherited from Operation

Operation::ALL_PARAMETERS, Operation::OPERATIONS, Operation::OPT_PARAMETERS, Operation::PARAMETERS

Instance Attribute Summary

Attributes inherited from Operation

#kind, #params

Instance Method Summary collapse

Methods inherited from Operation

#batch_parameters

Constructor Details

#initialize(customer_id, parameters = {}) ⇒ CustomerContentLookup

Search for public customer data. customer_id is the unique ID identifying the customer on Amazon and parameters is a hash of parameters that serve to further refine the search.

Example:

ccl = CustomerContentLookup.new( 'AJDWXANG1SYZP' )

In the above example, we look up public data about the customer with the ID AJDWXANG1SYZP.



943
944
945
# File 'lib/amazon/aws.rb', line 943

def initialize(customer_id, parameters={})
	super( { 'CustomerId' => customer_id }.merge( parameters ) )
end