Class: Amazon::AWS::CustomerContentLookup

Inherits:
Operation
  • Object
show all
Defined in:
lib/ruby-paa/aws.rb

Overview

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

Constant Summary

Constants inherited from Operation

Operation::OPERATIONS

Instance Attribute Summary

Attributes inherited from Operation

#kind, #params, #response_group

Instance Method Summary collapse

Methods inherited from Operation

#batch, #query_parameters, #response_group_orig=

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 an optional hash of parameters that further refine the scope of the search.

Example:

ccl = CustomerContentLookup.new( 'AJDWXANG1SYZP' )

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



1073
1074
1075
# File 'lib/ruby-paa/aws.rb', line 1073

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