AmazonRegisterdatasource()

Amazon Datasource: Registers a datasource for use with the Amazon functions and tags. If you are working with a specific region, then you have to specify which one you are going to be using

Usage

STRING = AmazonRegisterdatasource( datasource, awsaccess, awskey, region )
Argument Summary
datasource Name of the datasource
awsaccess Your Amazon Access ID
awskey Your Amazon Secret Key
region The region you will be accessing. Can be one of the following: us-standard (default), us-east, us-west-1, us-west-2, eu-ireland, eu-frankfurt, ap-singapore, ap_sydney, ap_tokyo, sa-saopaulo, cn-beijing, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1, eu. Alternatively you put in the full domain if using an Amazon clone [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

AmazonRegisterdatasource(
   datasource=?, 
   awsaccess=?, 
   awskey=?, 
   region=?
);

Supports passing parameters as a structure using ArgumentCollection:

AmazonRegisterdatasource( ArgumentCollection={
   datasource : ?, 
   awsaccess : ?, 
   awskey : ?, 
   region : ?
} );