AmazonSqsgetattributes()

Amazon SQS: Gets the attributes for the given queue url

Usage

STRUCTURE = AmazonSqsgetattributes( datasource, queueurl )
Argument Summary
datasource Amazon SQS session
queueurl queueUrl

Calling

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

AmazonSqsgetattributes(
   datasource=?, 
   queueurl=?
);

Supports passing parameters as a structure using ArgumentCollection:

AmazonSqsgetattributes( ArgumentCollection={
   datasource : ?, 
   queueurl : ?
} );