
models.sqs-2012-11-05-intermediate.json Maven / Gradle / Ivy
Show all versions of aws-java-sdk-osgi Show documentation
{
"metadata" : {
"apiVersion" : "2012-11-05",
"protocol" : "query",
"checksumFormat" : null,
"documentation" : "Welcome to the Amazon Simple Queue Service API Reference. This section describes who should read this guide, how the guide is organized, and other resources related to the Amazon Simple Queue Service (Amazon SQS).
Amazon SQS offers reliable and scalable hosted queues for storing messages as they travel between computers. By using Amazon SQS, you can move data between distributed components of your applications that perform different tasks without losing messages or requiring each component to be always available.
Helpful Links:
We also provide SDKs that enable you to access Amazon SQS from your preferred programming language. The SDKs contain functionality that automatically takes care of tasks such as:
Cryptographically signing your service requests
Retrying requests
Handling error responses
For a list of available SDKs, go to Tools for Amazon Web Services.
",
"defaultEndpoint" : "https://sqs.us-east-1.amazonaws.com",
"defaultEndpointWithoutHttpProtocol" : "sqs.us-east-1.amazonaws.com",
"syncInterface" : "AmazonSQS",
"syncClient" : "AmazonSQSClient",
"asyncInterface" : "AmazonSQSAsync",
"asyncClient" : "AmazonSQSAsyncClient",
"packageName" : "com.amazonaws.services.sqs",
"packagePath" : "com/amazonaws/services/sqs",
"serviceAbbreviation" : "Amazon SQS",
"serviceFullName" : "Amazon Simple Queue Service",
"hasApiWithStreamInput" : false,
"contentType" : null,
"jsonVersion" : null,
"endpointPrefix" : "sqs",
"signingName" : "sqs",
"protocolDefaultExceptionUmarshallerImpl" : "StandardErrorUnmarshaller",
"jsonProtocol" : false,
"xmlProtocol" : true,
"cborProtocol" : false,
"unmarshallerContextClassName" : "StaxUnmarshallerContext",
"unmarshallerClassSuffix" : "StaxUnmarshaller",
"syncClientBuilderClassName" : "AmazonSQSClientBuilder",
"asyncClientBuilderClassName" : "AmazonSQSAsyncClientBuilder",
"serviceName" : "Amazon SQS"
},
"operations" : {
"AddPermission" : {
"documentation" : "Adds a permission to a queue for a specific principal. This allows for sharing access to the queue.
When you create a queue, you have full control access rights for the queue. Only you (as owner of the queue) can grant or deny permissions to the queue. For more information about these permissions, see Shared Queues in the Amazon SQS Developer Guide.
AddPermission
writes an Amazon SQS-generated policy. If you want to write your own policy, use SetQueueAttributes to upload your policy. For more information about writing your own policy, see Using The Access Policy Language in the Amazon SQS Developer Guide.
Some API actions take lists of parameters. These lists are specified using the param.n
notation. Values of n
are integers starting from 1. For example, a parameter list with two elements looks like this:
",
"operationName" : "AddPermission",
"deprecated" : false,
"input" : {
"variableName" : "addPermissionRequest",
"variableType" : "AddPermissionRequest",
"variableDeclarationType" : "AddPermissionRequest",
"documentation" : "",
"simpleType" : "AddPermissionRequest",
"variableSetterType" : "AddPermissionRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "AddPermissionResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "OverLimitException",
"documentation" : "The action that you requested would violate a limit. For example, ReceiveMessage returns this error if the maximum number of messages inflight has already been reached. AddPermission returns this error if the maximum number of permissions for the queue has already been reached.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "addPermission",
"authenticated" : true,
"syncReturnType" : "AddPermissionResult",
"asyncReturnType" : "AddPermissionResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"ChangeMessageVisibility" : {
"documentation" : "Changes the visibility timeout of a specified message in a queue to a new value. The maximum allowed timeout value you can set the value to is 12 hours. This means you can't extend the timeout of a message in an existing queue to more than a total visibility timeout of 12 hours. (For more information visibility timeout, see Visibility Timeout in the Amazon SQS Developer Guide.)
For example, let's say you have a message and its default message visibility timeout is 5 minutes. After 3 minutes, you call ChangeMessageVisiblity
with a timeout of 10 minutes. At that time, the timeout for the message would be extended by 10 minutes beyond the time of the ChangeMessageVisibility call. This results in a total visibility timeout of 13 minutes. You can continue to call ChangeMessageVisibility to extend the visibility timeout to a maximum of 12 hours. If you try to extend beyond 12 hours, the request will be rejected.
There is a 120,000 limit for the number of inflight messages per queue. Messages are inflight after they have been received from the queue by a consuming component, but have not yet been deleted from the queue. If you reach the 120,000 limit, you will receive an OverLimit error message from Amazon SQS. To help avoid reaching the limit, you should delete the messages from the queue after they have been processed. You can also increase the number of queues you use to process the messages.
If you attempt to set the VisibilityTimeout
to an amount more than the maximum time left, Amazon SQS returns an error. It will not automatically recalculate and increase the timeout to the maximum time remaining.
Unlike with a queue, when you change the visibility timeout for a specific message, that timeout value is applied immediately but is not saved in memory for that message. If you don't delete a message after it is received, the visibility timeout for the message the next time it is received reverts to the original timeout value, not the value you set with the ChangeMessageVisibility
action.
",
"operationName" : "ChangeMessageVisibility",
"deprecated" : false,
"input" : {
"variableName" : "changeMessageVisibilityRequest",
"variableType" : "ChangeMessageVisibilityRequest",
"variableDeclarationType" : "ChangeMessageVisibilityRequest",
"documentation" : "",
"simpleType" : "ChangeMessageVisibilityRequest",
"variableSetterType" : "ChangeMessageVisibilityRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "ChangeMessageVisibilityResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "MessageNotInflightException",
"documentation" : "The message referred to is not in flight.
"
}, {
"exceptionName" : "ReceiptHandleIsInvalidException",
"documentation" : "The receipt handle provided is not valid.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "changeMessageVisibility",
"authenticated" : true,
"syncReturnType" : "ChangeMessageVisibilityResult",
"asyncReturnType" : "ChangeMessageVisibilityResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"ChangeMessageVisibilityBatch" : {
"documentation" : "Changes the visibility timeout of multiple messages. This is a batch version of ChangeMessageVisibility. The result of the action on each message is reported individually in the response. You can send up to 10 ChangeMessageVisibility requests with each ChangeMessageVisibilityBatch
action.
Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of 200.
Some API actions take lists of parameters. These lists are specified using the param.n
notation. Values of n
are integers starting from 1. For example, a parameter list with two elements looks like this:
",
"operationName" : "ChangeMessageVisibilityBatch",
"deprecated" : false,
"input" : {
"variableName" : "changeMessageVisibilityBatchRequest",
"variableType" : "ChangeMessageVisibilityBatchRequest",
"variableDeclarationType" : "ChangeMessageVisibilityBatchRequest",
"documentation" : "",
"simpleType" : "ChangeMessageVisibilityBatchRequest",
"variableSetterType" : "ChangeMessageVisibilityBatchRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "ChangeMessageVisibilityBatchResult",
"documentation" : " For each message in the batch, the response contains a ChangeMessageVisibilityBatchResultEntry tag if the message succeeds or a BatchResultErrorEntry tag if the message fails.
"
},
"exceptions" : [ {
"exceptionName" : "TooManyEntriesInBatchRequestException",
"documentation" : "Batch request contains more number of entries than permissible.
"
}, {
"exceptionName" : "EmptyBatchRequestException",
"documentation" : "Batch request does not contain an entry.
"
}, {
"exceptionName" : "BatchEntryIdsNotDistinctException",
"documentation" : "Two or more batch entries have the same Id
in the request.
"
}, {
"exceptionName" : "InvalidBatchEntryIdException",
"documentation" : "The Id
of a batch entry in a batch request does not abide by the specification.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "changeMessageVisibilityBatch",
"authenticated" : true,
"syncReturnType" : "ChangeMessageVisibilityBatchResult",
"asyncReturnType" : "ChangeMessageVisibilityBatchResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"CreateQueue" : {
"documentation" : "Creates a new queue, or returns the URL of an existing one. When you request CreateQueue
, you provide a name for the queue. To successfully create a new queue, you must provide a name that is unique within the scope of your own queues.
If you delete a queue, you must wait at least 60 seconds before creating a queue with the same name.
You may pass one or more attributes in the request. If you do not provide a value for any attribute, the queue will have the default value for that attribute.
Use GetQueueUrl to get a queue's URL. GetQueueUrl requires only the QueueName
parameter.
If you provide the name of an existing queue, along with the exact names and values of all the queue's attributes, CreateQueue
returns the queue URL for the existing queue. If the queue name, attribute names, or attribute values do not match an existing queue, CreateQueue
returns an error.
Some API actions take lists of parameters. These lists are specified using the param.n
notation. Values of n
are integers starting from 1. For example, a parameter list with two elements looks like this:
",
"operationName" : "CreateQueue",
"deprecated" : false,
"input" : {
"variableName" : "createQueueRequest",
"variableType" : "CreateQueueRequest",
"variableDeclarationType" : "CreateQueueRequest",
"documentation" : "",
"simpleType" : "CreateQueueRequest",
"variableSetterType" : "CreateQueueRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "CreateQueueResult",
"documentation" : "Returns the QueueUrl element of the created queue.
"
},
"exceptions" : [ {
"exceptionName" : "QueueDeletedRecentlyException",
"documentation" : "You must wait 60 seconds after deleting a queue before you can create another with the same name.
"
}, {
"exceptionName" : "QueueNameExistsException",
"documentation" : "A queue already exists with this name. Amazon SQS returns this error only if the request includes attributes whose values differ from those of the existing queue.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "createQueue",
"authenticated" : true,
"syncReturnType" : "CreateQueueResult",
"asyncReturnType" : "CreateQueueResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"DeleteMessage" : {
"documentation" : " Deletes the specified message from the specified queue. You specify the message by using the message's receipt handle
and not the message ID
you received when you sent the message. Even if the message is locked by another reader due to the visibility timeout setting, it is still deleted from the queue. If you leave a message in the queue for longer than the queue's configured retention period, Amazon SQS automatically deletes it.
The receipt handle is associated with a specific instance of receiving the message. If you receive a message more than once, the receipt handle you get each time you receive the message is different. When you request DeleteMessage
, if you don't provide the most recently received receipt handle for the message, the request will still succeed, but the message might not be deleted.
It is possible you will receive a message even after you have deleted it. This might happen on rare occasions if one of the servers storing a copy of the message is unavailable when you request to delete the message. The copy remains on the server and might be returned to you again on a subsequent receive request. You should create your system to be idempotent so that receiving a particular message more than once is not a problem.
",
"operationName" : "DeleteMessage",
"deprecated" : false,
"input" : {
"variableName" : "deleteMessageRequest",
"variableType" : "DeleteMessageRequest",
"variableDeclarationType" : "DeleteMessageRequest",
"documentation" : "",
"simpleType" : "DeleteMessageRequest",
"variableSetterType" : "DeleteMessageRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "DeleteMessageResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "InvalidIdFormatException",
"documentation" : "The receipt handle is not valid for the current version.
"
}, {
"exceptionName" : "ReceiptHandleIsInvalidException",
"documentation" : "The receipt handle provided is not valid.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "deleteMessage",
"authenticated" : true,
"syncReturnType" : "DeleteMessageResult",
"asyncReturnType" : "DeleteMessageResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"DeleteMessageBatch" : {
"documentation" : "Deletes up to ten messages from the specified queue. This is a batch version of DeleteMessage. The result of the delete action on each message is reported individually in the response.
Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of 200.
Some API actions take lists of parameters. These lists are specified using the param.n
notation. Values of n
are integers starting from 1. For example, a parameter list with two elements looks like this:
",
"operationName" : "DeleteMessageBatch",
"deprecated" : false,
"input" : {
"variableName" : "deleteMessageBatchRequest",
"variableType" : "DeleteMessageBatchRequest",
"variableDeclarationType" : "DeleteMessageBatchRequest",
"documentation" : "",
"simpleType" : "DeleteMessageBatchRequest",
"variableSetterType" : "DeleteMessageBatchRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "DeleteMessageBatchResult",
"documentation" : " For each message in the batch, the response contains a DeleteMessageBatchResultEntry tag if the message is deleted or a BatchResultErrorEntry tag if the message cannot be deleted.
"
},
"exceptions" : [ {
"exceptionName" : "TooManyEntriesInBatchRequestException",
"documentation" : "Batch request contains more number of entries than permissible.
"
}, {
"exceptionName" : "EmptyBatchRequestException",
"documentation" : "Batch request does not contain an entry.
"
}, {
"exceptionName" : "BatchEntryIdsNotDistinctException",
"documentation" : "Two or more batch entries have the same Id
in the request.
"
}, {
"exceptionName" : "InvalidBatchEntryIdException",
"documentation" : "The Id
of a batch entry in a batch request does not abide by the specification.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "deleteMessageBatch",
"authenticated" : true,
"syncReturnType" : "DeleteMessageBatchResult",
"asyncReturnType" : "DeleteMessageBatchResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"DeleteQueue" : {
"documentation" : " Deletes the queue specified by the queue URL, regardless of whether the queue is empty. If the specified queue does not exist, Amazon SQS returns a successful response.
Use DeleteQueue
with care; once you delete your queue, any messages in the queue are no longer available.
When you delete a queue, the deletion process takes up to 60 seconds. Requests you send involving that queue during the 60 seconds might succeed. For example, a SendMessage request might succeed, but after the 60 seconds, the queue and that message you sent no longer exist. Also, when you delete a queue, you must wait at least 60 seconds before creating a queue with the same name.
We reserve the right to delete queues that have had no activity for more than 30 days. For more information, see How Amazon SQS Queues Work in the Amazon SQS Developer Guide.
",
"operationName" : "DeleteQueue",
"deprecated" : false,
"input" : {
"variableName" : "deleteQueueRequest",
"variableType" : "DeleteQueueRequest",
"variableDeclarationType" : "DeleteQueueRequest",
"documentation" : "",
"simpleType" : "DeleteQueueRequest",
"variableSetterType" : "DeleteQueueRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "DeleteQueueResult",
"documentation" : null
},
"exceptions" : null,
"hasBlobMemberAsPayload" : false,
"methodName" : "deleteQueue",
"authenticated" : true,
"syncReturnType" : "DeleteQueueResult",
"asyncReturnType" : "DeleteQueueResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"GetQueueAttributes" : {
"documentation" : "Gets attributes for the specified queue.
Some API actions take lists of parameters. These lists are specified using the param.n
notation. Values of n
are integers starting from 1. For example, a parameter list with two elements looks like this:
",
"operationName" : "GetQueueAttributes",
"deprecated" : false,
"input" : {
"variableName" : "getQueueAttributesRequest",
"variableType" : "GetQueueAttributesRequest",
"variableDeclarationType" : "GetQueueAttributesRequest",
"documentation" : "",
"simpleType" : "GetQueueAttributesRequest",
"variableSetterType" : "GetQueueAttributesRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetQueueAttributesResult",
"documentation" : "A list of returned queue attributes.
"
},
"exceptions" : [ {
"exceptionName" : "InvalidAttributeNameException",
"documentation" : "The attribute referred to does not exist.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "getQueueAttributes",
"authenticated" : true,
"syncReturnType" : "GetQueueAttributesResult",
"asyncReturnType" : "GetQueueAttributesResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"GetQueueUrl" : {
"documentation" : " Returns the URL of an existing queue. This action provides a simple way to retrieve the URL of an Amazon SQS queue.
To access a queue that belongs to another AWS account, use the QueueOwnerAWSAccountId
parameter to specify the account ID of the queue's owner. The queue's owner must grant you permission to access the queue. For more information about shared queue access, see AddPermission or go to Shared Queues in the Amazon SQS Developer Guide.
",
"operationName" : "GetQueueUrl",
"deprecated" : false,
"input" : {
"variableName" : "getQueueUrlRequest",
"variableType" : "GetQueueUrlRequest",
"variableDeclarationType" : "GetQueueUrlRequest",
"documentation" : "",
"simpleType" : "GetQueueUrlRequest",
"variableSetterType" : "GetQueueUrlRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetQueueUrlResult",
"documentation" : "For more information, see Responses in the Amazon SQS Developer Guide.
"
},
"exceptions" : [ {
"exceptionName" : "QueueDoesNotExistException",
"documentation" : "The queue referred to does not exist.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "getQueueUrl",
"authenticated" : true,
"syncReturnType" : "GetQueueUrlResult",
"asyncReturnType" : "GetQueueUrlResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"ListDeadLetterSourceQueues" : {
"documentation" : "Returns a list of your queues that have the RedrivePolicy queue attribute configured with a dead letter queue.
For more information about using dead letter queues, see Using Amazon SQS Dead Letter Queues.
",
"operationName" : "ListDeadLetterSourceQueues",
"deprecated" : false,
"input" : {
"variableName" : "listDeadLetterSourceQueuesRequest",
"variableType" : "ListDeadLetterSourceQueuesRequest",
"variableDeclarationType" : "ListDeadLetterSourceQueuesRequest",
"documentation" : "",
"simpleType" : "ListDeadLetterSourceQueuesRequest",
"variableSetterType" : "ListDeadLetterSourceQueuesRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "ListDeadLetterSourceQueuesResult",
"documentation" : "A list of your dead letter source queues.
"
},
"exceptions" : [ {
"exceptionName" : "QueueDoesNotExistException",
"documentation" : "The queue referred to does not exist.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "listDeadLetterSourceQueues",
"authenticated" : true,
"syncReturnType" : "ListDeadLetterSourceQueuesResult",
"asyncReturnType" : "ListDeadLetterSourceQueuesResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"ListQueues" : {
"documentation" : "Returns a list of your queues. The maximum number of queues that can be returned is 1000. If you specify a value for the optional QueueNamePrefix
parameter, only queues with a name beginning with the specified value are returned.
",
"operationName" : "ListQueues",
"deprecated" : false,
"input" : {
"variableName" : "listQueuesRequest",
"variableType" : "ListQueuesRequest",
"variableDeclarationType" : "ListQueuesRequest",
"documentation" : "",
"simpleType" : "ListQueuesRequest",
"variableSetterType" : "ListQueuesRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "ListQueuesResult",
"documentation" : "A list of your queues.
"
},
"exceptions" : null,
"hasBlobMemberAsPayload" : false,
"methodName" : "listQueues",
"authenticated" : true,
"syncReturnType" : "ListQueuesResult",
"asyncReturnType" : "ListQueuesResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"PurgeQueue" : {
"documentation" : "Deletes the messages in a queue specified by the queue URL.
When you use the PurgeQueue
API, the deleted messages in the queue cannot be retrieved.
When you purge a queue, the message deletion process takes up to 60 seconds. All messages sent to the queue before calling PurgeQueue
will be deleted; messages sent to the queue while it is being purged may be deleted. While the queue is being purged, messages sent to the queue before PurgeQueue
was called may be received, but will be deleted within the next minute.
",
"operationName" : "PurgeQueue",
"deprecated" : false,
"input" : {
"variableName" : "purgeQueueRequest",
"variableType" : "PurgeQueueRequest",
"variableDeclarationType" : "PurgeQueueRequest",
"documentation" : "",
"simpleType" : "PurgeQueueRequest",
"variableSetterType" : "PurgeQueueRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "PurgeQueueResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "QueueDoesNotExistException",
"documentation" : "The queue referred to does not exist.
"
}, {
"exceptionName" : "PurgeQueueInProgressException",
"documentation" : "Indicates that the specified queue previously received a PurgeQueue
request within the last 60 seconds, the time it can take to delete the messages in the queue.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "purgeQueue",
"authenticated" : true,
"syncReturnType" : "PurgeQueueResult",
"asyncReturnType" : "PurgeQueueResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"ReceiveMessage" : {
"documentation" : " Retrieves one or more messages, with a maximum limit of 10 messages, from the specified queue. Long poll support is enabled by using the WaitTimeSeconds
parameter. For more information, see Amazon SQS Long Poll in the Amazon SQS Developer Guide.
Short poll is the default behavior where a weighted random set of machines is sampled on a ReceiveMessage
call. This means only the messages on the sampled machines are returned. If the number of messages in the queue is small (less than 1000), it is likely you will get fewer messages than you requested per ReceiveMessage
call. If the number of messages in the queue is extremely small, you might not receive any messages in a particular ReceiveMessage
response; in which case you should repeat the request.
For each message returned, the response includes the following:
-
Message body
-
MD5 digest of the message body. For information about MD5, go to http://www.faqs.org/rfcs/rfc1321.html.
-
Message ID you received when you sent the message to the queue.
-
Receipt handle.
-
Message attributes.
-
MD5 digest of the message attributes.
The receipt handle is the identifier you must provide when deleting the message. For more information, see Queue and Message Identifiers in the Amazon SQS Developer Guide.
You can provide the VisibilityTimeout
parameter in your request, which will be applied to the messages that Amazon SQS returns in the response. If you do not include the parameter, the overall visibility timeout for the queue is used for the returned messages. For more information, see Visibility Timeout in the Amazon SQS Developer Guide.
Going forward, new attributes might be added. If you are writing code that calls this action, we recommend that you structure your code so that it can handle new attributes gracefully.
",
"operationName" : "ReceiveMessage",
"deprecated" : false,
"input" : {
"variableName" : "receiveMessageRequest",
"variableType" : "ReceiveMessageRequest",
"variableDeclarationType" : "ReceiveMessageRequest",
"documentation" : "",
"simpleType" : "ReceiveMessageRequest",
"variableSetterType" : "ReceiveMessageRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "ReceiveMessageResult",
"documentation" : "A list of received messages.
"
},
"exceptions" : [ {
"exceptionName" : "OverLimitException",
"documentation" : "The action that you requested would violate a limit. For example, ReceiveMessage returns this error if the maximum number of messages inflight has already been reached. AddPermission returns this error if the maximum number of permissions for the queue has already been reached.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "receiveMessage",
"authenticated" : true,
"syncReturnType" : "ReceiveMessageResult",
"asyncReturnType" : "ReceiveMessageResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"RemovePermission" : {
"documentation" : "Revokes any permissions in the queue policy that matches the specified Label
parameter. Only the owner of the queue can remove permissions.
",
"operationName" : "RemovePermission",
"deprecated" : false,
"input" : {
"variableName" : "removePermissionRequest",
"variableType" : "RemovePermissionRequest",
"variableDeclarationType" : "RemovePermissionRequest",
"documentation" : "",
"simpleType" : "RemovePermissionRequest",
"variableSetterType" : "RemovePermissionRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "RemovePermissionResult",
"documentation" : null
},
"exceptions" : null,
"hasBlobMemberAsPayload" : false,
"methodName" : "removePermission",
"authenticated" : true,
"syncReturnType" : "RemovePermissionResult",
"asyncReturnType" : "RemovePermissionResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"SendMessage" : {
"documentation" : " Delivers a message to the specified queue. With Amazon SQS, you now have the ability to send large payload messages that are up to 256KB (262,144 bytes) in size. To send large payloads, you must use an AWS SDK that supports SigV4 signing. To verify whether SigV4 is supported for an AWS SDK, check the SDK release notes.
The following list shows the characters (in Unicode) allowed in your message, according to the W3C XML specification. For more information, go to http://www.w3.org/TR/REC-xml/#charsets If you send any characters not included in the list, your request will be rejected.
#x9 | #xA | #xD | [#x20 to #xD7FF] | [#xE000 to #xFFFD] | [#x10000 to #x10FFFF]
",
"operationName" : "SendMessage",
"deprecated" : false,
"input" : {
"variableName" : "sendMessageRequest",
"variableType" : "SendMessageRequest",
"variableDeclarationType" : "SendMessageRequest",
"documentation" : "",
"simpleType" : "SendMessageRequest",
"variableSetterType" : "SendMessageRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "SendMessageResult",
"documentation" : "The MD5OfMessageBody and MessageId elements.
"
},
"exceptions" : [ {
"exceptionName" : "InvalidMessageContentsException",
"documentation" : "The message contains characters outside the allowed set.
"
}, {
"exceptionName" : "UnsupportedOperationException",
"documentation" : "Error code 400. Unsupported operation.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "sendMessage",
"authenticated" : true,
"syncReturnType" : "SendMessageResult",
"asyncReturnType" : "SendMessageResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"SendMessageBatch" : {
"documentation" : "Delivers up to ten messages to the specified queue. This is a batch version of SendMessage. The result of the send action on each message is reported individually in the response. The maximum allowed individual message size is 256 KB (262,144 bytes).
The maximum total payload size (i.e., the sum of all a batch's individual message lengths) is also 256 KB (262,144 bytes).
If the DelaySeconds
parameter is not specified for an entry, the default for the queue is used.
The following list shows the characters (in Unicode) that are allowed in your message, according to the W3C XML specification. For more information, go to http://www.faqs.org/rfcs/rfc1321.html. If you send any characters that are not included in the list, your request will be rejected.
#x9 | #xA | #xD | [#x20 to #xD7FF] | [#xE000 to #xFFFD] | [#x10000 to #x10FFFF]
Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of 200.
Some API actions take lists of parameters. These lists are specified using the param.n
notation. Values of n
are integers starting from 1. For example, a parameter list with two elements looks like this:
",
"operationName" : "SendMessageBatch",
"deprecated" : false,
"input" : {
"variableName" : "sendMessageBatchRequest",
"variableType" : "SendMessageBatchRequest",
"variableDeclarationType" : "SendMessageBatchRequest",
"documentation" : "",
"simpleType" : "SendMessageBatchRequest",
"variableSetterType" : "SendMessageBatchRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "SendMessageBatchResult",
"documentation" : "For each message in the batch, the response contains a SendMessageBatchResultEntry tag if the message succeeds or a BatchResultErrorEntry tag if the message fails.
"
},
"exceptions" : [ {
"exceptionName" : "TooManyEntriesInBatchRequestException",
"documentation" : "Batch request contains more number of entries than permissible.
"
}, {
"exceptionName" : "EmptyBatchRequestException",
"documentation" : "Batch request does not contain an entry.
"
}, {
"exceptionName" : "BatchEntryIdsNotDistinctException",
"documentation" : "Two or more batch entries have the same Id
in the request.
"
}, {
"exceptionName" : "BatchRequestTooLongException",
"documentation" : "The length of all the messages put together is more than the limit.
"
}, {
"exceptionName" : "InvalidBatchEntryIdException",
"documentation" : "The Id
of a batch entry in a batch request does not abide by the specification.
"
}, {
"exceptionName" : "UnsupportedOperationException",
"documentation" : "Error code 400. Unsupported operation.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "sendMessageBatch",
"authenticated" : true,
"syncReturnType" : "SendMessageBatchResult",
"asyncReturnType" : "SendMessageBatchResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"SetQueueAttributes" : {
"documentation" : "Sets the value of one or more queue attributes. When you change a queue's attributes, the change can take up to 60 seconds for most of the attributes to propagate throughout the SQS system. Changes made to the MessageRetentionPeriod
attribute can take up to 15 minutes.
Going forward, new attributes might be added. If you are writing code that calls this action, we recommend that you structure your code so that it can handle new attributes gracefully.
",
"operationName" : "SetQueueAttributes",
"deprecated" : false,
"input" : {
"variableName" : "setQueueAttributesRequest",
"variableType" : "SetQueueAttributesRequest",
"variableDeclarationType" : "SetQueueAttributesRequest",
"documentation" : "",
"simpleType" : "SetQueueAttributesRequest",
"variableSetterType" : "SetQueueAttributesRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "SetQueueAttributesResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "InvalidAttributeNameException",
"documentation" : "The attribute referred to does not exist.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "setQueueAttributes",
"authenticated" : true,
"syncReturnType" : "SetQueueAttributesResult",
"asyncReturnType" : "SetQueueAttributesResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
}
},
"shapes" : {
"SendMessageBatchResult" : {
"c2jName" : "SendMessageBatchResult",
"documentation" : "For each message in the batch, the response contains a SendMessageBatchResultEntry tag if the message succeeds or a BatchResultErrorEntry tag if the message fails.
",
"shapeName" : "SendMessageBatchResult",
"deprecated" : false,
"required" : [ "Successful", "Failed" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A list of SendMessageBatchResultEntry items.
",
"name" : "Successful",
"c2jName" : "Successful",
"c2jShape" : "SendMessageBatchResultEntryList",
"variable" : {
"variableName" : "successful",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of SendMessageBatchResultEntry items.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "successful",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Successful",
"marshallLocationName" : "Successful",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "SendMessageBatchResultEntry",
"memberLocationName" : "SendMessageBatchResultEntry",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "SendMessageBatchResultEntry",
"variable" : {
"variableName" : "member",
"variableType" : "SendMessageBatchResultEntry",
"variableDeclarationType" : "SendMessageBatchResultEntry",
"documentation" : "",
"simpleType" : "SendMessageBatchResultEntry",
"variableSetterType" : "SendMessageBatchResultEntry"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "SendMessageBatchResultEntry",
"variableDeclarationType" : "SendMessageBatchResultEntry",
"documentation" : "",
"simpleType" : "SendMessageBatchResultEntry",
"variableSetterType" : "SendMessageBatchResultEntry"
},
"getterModel" : {
"returnType" : "SendMessageBatchResultEntry",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SendMessageBatchResultEntry",
"marshallLocationName" : "SendMessageBatchResultEntry",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "SendMessageBatchResultEntry",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of SendMessageBatchResultEntry items.
\n@param successful A list of SendMessageBatchResultEntry items.*/",
"getterDocumentation" : "/**A list of SendMessageBatchResultEntry items.
\n@return A list of SendMessageBatchResultEntry items.*/",
"fluentSetterDocumentation" : "/**A list of SendMessageBatchResultEntry items.
\n@param successful A list of SendMessageBatchResultEntry items.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of SendMessageBatchResultEntry items.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setSuccessful(java.util.Collection)} or {@link #withSuccessful(java.util.Collection)} if you want to override the existing values.
\n@param successful A list of SendMessageBatchResultEntry items.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.
",
"name" : "Failed",
"c2jName" : "Failed",
"c2jShape" : "BatchResultErrorEntryList",
"variable" : {
"variableName" : "failed",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "failed",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Failed",
"marshallLocationName" : "Failed",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "BatchResultErrorEntry",
"memberLocationName" : "BatchResultErrorEntry",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "BatchResultErrorEntry",
"variable" : {
"variableName" : "member",
"variableType" : "BatchResultErrorEntry",
"variableDeclarationType" : "BatchResultErrorEntry",
"documentation" : "",
"simpleType" : "BatchResultErrorEntry",
"variableSetterType" : "BatchResultErrorEntry"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "BatchResultErrorEntry",
"variableDeclarationType" : "BatchResultErrorEntry",
"documentation" : "",
"simpleType" : "BatchResultErrorEntry",
"variableSetterType" : "BatchResultErrorEntry"
},
"getterModel" : {
"returnType" : "BatchResultErrorEntry",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BatchResultErrorEntry",
"marshallLocationName" : "BatchResultErrorEntry",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "BatchResultErrorEntry",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.
\n@param failed A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.*/",
"getterDocumentation" : "/**A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.
\n@return A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.*/",
"fluentSetterDocumentation" : "/**A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.
\n@param failed A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setFailed(java.util.Collection)} or {@link #withFailed(java.util.Collection)} if you want to override the existing values.
\n@param failed A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "sendMessageBatchResult",
"variableType" : "SendMessageBatchResult",
"variableDeclarationType" : "SendMessageBatchResult",
"documentation" : null,
"simpleType" : "SendMessageBatchResult",
"variableSetterType" : "SendMessageBatchResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : "SendMessageBatchResult",
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Failed" : {
"documentation" : "A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.
",
"name" : "Failed",
"c2jName" : "Failed",
"c2jShape" : "BatchResultErrorEntryList",
"variable" : {
"variableName" : "failed",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "failed",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Failed",
"marshallLocationName" : "Failed",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "BatchResultErrorEntry",
"memberLocationName" : "BatchResultErrorEntry",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "BatchResultErrorEntry",
"variable" : {
"variableName" : "member",
"variableType" : "BatchResultErrorEntry",
"variableDeclarationType" : "BatchResultErrorEntry",
"documentation" : "",
"simpleType" : "BatchResultErrorEntry",
"variableSetterType" : "BatchResultErrorEntry"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "BatchResultErrorEntry",
"variableDeclarationType" : "BatchResultErrorEntry",
"documentation" : "",
"simpleType" : "BatchResultErrorEntry",
"variableSetterType" : "BatchResultErrorEntry"
},
"getterModel" : {
"returnType" : "BatchResultErrorEntry",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BatchResultErrorEntry",
"marshallLocationName" : "BatchResultErrorEntry",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "BatchResultErrorEntry",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.
\n@param failed A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.*/",
"getterDocumentation" : "/**A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.
\n@return A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.*/",
"fluentSetterDocumentation" : "/**A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.
\n@param failed A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setFailed(java.util.Collection)} or {@link #withFailed(java.util.Collection)} if you want to override the existing values.
\n@param failed A list of BatchResultErrorEntry items with the error detail about each message that could not be enqueued.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Successful" : {
"documentation" : "A list of SendMessageBatchResultEntry items.
",
"name" : "Successful",
"c2jName" : "Successful",
"c2jShape" : "SendMessageBatchResultEntryList",
"variable" : {
"variableName" : "successful",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of SendMessageBatchResultEntry items.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "successful",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Successful",
"marshallLocationName" : "Successful",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "SendMessageBatchResultEntry",
"memberLocationName" : "SendMessageBatchResultEntry",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "SendMessageBatchResultEntry",
"variable" : {
"variableName" : "member",
"variableType" : "SendMessageBatchResultEntry",
"variableDeclarationType" : "SendMessageBatchResultEntry",
"documentation" : "",
"simpleType" : "SendMessageBatchResultEntry",
"variableSetterType" : "SendMessageBatchResultEntry"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "SendMessageBatchResultEntry",
"variableDeclarationType" : "SendMessageBatchResultEntry",
"documentation" : "",
"simpleType" : "SendMessageBatchResultEntry",
"variableSetterType" : "SendMessageBatchResultEntry"
},
"getterModel" : {
"returnType" : "SendMessageBatchResultEntry",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SendMessageBatchResultEntry",
"marshallLocationName" : "SendMessageBatchResultEntry",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "SendMessageBatchResultEntry",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of SendMessageBatchResultEntry items.
\n@param successful A list of SendMessageBatchResultEntry items.*/",
"getterDocumentation" : "/**A list of SendMessageBatchResultEntry items.
\n@return A list of SendMessageBatchResultEntry items.*/",
"fluentSetterDocumentation" : "/**A list of SendMessageBatchResultEntry items.
\n@param successful A list of SendMessageBatchResultEntry items.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of SendMessageBatchResultEntry items.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setSuccessful(java.util.Collection)} or {@link #withSuccessful(java.util.Collection)} if you want to override the existing values.
\n@param successful A list of SendMessageBatchResultEntry items.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"PurgeQueueInProgressException" : {
"c2jName" : "PurgeQueueInProgress",
"documentation" : "Indicates that the specified queue previously received a PurgeQueue
request within the last 60 seconds, the time it can take to delete the messages in the queue.
",
"shapeName" : "PurgeQueueInProgressException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "purgeQueueInProgressException",
"variableType" : "PurgeQueueInProgressException",
"variableDeclarationType" : "PurgeQueueInProgressException",
"documentation" : null,
"simpleType" : "PurgeQueueInProgressException",
"variableSetterType" : "PurgeQueueInProgressException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "AWS.SimpleQueueService.PurgeQueueInProgress",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"InvalidAttributeNameException" : {
"c2jName" : "InvalidAttributeName",
"documentation" : "The attribute referred to does not exist.
",
"shapeName" : "InvalidAttributeNameException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "invalidAttributeNameException",
"variableType" : "InvalidAttributeNameException",
"variableDeclarationType" : "InvalidAttributeNameException",
"documentation" : null,
"simpleType" : "InvalidAttributeNameException",
"variableSetterType" : "InvalidAttributeNameException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidAttributeName",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"QueueAttributeName" : {
"c2jName" : "QueueAttributeName",
"documentation" : "",
"shapeName" : "QueueAttributeName",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : [ {
"name" : "Policy",
"value" : "Policy"
}, {
"name" : "VisibilityTimeout",
"value" : "VisibilityTimeout"
}, {
"name" : "MaximumMessageSize",
"value" : "MaximumMessageSize"
}, {
"name" : "MessageRetentionPeriod",
"value" : "MessageRetentionPeriod"
}, {
"name" : "ApproximateNumberOfMessages",
"value" : "ApproximateNumberOfMessages"
}, {
"name" : "ApproximateNumberOfMessagesNotVisible",
"value" : "ApproximateNumberOfMessagesNotVisible"
}, {
"name" : "CreatedTimestamp",
"value" : "CreatedTimestamp"
}, {
"name" : "LastModifiedTimestamp",
"value" : "LastModifiedTimestamp"
}, {
"name" : "QueueArn",
"value" : "QueueArn"
}, {
"name" : "ApproximateNumberOfMessagesDelayed",
"value" : "ApproximateNumberOfMessagesDelayed"
}, {
"name" : "DelaySeconds",
"value" : "DelaySeconds"
}, {
"name" : "ReceiveMessageWaitTimeSeconds",
"value" : "ReceiveMessageWaitTimeSeconds"
}, {
"name" : "RedrivePolicy",
"value" : "RedrivePolicy"
} ],
"variable" : {
"variableName" : "queueAttributeName",
"variableType" : "QueueAttributeName",
"variableDeclarationType" : "QueueAttributeName",
"documentation" : null,
"simpleType" : "QueueAttributeName",
"variableSetterType" : "QueueAttributeName"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"CreateQueueResult" : {
"c2jName" : "CreateQueueResult",
"documentation" : "Returns the QueueUrl element of the created queue.
",
"shapeName" : "CreateQueueResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The URL for the created Amazon SQS queue.
",
"name" : "QueueUrl",
"c2jName" : "QueueUrl",
"c2jShape" : "String",
"variable" : {
"variableName" : "queueUrl",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The URL for the created Amazon SQS queue.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "queueUrl",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "QueueUrl",
"marshallLocationName" : "QueueUrl",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The URL for the created Amazon SQS queue.
\n@param queueUrl The URL for the created Amazon SQS queue.*/",
"getterDocumentation" : "/**The URL for the created Amazon SQS queue.
\n@return The URL for the created Amazon SQS queue.*/",
"fluentSetterDocumentation" : "/**The URL for the created Amazon SQS queue.
\n@param queueUrl The URL for the created Amazon SQS queue.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The URL for the created Amazon SQS queue.
\n@param queueUrl The URL for the created Amazon SQS queue.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "createQueueResult",
"variableType" : "CreateQueueResult",
"variableDeclarationType" : "CreateQueueResult",
"documentation" : null,
"simpleType" : "CreateQueueResult",
"variableSetterType" : "CreateQueueResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : "CreateQueueResult",
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"QueueUrl" : {
"documentation" : "The URL for the created Amazon SQS queue.
",
"name" : "QueueUrl",
"c2jName" : "QueueUrl",
"c2jShape" : "String",
"variable" : {
"variableName" : "queueUrl",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The URL for the created Amazon SQS queue.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "queueUrl",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "QueueUrl",
"marshallLocationName" : "QueueUrl",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The URL for the created Amazon SQS queue.
\n@param queueUrl The URL for the created Amazon SQS queue.*/",
"getterDocumentation" : "/**The URL for the created Amazon SQS queue.
\n@return The URL for the created Amazon SQS queue.*/",
"fluentSetterDocumentation" : "/**The URL for the created Amazon SQS queue.
\n@param queueUrl The URL for the created Amazon SQS queue.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The URL for the created Amazon SQS queue.
\n@param queueUrl The URL for the created Amazon SQS queue.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ListDeadLetterSourceQueuesResult" : {
"c2jName" : "ListDeadLetterSourceQueuesResult",
"documentation" : "A list of your dead letter source queues.
",
"shapeName" : "ListDeadLetterSourceQueuesResult",
"deprecated" : false,
"required" : [ "queueUrls" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.
",
"name" : "QueueUrls",
"c2jName" : "queueUrls",
"c2jShape" : "QueueUrlList",
"variable" : {
"variableName" : "queueUrls",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "queueUrls",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "queueUrls",
"marshallLocationName" : "queueUrls",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : "QueueUrl",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "String",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "QueueUrl",
"marshallLocationName" : "QueueUrl",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.
\n@param queueUrls A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.*/",
"getterDocumentation" : "/**A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.
\n@return A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.*/",
"fluentSetterDocumentation" : "/**A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.
\n@param queueUrls A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setQueueUrls(java.util.Collection)} or {@link #withQueueUrls(java.util.Collection)} if you want to override the existing values.
\n@param queueUrls A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "listDeadLetterSourceQueuesResult",
"variableType" : "ListDeadLetterSourceQueuesResult",
"variableDeclarationType" : "ListDeadLetterSourceQueuesResult",
"documentation" : null,
"simpleType" : "ListDeadLetterSourceQueuesResult",
"variableSetterType" : "ListDeadLetterSourceQueuesResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : "ListDeadLetterSourceQueuesResult",
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"QueueUrls" : {
"documentation" : "A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.
",
"name" : "QueueUrls",
"c2jName" : "queueUrls",
"c2jShape" : "QueueUrlList",
"variable" : {
"variableName" : "queueUrls",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "queueUrls",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "queueUrls",
"marshallLocationName" : "queueUrls",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : "QueueUrl",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "String",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "QueueUrl",
"marshallLocationName" : "QueueUrl",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.
\n@param queueUrls A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.*/",
"getterDocumentation" : "/**A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.
\n@return A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.*/",
"fluentSetterDocumentation" : "/**A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.
\n@param queueUrls A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setQueueUrls(java.util.Collection)} or {@link #withQueueUrls(java.util.Collection)} if you want to override the existing values.
\n@param queueUrls A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"SendMessageRequest" : {
"c2jName" : "SendMessageRequest",
"documentation" : "",
"shapeName" : "SendMessageRequest",
"deprecated" : false,
"required" : [ "QueueUrl", "MessageBody" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The URL of the Amazon SQS queue to take action on.
Queue URLs are case-sensitive.
",
"name" : "QueueUrl",
"c2jName" : "QueueUrl",
"c2jShape" : "String",
"variable" : {
"variableName" : "queueUrl",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The URL of the Amazon SQS queue to take action on.
Queue URLs are case-sensitive.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "queueUrl",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "QueueUrl",
"marshallLocationName" : "QueueUrl",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The URL of the Amazon SQS queue to take action on.
Queue URLs are case-sensitive.
\n@param queueUrl The URL of the Amazon SQS queue to take action on. Queue URLs are case-sensitive.*/",
"getterDocumentation" : "/**
The URL of the Amazon SQS queue to take action on.
Queue URLs are case-sensitive.
\n@return The URL of the Amazon SQS queue to take action on. Queue URLs are case-sensitive.*/",
"fluentSetterDocumentation" : "/**
The URL of the Amazon SQS queue to take action on.
Queue URLs are case-sensitive.
\n@param queueUrl The URL of the Amazon SQS queue to take action on. Queue URLs are case-sensitive.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
The URL of the Amazon SQS queue to take action on.
Queue URLs are case-sensitive.
\n@param queueUrl The URL of the Amazon SQS queue to take action on. Queue URLs are case-sensitive.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "
The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.
",
"name" : "MessageBody",
"c2jName" : "MessageBody",
"c2jShape" : "String",
"variable" : {
"variableName" : "messageBody",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "messageBody",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MessageBody",
"marshallLocationName" : "MessageBody",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.
\n@param messageBody The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.*/",
"getterDocumentation" : "/**The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.
\n@return The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.*/",
"fluentSetterDocumentation" : "/**The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.
\n@param messageBody The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.
\n@param messageBody The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : " The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.
",
"name" : "DelaySeconds",
"c2jName" : "DelaySeconds",
"c2jShape" : "Integer",
"variable" : {
"variableName" : "delaySeconds",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : " The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "delaySeconds",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DelaySeconds",
"marshallLocationName" : "DelaySeconds",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/** The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.
\n@param delaySeconds The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.*/",
"getterDocumentation" : "/** The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.
\n@return The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.*/",
"fluentSetterDocumentation" : "/** The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.
\n@param delaySeconds The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/** The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.
\n@param delaySeconds The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.
",
"name" : "MessageAttributes",
"c2jName" : "MessageAttributes",
"c2jShape" : "MessageAttributeMap",
"variable" : {
"variableName" : "messageAttributes",
"variableType" : "java.util.Map",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalMap",
"documentation" : "Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.
",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"setterModel" : {
"variableName" : "messageAttributes",
"variableType" : "java.util.Map",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalMap",
"documentation" : "",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"getterModel" : {
"returnType" : "java.util.Map",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MessageAttribute",
"marshallLocationName" : "MessageAttribute",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : {
"implType" : "com.amazonaws.internal.SdkInternalMap",
"interfaceType" : "java.util.Map",
"keyType" : "String",
"keyLocationName" : "Name",
"keyModel" : null,
"valueType" : "MessageAttributeValue",
"valueLocationName" : "Value",
"valueModel" : {
"documentation" : "",
"name" : "Value",
"c2jName" : "value",
"c2jShape" : "MessageAttributeValue",
"variable" : {
"variableName" : "value",
"variableType" : "MessageAttributeValue",
"variableDeclarationType" : "MessageAttributeValue",
"documentation" : "",
"simpleType" : "MessageAttributeValue",
"variableSetterType" : "MessageAttributeValue"
},
"setterModel" : {
"variableName" : "value",
"variableType" : "MessageAttributeValue",
"variableDeclarationType" : "MessageAttributeValue",
"documentation" : "",
"simpleType" : "MessageAttributeValue",
"variableSetterType" : "MessageAttributeValue"
},
"getterModel" : {
"returnType" : "MessageAttributeValue",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Value",
"marshallLocationName" : "Value",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param value */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"keySimple" : true,
"valueSimple" : false,
"valueList" : false,
"entryType" : "Map.Entry",
"templateType" : "java.util.Map",
"templateImplType" : "com.amazonaws.internal.SdkInternalMap"
},
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : true,
"setterDocumentation" : "/**Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.
\n@param messageAttributes Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.*/",
"getterDocumentation" : "/**Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.
\n@return Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.*/",
"fluentSetterDocumentation" : "/**Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.
\n@param messageAttributes Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.
\n@param messageAttributes Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "sendMessageRequest",
"variableType" : "SendMessageRequest",
"variableDeclarationType" : "SendMessageRequest",
"documentation" : null,
"simpleType" : "SendMessageRequest",
"variableSetterType" : "SendMessageRequest"
},
"marshaller" : {
"action" : "SendMessage",
"verb" : "POST",
"target" : null,
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"MessageAttributes" : {
"documentation" : "Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.
",
"name" : "MessageAttributes",
"c2jName" : "MessageAttributes",
"c2jShape" : "MessageAttributeMap",
"variable" : {
"variableName" : "messageAttributes",
"variableType" : "java.util.Map",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalMap",
"documentation" : "Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.
",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"setterModel" : {
"variableName" : "messageAttributes",
"variableType" : "java.util.Map",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalMap",
"documentation" : "",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"getterModel" : {
"returnType" : "java.util.Map",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MessageAttribute",
"marshallLocationName" : "MessageAttribute",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : {
"implType" : "com.amazonaws.internal.SdkInternalMap",
"interfaceType" : "java.util.Map",
"keyType" : "String",
"keyLocationName" : "Name",
"keyModel" : null,
"valueType" : "MessageAttributeValue",
"valueLocationName" : "Value",
"valueModel" : {
"documentation" : "",
"name" : "Value",
"c2jName" : "value",
"c2jShape" : "MessageAttributeValue",
"variable" : {
"variableName" : "value",
"variableType" : "MessageAttributeValue",
"variableDeclarationType" : "MessageAttributeValue",
"documentation" : "",
"simpleType" : "MessageAttributeValue",
"variableSetterType" : "MessageAttributeValue"
},
"setterModel" : {
"variableName" : "value",
"variableType" : "MessageAttributeValue",
"variableDeclarationType" : "MessageAttributeValue",
"documentation" : "",
"simpleType" : "MessageAttributeValue",
"variableSetterType" : "MessageAttributeValue"
},
"getterModel" : {
"returnType" : "MessageAttributeValue",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Value",
"marshallLocationName" : "Value",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param value */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"keySimple" : true,
"valueSimple" : false,
"valueList" : false,
"entryType" : "Map.Entry",
"templateType" : "java.util.Map",
"templateImplType" : "com.amazonaws.internal.SdkInternalMap"
},
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : true,
"setterDocumentation" : "/**Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.
\n@param messageAttributes Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.*/",
"getterDocumentation" : "/**Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.
\n@return Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.*/",
"fluentSetterDocumentation" : "/**Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.
\n@param messageAttributes Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.
\n@param messageAttributes Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"DelaySeconds" : {
"documentation" : " The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.
",
"name" : "DelaySeconds",
"c2jName" : "DelaySeconds",
"c2jShape" : "Integer",
"variable" : {
"variableName" : "delaySeconds",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : " The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "delaySeconds",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DelaySeconds",
"marshallLocationName" : "DelaySeconds",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/** The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.
\n@param delaySeconds The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.*/",
"getterDocumentation" : "/** The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.
\n@return The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.*/",
"fluentSetterDocumentation" : "/** The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.
\n@param delaySeconds The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/** The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.
\n@param delaySeconds The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive DelaySeconds
value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"QueueUrl" : {
"documentation" : "The URL of the Amazon SQS queue to take action on.
Queue URLs are case-sensitive.
",
"name" : "QueueUrl",
"c2jName" : "QueueUrl",
"c2jShape" : "String",
"variable" : {
"variableName" : "queueUrl",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The URL of the Amazon SQS queue to take action on.
Queue URLs are case-sensitive.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "queueUrl",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "QueueUrl",
"marshallLocationName" : "QueueUrl",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The URL of the Amazon SQS queue to take action on.
Queue URLs are case-sensitive.
\n@param queueUrl The URL of the Amazon SQS queue to take action on. Queue URLs are case-sensitive.*/",
"getterDocumentation" : "/**
The URL of the Amazon SQS queue to take action on.
Queue URLs are case-sensitive.
\n@return The URL of the Amazon SQS queue to take action on. Queue URLs are case-sensitive.*/",
"fluentSetterDocumentation" : "/**
The URL of the Amazon SQS queue to take action on.
Queue URLs are case-sensitive.
\n@param queueUrl The URL of the Amazon SQS queue to take action on. Queue URLs are case-sensitive.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
The URL of the Amazon SQS queue to take action on.
Queue URLs are case-sensitive.
\n@param queueUrl The URL of the Amazon SQS queue to take action on. Queue URLs are case-sensitive.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"MessageBody" : {
"documentation" : "
The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.
",
"name" : "MessageBody",
"c2jName" : "MessageBody",
"c2jShape" : "String",
"variable" : {
"variableName" : "messageBody",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "messageBody",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MessageBody",
"marshallLocationName" : "MessageBody",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.
\n@param messageBody The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.*/",
"getterDocumentation" : "/**The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.
\n@return The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.*/",
"fluentSetterDocumentation" : "/**The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.
\n@param messageBody The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.
\n@param messageBody The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"BatchEntryIdsNotDistinctException" : {
"c2jName" : "BatchEntryIdsNotDistinct",
"documentation" : "Two or more batch entries have the same Id
in the request.
",
"shapeName" : "BatchEntryIdsNotDistinctException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "batchEntryIdsNotDistinctException",
"variableType" : "BatchEntryIdsNotDistinctException",
"variableDeclarationType" : "BatchEntryIdsNotDistinctException",
"documentation" : null,
"simpleType" : "BatchEntryIdsNotDistinctException",
"variableSetterType" : "BatchEntryIdsNotDistinctException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "AWS.SimpleQueueService.BatchEntryIdsNotDistinct",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"ChangeMessageVisibilityResult" : {
"c2jName" : "ChangeMessageVisibilityResult",
"documentation" : null,
"shapeName" : "ChangeMessageVisibilityResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "changeMessageVisibilityResult",
"variableType" : "ChangeMessageVisibilityResult",
"variableDeclarationType" : "ChangeMessageVisibilityResult",
"documentation" : null,
"simpleType" : "ChangeMessageVisibilityResult",
"variableSetterType" : "ChangeMessageVisibilityResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"ChangeMessageVisibilityBatchResult" : {
"c2jName" : "ChangeMessageVisibilityBatchResult",
"documentation" : " For each message in the batch, the response contains a ChangeMessageVisibilityBatchResultEntry tag if the message succeeds or a BatchResultErrorEntry tag if the message fails.
",
"shapeName" : "ChangeMessageVisibilityBatchResult",
"deprecated" : false,
"required" : [ "Successful", "Failed" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A list of ChangeMessageVisibilityBatchResultEntry items.
",
"name" : "Successful",
"c2jName" : "Successful",
"c2jShape" : "ChangeMessageVisibilityBatchResultEntryList",
"variable" : {
"variableName" : "successful",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of ChangeMessageVisibilityBatchResultEntry items.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "successful",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Successful",
"marshallLocationName" : "Successful",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "ChangeMessageVisibilityBatchResultEntry",
"memberLocationName" : "ChangeMessageVisibilityBatchResultEntry",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "ChangeMessageVisibilityBatchResultEntry",
"variable" : {
"variableName" : "member",
"variableType" : "ChangeMessageVisibilityBatchResultEntry",
"variableDeclarationType" : "ChangeMessageVisibilityBatchResultEntry",
"documentation" : "",
"simpleType" : "ChangeMessageVisibilityBatchResultEntry",
"variableSetterType" : "ChangeMessageVisibilityBatchResultEntry"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "ChangeMessageVisibilityBatchResultEntry",
"variableDeclarationType" : "ChangeMessageVisibilityBatchResultEntry",
"documentation" : "",
"simpleType" : "ChangeMessageVisibilityBatchResultEntry",
"variableSetterType" : "ChangeMessageVisibilityBatchResultEntry"
},
"getterModel" : {
"returnType" : "ChangeMessageVisibilityBatchResultEntry",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ChangeMessageVisibilityBatchResultEntry",
"marshallLocationName" : "ChangeMessageVisibilityBatchResultEntry",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "ChangeMessageVisibilityBatchResultEntry",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of ChangeMessageVisibilityBatchResultEntry items.
\n@param successful A list of ChangeMessageVisibilityBatchResultEntry items.*/",
"getterDocumentation" : "/**A list of ChangeMessageVisibilityBatchResultEntry items.
\n@return A list of ChangeMessageVisibilityBatchResultEntry items.*/",
"fluentSetterDocumentation" : "/**A list of ChangeMessageVisibilityBatchResultEntry items.
\n@param successful A list of ChangeMessageVisibilityBatchResultEntry items.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of ChangeMessageVisibilityBatchResultEntry items.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setSuccessful(java.util.Collection)} or {@link #withSuccessful(java.util.Collection)} if you want to override the existing values.
\n@param successful A list of ChangeMessageVisibilityBatchResultEntry items.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A list of BatchResultErrorEntry items.
",
"name" : "Failed",
"c2jName" : "Failed",
"c2jShape" : "BatchResultErrorEntryList",
"variable" : {
"variableName" : "failed",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of BatchResultErrorEntry items.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "failed",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Failed",
"marshallLocationName" : "Failed",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "BatchResultErrorEntry",
"memberLocationName" : "BatchResultErrorEntry",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "BatchResultErrorEntry",
"variable" : {
"variableName" : "member",
"variableType" : "BatchResultErrorEntry",
"variableDeclarationType" : "BatchResultErrorEntry",
"documentation" : "",
"simpleType" : "BatchResultErrorEntry",
"variableSetterType" : "BatchResultErrorEntry"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "BatchResultErrorEntry",
"variableDeclarationType" : "BatchResultErrorEntry",
"documentation" : "",
"simpleType" : "BatchResultErrorEntry",
"variableSetterType" : "BatchResultErrorEntry"
},
"getterModel" : {
"returnType" : "BatchResultErrorEntry",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BatchResultErrorEntry",
"marshallLocationName" : "BatchResultErrorEntry",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "BatchResultErrorEntry",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of BatchResultErrorEntry items.
\n@param failed A list of BatchResultErrorEntry items.*/",
"getterDocumentation" : "/**A list of BatchResultErrorEntry items.
\n@return A list of BatchResultErrorEntry items.*/",
"fluentSetterDocumentation" : "/**A list of BatchResultErrorEntry items.
\n@param failed A list of BatchResultErrorEntry items.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of BatchResultErrorEntry items.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setFailed(java.util.Collection)} or {@link #withFailed(java.util.Collection)} if you want to override the existing values.
\n@param failed A list of BatchResultErrorEntry items.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "changeMessageVisibilityBatchResult",
"variableType" : "ChangeMessageVisibilityBatchResult",
"variableDeclarationType" : "ChangeMessageVisibilityBatchResult",
"documentation" : null,
"simpleType" : "ChangeMessageVisibilityBatchResult",
"variableSetterType" : "ChangeMessageVisibilityBatchResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : "ChangeMessageVisibilityBatchResult",
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Failed" : {
"documentation" : "A list of BatchResultErrorEntry items.
",
"name" : "Failed",
"c2jName" : "Failed",
"c2jShape" : "BatchResultErrorEntryList",
"variable" : {
"variableName" : "failed",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of BatchResultErrorEntry items.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "failed",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Failed",
"marshallLocationName" : "Failed",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "BatchResultErrorEntry",
"memberLocationName" : "BatchResultErrorEntry",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "BatchResultErrorEntry",
"variable" : {
"variableName" : "member",
"variableType" : "BatchResultErrorEntry",
"variableDeclarationType" : "BatchResultErrorEntry",
"documentation" : "",
"simpleType" : "BatchResultErrorEntry",
"variableSetterType" : "BatchResultErrorEntry"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "BatchResultErrorEntry",
"variableDeclarationType" : "BatchResultErrorEntry",
"documentation" : "",
"simpleType" : "BatchResultErrorEntry",
"variableSetterType" : "BatchResultErrorEntry"
},
"getterModel" : {
"returnType" : "BatchResultErrorEntry",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BatchResultErrorEntry",
"marshallLocationName" : "BatchResultErrorEntry",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "BatchResultErrorEntry",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of BatchResultErrorEntry items.
\n@param failed A list of BatchResultErrorEntry items.*/",
"getterDocumentation" : "/**A list of BatchResultErrorEntry items.
\n@return A list of BatchResultErrorEntry items.*/",
"fluentSetterDocumentation" : "/**A list of BatchResultErrorEntry items.
\n@param failed A list of BatchResultErrorEntry items.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of BatchResultErrorEntry items.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setFailed(java.util.Collection)} or {@link #withFailed(java.util.Collection)} if you want to override the existing values.
\n@param failed A list of BatchResultErrorEntry items.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Successful" : {
"documentation" : "A list of ChangeMessageVisibilityBatchResultEntry items.
",
"name" : "Successful",
"c2jName" : "Successful",
"c2jShape" : "ChangeMessageVisibilityBatchResultEntryList",
"variable" : {
"variableName" : "successful",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of ChangeMessageVisibilityBatchResultEntry items.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "successful",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Successful",
"marshallLocationName" : "Successful",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "ChangeMessageVisibilityBatchResultEntry",
"memberLocationName" : "ChangeMessageVisibilityBatchResultEntry",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "ChangeMessageVisibilityBatchResultEntry",
"variable" : {
"variableName" : "member",
"variableType" : "ChangeMessageVisibilityBatchResultEntry",
"variableDeclarationType" : "ChangeMessageVisibilityBatchResultEntry",
"documentation" : "",
"simpleType" : "ChangeMessageVisibilityBatchResultEntry",
"variableSetterType" : "ChangeMessageVisibilityBatchResultEntry"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "ChangeMessageVisibilityBatchResultEntry",
"variableDeclarationType" : "ChangeMessageVisibilityBatchResultEntry",
"documentation" : "",
"simpleType" : "ChangeMessageVisibilityBatchResultEntry",
"variableSetterType" : "ChangeMessageVisibilityBatchResultEntry"
},
"getterModel" : {
"returnType" : "ChangeMessageVisibilityBatchResultEntry",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ChangeMessageVisibilityBatchResultEntry",
"marshallLocationName" : "ChangeMessageVisibilityBatchResultEntry",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "ChangeMessageVisibilityBatchResultEntry",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of ChangeMessageVisibilityBatchResultEntry items.
\n@param successful A list of ChangeMessageVisibilityBatchResultEntry items.*/",
"getterDocumentation" : "/**A list of ChangeMessageVisibilityBatchResultEntry items.
\n@return A list of ChangeMessageVisibilityBatchResultEntry items.*/",
"fluentSetterDocumentation" : "/**A list of ChangeMessageVisibilityBatchResultEntry items.
\n@param successful A list of ChangeMessageVisibilityBatchResultEntry items.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of ChangeMessageVisibilityBatchResultEntry items.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setSuccessful(java.util.Collection)} or {@link #withSuccessful(java.util.Collection)} if you want to override the existing values.
\n@param successful A list of ChangeMessageVisibilityBatchResultEntry items.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"TooManyEntriesInBatchRequestException" : {
"c2jName" : "TooManyEntriesInBatchRequest",
"documentation" : "Batch request contains more number of entries than permissible.
",
"shapeName" : "TooManyEntriesInBatchRequestException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "tooManyEntriesInBatchRequestException",
"variableType" : "TooManyEntriesInBatchRequestException",
"variableDeclarationType" : "TooManyEntriesInBatchRequestException",
"documentation" : null,
"simpleType" : "TooManyEntriesInBatchRequestException",
"variableSetterType" : "TooManyEntriesInBatchRequestException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "AWS.SimpleQueueService.TooManyEntriesInBatchRequest",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"BatchRequestTooLongException" : {
"c2jName" : "BatchRequestTooLong",
"documentation" : "The length of all the messages put together is more than the limit.
",
"shapeName" : "BatchRequestTooLongException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "batchRequestTooLongException",
"variableType" : "BatchRequestTooLongException",
"variableDeclarationType" : "BatchRequestTooLongException",
"documentation" : null,
"simpleType" : "BatchRequestTooLongException",
"variableSetterType" : "BatchRequestTooLongException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "AWS.SimpleQueueService.BatchRequestTooLong",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"DeleteMessageBatchResultEntry" : {
"c2jName" : "DeleteMessageBatchResultEntry",
"documentation" : "Encloses the id an entry in DeleteMessageBatch.
",
"shapeName" : "DeleteMessageBatchResultEntry",
"deprecated" : false,
"required" : [ "Id" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "Represents a successfully deleted message.
",
"name" : "Id",
"c2jName" : "Id",
"c2jShape" : "String",
"variable" : {
"variableName" : "id",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Represents a successfully deleted message.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "id",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Id",
"marshallLocationName" : "Id",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Represents a successfully deleted message.
\n@param id Represents a successfully deleted message.*/",
"getterDocumentation" : "/**Represents a successfully deleted message.
\n@return Represents a successfully deleted message.*/",
"fluentSetterDocumentation" : "/**Represents a successfully deleted message.
\n@param id Represents a successfully deleted message.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Represents a successfully deleted message.
\n@param id Represents a successfully deleted message.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "deleteMessageBatchResultEntry",
"variableType" : "DeleteMessageBatchResultEntry",
"variableDeclarationType" : "DeleteMessageBatchResultEntry",
"documentation" : null,
"simpleType" : "DeleteMessageBatchResultEntry",
"variableSetterType" : "DeleteMessageBatchResultEntry"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Id" : {
"documentation" : "Represents a successfully deleted message.
",
"name" : "Id",
"c2jName" : "Id",
"c2jShape" : "String",
"variable" : {
"variableName" : "id",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Represents a successfully deleted message.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "id",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Id",
"marshallLocationName" : "Id",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Represents a successfully deleted message.
\n@param id Represents a successfully deleted message.*/",
"getterDocumentation" : "/**Represents a successfully deleted message.
\n@return Represents a successfully deleted message.*/",
"fluentSetterDocumentation" : "/**Represents a successfully deleted message.
\n@param id Represents a successfully deleted message.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Represents a successfully deleted message.
\n@param id Represents a successfully deleted message.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"MessageAttributeValue" : {
"c2jName" : "MessageAttributeValue",
"documentation" : "The user-specified message attribute value. For string data types, the value attribute has the same restrictions on the content as the message body. For more information, see SendMessage.
Name, type, and value must not be empty or null. In addition, the message body should not be empty or null. All parts of the message attribute, including name, type, and value, are included in the message size restriction, which is currently 256 KB (262,144 bytes).
",
"shapeName" : "MessageAttributeValue",
"deprecated" : false,
"required" : [ "DataType" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.
",
"name" : "StringValue",
"c2jName" : "StringValue",
"c2jShape" : "String",
"variable" : {
"variableName" : "stringValue",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "stringValue",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StringValue",
"marshallLocationName" : "StringValue",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.
\n@param stringValue Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.*/",
"getterDocumentation" : "/**Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.
\n@return Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.*/",
"fluentSetterDocumentation" : "/**Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.
\n@param stringValue Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.
\n@param stringValue Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.
",
"name" : "BinaryValue",
"c2jName" : "BinaryValue",
"c2jShape" : "Binary",
"variable" : {
"variableName" : "binaryValue",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.
",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"setterModel" : {
"variableName" : "binaryValue",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"getterModel" : {
"returnType" : "java.nio.ByteBuffer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BinaryValue",
"marshallLocationName" : "BinaryValue",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.
\nAWS SDK for Java performs a Base64 encoding on this field before sending this request to AWS service by default. Users of the SDK should not perform Base64 encoding on this field.\n
\n\nWarning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future major version of the SDK.\n
\n\n@param binaryValue Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.*/",
"getterDocumentation" : "/**Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.
\n\n{@code ByteBuffer}s are stateful. Calling their {@code get} methods changes their {@code position}. We recommend using {@link java.nio.ByteBuffer#asReadOnlyBuffer()} to create a read-only view of the buffer with an independent {@code position}, and calling {@code get} methods on this rather than directly on the returned {@code ByteBuffer}. Doing so will ensure that anyone else using the {@code ByteBuffer} will not be affected by changes to the {@code position}.\n
\n@return Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.*/",
"fluentSetterDocumentation" : "/**Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.
\n@param binaryValue Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.
\n@param binaryValue Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Not implemented. Reserved for future use.
",
"name" : "StringListValues",
"c2jName" : "StringListValues",
"c2jShape" : "StringList",
"variable" : {
"variableName" : "stringListValues",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "Not implemented. Reserved for future use.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "stringListValues",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StringListValue",
"marshallLocationName" : "StringListValue",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : "StringListValue",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "String",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StringListValue",
"marshallLocationName" : "StringListValue",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**Not implemented. Reserved for future use.
\n@param stringListValues Not implemented. Reserved for future use.*/",
"getterDocumentation" : "/**Not implemented. Reserved for future use.
\n@return Not implemented. Reserved for future use.*/",
"fluentSetterDocumentation" : "/**Not implemented. Reserved for future use.
\n@param stringListValues Not implemented. Reserved for future use.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Not implemented. Reserved for future use.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setStringListValues(java.util.Collection)} or {@link #withStringListValues(java.util.Collection)} if you want to override the existing values.
\n@param stringListValues Not implemented. Reserved for future use.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Not implemented. Reserved for future use.
",
"name" : "BinaryListValues",
"c2jName" : "BinaryListValues",
"c2jShape" : "BinaryList",
"variable" : {
"variableName" : "binaryListValues",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "Not implemented. Reserved for future use.
",
"simpleType" : "ByteBuffer>",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "binaryListValues",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "ByteBuffer>",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BinaryListValue",
"marshallLocationName" : "BinaryListValue",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "java.nio.ByteBuffer",
"memberLocationName" : "BinaryListValue",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "Binary",
"variable" : {
"variableName" : "member",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"getterModel" : {
"returnType" : "java.nio.ByteBuffer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BinaryListValue",
"marshallLocationName" : "BinaryListValue",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\nAWS SDK for Java performs a Base64 encoding on this field before sending this request to AWS service by default. Users of the SDK should not perform Base64 encoding on this field.\n
\n\nWarning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future major version of the SDK.\n
\n\n@param member */",
"getterDocumentation" : "/**\n\n{@code ByteBuffer}s are stateful. Calling their {@code get} methods changes their {@code position}. We recommend using {@link java.nio.ByteBuffer#asReadOnlyBuffer()} to create a read-only view of the buffer with an independent {@code position}, and calling {@code get} methods on this rather than directly on the returned {@code ByteBuffer}. Doing so will ensure that anyone else using the {@code ByteBuffer} will not be affected by changes to the {@code position}.\n
\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "ByteBuffer",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**Not implemented. Reserved for future use.
\n@param binaryListValues Not implemented. Reserved for future use.*/",
"getterDocumentation" : "/**Not implemented. Reserved for future use.
\n@return Not implemented. Reserved for future use.*/",
"fluentSetterDocumentation" : "/**Not implemented. Reserved for future use.
\n@param binaryListValues Not implemented. Reserved for future use.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Not implemented. Reserved for future use.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setBinaryListValues(java.util.Collection)} or {@link #withBinaryListValues(java.util.Collection)} if you want to override the existing values.
\n@param binaryListValues Not implemented. Reserved for future use.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue.
You can also append custom labels. For more information, see Message Attribute Data Types.
",
"name" : "DataType",
"c2jName" : "DataType",
"c2jShape" : "String",
"variable" : {
"variableName" : "dataType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue.
You can also append custom labels. For more information, see Message Attribute Data Types.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "dataType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DataType",
"marshallLocationName" : "DataType",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue.
You can also append custom labels. For more information, see Message Attribute Data Types.
\n@param dataType Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue. You can also append custom labels. For more information, see Message Attribute Data Types.*/",
"getterDocumentation" : "/**
Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue.
You can also append custom labels. For more information, see Message Attribute Data Types.
\n@return Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue. You can also append custom labels. For more information, see Message Attribute Data Types.*/",
"fluentSetterDocumentation" : "/**
Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue.
You can also append custom labels. For more information, see Message Attribute Data Types.
\n@param dataType Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue. You can also append custom labels. For more information, see Message Attribute Data Types.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue.
You can also append custom labels. For more information, see Message Attribute Data Types.
\n@param dataType Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue. You can also append custom labels. For more information, see Message Attribute Data Types.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "messageAttributeValue",
"variableType" : "MessageAttributeValue",
"variableDeclarationType" : "MessageAttributeValue",
"documentation" : null,
"simpleType" : "MessageAttributeValue",
"variableSetterType" : "MessageAttributeValue"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BinaryListValues" : {
"documentation" : "
Not implemented. Reserved for future use.
",
"name" : "BinaryListValues",
"c2jName" : "BinaryListValues",
"c2jShape" : "BinaryList",
"variable" : {
"variableName" : "binaryListValues",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "Not implemented. Reserved for future use.
",
"simpleType" : "ByteBuffer>",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "binaryListValues",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "ByteBuffer>",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BinaryListValue",
"marshallLocationName" : "BinaryListValue",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "java.nio.ByteBuffer",
"memberLocationName" : "BinaryListValue",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "Binary",
"variable" : {
"variableName" : "member",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"getterModel" : {
"returnType" : "java.nio.ByteBuffer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BinaryListValue",
"marshallLocationName" : "BinaryListValue",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\nAWS SDK for Java performs a Base64 encoding on this field before sending this request to AWS service by default. Users of the SDK should not perform Base64 encoding on this field.\n
\n\nWarning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future major version of the SDK.\n
\n\n@param member */",
"getterDocumentation" : "/**\n\n{@code ByteBuffer}s are stateful. Calling their {@code get} methods changes their {@code position}. We recommend using {@link java.nio.ByteBuffer#asReadOnlyBuffer()} to create a read-only view of the buffer with an independent {@code position}, and calling {@code get} methods on this rather than directly on the returned {@code ByteBuffer}. Doing so will ensure that anyone else using the {@code ByteBuffer} will not be affected by changes to the {@code position}.\n
\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "ByteBuffer",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**Not implemented. Reserved for future use.
\n@param binaryListValues Not implemented. Reserved for future use.*/",
"getterDocumentation" : "/**Not implemented. Reserved for future use.
\n@return Not implemented. Reserved for future use.*/",
"fluentSetterDocumentation" : "/**Not implemented. Reserved for future use.
\n@param binaryListValues Not implemented. Reserved for future use.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Not implemented. Reserved for future use.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setBinaryListValues(java.util.Collection)} or {@link #withBinaryListValues(java.util.Collection)} if you want to override the existing values.
\n@param binaryListValues Not implemented. Reserved for future use.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"StringListValues" : {
"documentation" : "Not implemented. Reserved for future use.
",
"name" : "StringListValues",
"c2jName" : "StringListValues",
"c2jShape" : "StringList",
"variable" : {
"variableName" : "stringListValues",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "Not implemented. Reserved for future use.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "stringListValues",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StringListValue",
"marshallLocationName" : "StringListValue",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : "StringListValue",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "String",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StringListValue",
"marshallLocationName" : "StringListValue",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**Not implemented. Reserved for future use.
\n@param stringListValues Not implemented. Reserved for future use.*/",
"getterDocumentation" : "/**Not implemented. Reserved for future use.
\n@return Not implemented. Reserved for future use.*/",
"fluentSetterDocumentation" : "/**Not implemented. Reserved for future use.
\n@param stringListValues Not implemented. Reserved for future use.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Not implemented. Reserved for future use.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setStringListValues(java.util.Collection)} or {@link #withStringListValues(java.util.Collection)} if you want to override the existing values.
\n@param stringListValues Not implemented. Reserved for future use.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"BinaryValue" : {
"documentation" : "Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.
",
"name" : "BinaryValue",
"c2jName" : "BinaryValue",
"c2jShape" : "Binary",
"variable" : {
"variableName" : "binaryValue",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.
",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"setterModel" : {
"variableName" : "binaryValue",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"getterModel" : {
"returnType" : "java.nio.ByteBuffer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BinaryValue",
"marshallLocationName" : "BinaryValue",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.
\nAWS SDK for Java performs a Base64 encoding on this field before sending this request to AWS service by default. Users of the SDK should not perform Base64 encoding on this field.\n
\n\nWarning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future major version of the SDK.\n
\n\n@param binaryValue Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.*/",
"getterDocumentation" : "/**Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.
\n\n{@code ByteBuffer}s are stateful. Calling their {@code get} methods changes their {@code position}. We recommend using {@link java.nio.ByteBuffer#asReadOnlyBuffer()} to create a read-only view of the buffer with an independent {@code position}, and calling {@code get} methods on this rather than directly on the returned {@code ByteBuffer}. Doing so will ensure that anyone else using the {@code ByteBuffer} will not be affected by changes to the {@code position}.\n
\n@return Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.*/",
"fluentSetterDocumentation" : "/**Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.
\n@param binaryValue Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.
\n@param binaryValue Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"DataType" : {
"documentation" : "Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue.
You can also append custom labels. For more information, see Message Attribute Data Types.
",
"name" : "DataType",
"c2jName" : "DataType",
"c2jShape" : "String",
"variable" : {
"variableName" : "dataType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue.
You can also append custom labels. For more information, see Message Attribute Data Types.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "dataType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DataType",
"marshallLocationName" : "DataType",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue.
You can also append custom labels. For more information, see Message Attribute Data Types.
\n@param dataType Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue. You can also append custom labels. For more information, see Message Attribute Data Types.*/",
"getterDocumentation" : "/**
Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue.
You can also append custom labels. For more information, see Message Attribute Data Types.
\n@return Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue. You can also append custom labels. For more information, see Message Attribute Data Types.*/",
"fluentSetterDocumentation" : "/**
Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue.
You can also append custom labels. For more information, see Message Attribute Data Types.
\n@param dataType Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue. You can also append custom labels. For more information, see Message Attribute Data Types.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue.
You can also append custom labels. For more information, see Message Attribute Data Types.
\n@param dataType Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue. You can also append custom labels. For more information, see Message Attribute Data Types.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"StringValue" : {
"documentation" : "
Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.
",
"name" : "StringValue",
"c2jName" : "StringValue",
"c2jShape" : "String",
"variable" : {
"variableName" : "stringValue",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "stringValue",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StringValue",
"marshallLocationName" : "StringValue",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.
\n@param stringValue Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.*/",
"getterDocumentation" : "/**Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.
\n@return Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.*/",
"fluentSetterDocumentation" : "/**Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.
\n@param stringValue Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.
\n@param stringValue Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"UnsupportedOperationException" : {
"c2jName" : "UnsupportedOperation",
"documentation" : "Error code 400. Unsupported operation.
",
"shapeName" : "UnsupportedOperationException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "unsupportedOperationException",
"variableType" : "UnsupportedOperationException",
"variableDeclarationType" : "UnsupportedOperationException",
"documentation" : null,
"simpleType" : "UnsupportedOperationException",
"variableSetterType" : "UnsupportedOperationException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "AWS.SimpleQueueService.UnsupportedOperation",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"GetQueueUrlRequest" : {
"c2jName" : "GetQueueUrlRequest",
"documentation" : "",
"shapeName" : "GetQueueUrlRequest",
"deprecated" : false,
"required" : [ "QueueName" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.
Queue names are case-sensitive.
",
"name" : "QueueName",
"c2jName" : "QueueName",
"c2jShape" : "String",
"variable" : {
"variableName" : "queueName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.
Queue names are case-sensitive.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "queueName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "QueueName",
"marshallLocationName" : "QueueName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.
Queue names are case-sensitive.
\n@param queueName The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed. Queue names are case-sensitive.*/",
"getterDocumentation" : "/**
The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.
Queue names are case-sensitive.
\n@return The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed. Queue names are case-sensitive.*/",
"fluentSetterDocumentation" : "/**
The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.
Queue names are case-sensitive.
\n@param queueName The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed. Queue names are case-sensitive.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.
Queue names are case-sensitive.
\n@param queueName The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed. Queue names are case-sensitive.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "
The AWS account ID of the account that created the queue.
",
"name" : "QueueOwnerAWSAccountId",
"c2jName" : "QueueOwnerAWSAccountId",
"c2jShape" : "String",
"variable" : {
"variableName" : "queueOwnerAWSAccountId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The AWS account ID of the account that created the queue.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "queueOwnerAWSAccountId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "QueueOwnerAWSAccountId",
"marshallLocationName" : "QueueOwnerAWSAccountId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The AWS account ID of the account that created the queue.
\n@param queueOwnerAWSAccountId The AWS account ID of the account that created the queue.*/",
"getterDocumentation" : "/**The AWS account ID of the account that created the queue.
\n@return The AWS account ID of the account that created the queue.*/",
"fluentSetterDocumentation" : "/**The AWS account ID of the account that created the queue.
\n@param queueOwnerAWSAccountId The AWS account ID of the account that created the queue.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The AWS account ID of the account that created the queue.
\n@param queueOwnerAWSAccountId The AWS account ID of the account that created the queue.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getQueueUrlRequest",
"variableType" : "GetQueueUrlRequest",
"variableDeclarationType" : "GetQueueUrlRequest",
"documentation" : null,
"simpleType" : "GetQueueUrlRequest",
"variableSetterType" : "GetQueueUrlRequest"
},
"marshaller" : {
"action" : "GetQueueUrl",
"verb" : "POST",
"target" : null,
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"QueueOwnerAWSAccountId" : {
"documentation" : "The AWS account ID of the account that created the queue.
",
"name" : "QueueOwnerAWSAccountId",
"c2jName" : "QueueOwnerAWSAccountId",
"c2jShape" : "String",
"variable" : {
"variableName" : "queueOwnerAWSAccountId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The AWS account ID of the account that created the queue.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "queueOwnerAWSAccountId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "QueueOwnerAWSAccountId",
"marshallLocationName" : "QueueOwnerAWSAccountId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The AWS account ID of the account that created the queue.
\n@param queueOwnerAWSAccountId The AWS account ID of the account that created the queue.*/",
"getterDocumentation" : "/**The AWS account ID of the account that created the queue.
\n@return The AWS account ID of the account that created the queue.*/",
"fluentSetterDocumentation" : "/**The AWS account ID of the account that created the queue.
\n@param queueOwnerAWSAccountId The AWS account ID of the account that created the queue.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The AWS account ID of the account that created the queue.
\n@param queueOwnerAWSAccountId The AWS account ID of the account that created the queue.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"QueueName" : {
"documentation" : "The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.
Queue names are case-sensitive.
",
"name" : "QueueName",
"c2jName" : "QueueName",
"c2jShape" : "String",
"variable" : {
"variableName" : "queueName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.
Queue names are case-sensitive.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "queueName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "QueueName",
"marshallLocationName" : "QueueName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.
Queue names are case-sensitive.
\n@param queueName The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed. Queue names are case-sensitive.*/",
"getterDocumentation" : "/**
The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.
Queue names are case-sensitive.
\n@return The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed. Queue names are case-sensitive.*/",
"fluentSetterDocumentation" : "/**
The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.
Queue names are case-sensitive.
\n@param queueName The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed. Queue names are case-sensitive.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.
Queue names are case-sensitive.
\n@param queueName The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed. Queue names are case-sensitive.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ListQueuesResult" : {
"c2jName" : "ListQueuesResult",
"documentation" : "
A list of your queues.
",
"shapeName" : "ListQueuesResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A list of queue URLs, up to 1000 entries.
",
"name" : "QueueUrls",
"c2jName" : "QueueUrls",
"c2jShape" : "QueueUrlList",
"variable" : {
"variableName" : "queueUrls",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of queue URLs, up to 1000 entries.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "queueUrls",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "QueueUrls",
"marshallLocationName" : "QueueUrls",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : "QueueUrl",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "String",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "QueueUrl",
"marshallLocationName" : "QueueUrl",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of queue URLs, up to 1000 entries.
\n@param queueUrls A list of queue URLs, up to 1000 entries.*/",
"getterDocumentation" : "/**A list of queue URLs, up to 1000 entries.
\n@return A list of queue URLs, up to 1000 entries.*/",
"fluentSetterDocumentation" : "/**A list of queue URLs, up to 1000 entries.
\n@param queueUrls A list of queue URLs, up to 1000 entries.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of queue URLs, up to 1000 entries.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setQueueUrls(java.util.Collection)} or {@link #withQueueUrls(java.util.Collection)} if you want to override the existing values.
\n@param queueUrls A list of queue URLs, up to 1000 entries.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "listQueuesResult",
"variableType" : "ListQueuesResult",
"variableDeclarationType" : "ListQueuesResult",
"documentation" : null,
"simpleType" : "ListQueuesResult",
"variableSetterType" : "ListQueuesResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : "ListQueuesResult",
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"QueueUrls" : {
"documentation" : "A list of queue URLs, up to 1000 entries.
",
"name" : "QueueUrls",
"c2jName" : "QueueUrls",
"c2jShape" : "QueueUrlList",
"variable" : {
"variableName" : "queueUrls",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of queue URLs, up to 1000 entries.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "queueUrls",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "QueueUrls",
"marshallLocationName" : "QueueUrls",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : "QueueUrl",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "String",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "QueueUrl",
"marshallLocationName" : "QueueUrl",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of queue URLs, up to 1000 entries.
\n@param queueUrls A list of queue URLs, up to 1000 entries.*/",
"getterDocumentation" : "/**A list of queue URLs, up to 1000 entries.
\n@return A list of queue URLs, up to 1000 entries.*/",
"fluentSetterDocumentation" : "/**A list of queue URLs, up to 1000 entries.
\n@param queueUrls A list of queue URLs, up to 1000 entries.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of queue URLs, up to 1000 entries.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setQueueUrls(java.util.Collection)} or {@link #withQueueUrls(java.util.Collection)} if you want to override the existing values.
\n@param queueUrls A list of queue URLs, up to 1000 entries.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"InvalidIdFormatException" : {
"c2jName" : "InvalidIdFormat",
"documentation" : "The receipt handle is not valid for the current version.
",
"shapeName" : "InvalidIdFormatException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "invalidIdFormatException",
"variableType" : "InvalidIdFormatException",
"variableDeclarationType" : "InvalidIdFormatException",
"documentation" : null,
"simpleType" : "InvalidIdFormatException",
"variableSetterType" : "InvalidIdFormatException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidIdFormat",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"DeleteMessageBatchResult" : {
"c2jName" : "DeleteMessageBatchResult",
"documentation" : " For each message in the batch, the response contains a DeleteMessageBatchResultEntry tag if the message is deleted or a BatchResultErrorEntry tag if the message cannot be deleted.
",
"shapeName" : "DeleteMessageBatchResult",
"deprecated" : false,
"required" : [ "Successful", "Failed" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A list of DeleteMessageBatchResultEntry items.
",
"name" : "Successful",
"c2jName" : "Successful",
"c2jShape" : "DeleteMessageBatchResultEntryList",
"variable" : {
"variableName" : "successful",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of