Class | Amazon::AWS::CustomerContentLookup |
In: |
lib/amazon/aws.rb
|
Parent: | Operation |
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.
# File lib/amazon/aws.rb, line 1076 def initialize(customer_id, parameters={}) super( { 'CustomerId' => customer_id }.merge( parameters ) ) end