diff options
-rw-r--r-- | docs/source/sqs_tut.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/source/sqs_tut.rst b/docs/source/sqs_tut.rst index 685c30ff..a57c2c27 100644 --- a/docs/source/sqs_tut.rst +++ b/docs/source/sqs_tut.rst @@ -14,7 +14,10 @@ The first step in accessing SQS is to create a connection to the service. The recommended method of doing this is as follows:: >>> import boto.sqs - >>> conn = boto.sqs.connect_to_region("us-east-1", aws_access_key_id= '<aws access key'>, aws_secret_access_key='<aws secret key>') + >>> conn = boto.sqs.connect_to_region( + ... "us-east-1", + ... aws_access_key_id='<aws access key'>, + ... aws_secret_access_key='<aws secret key>') At this point the variable conn will point to an SQSConnection object in the US-EAST-1 region. Bear in mind that just as any other AWS service, SQS is |