@aws-sdk/client-sqs 3.327.0 → 3.329.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -13
- package/dist-cjs/commands/AddPermissionCommand.js +3 -3
- package/dist-cjs/commands/ChangeMessageVisibilityBatchCommand.js +3 -3
- package/dist-cjs/commands/ChangeMessageVisibilityCommand.js +3 -3
- package/dist-cjs/commands/CreateQueueCommand.js +3 -3
- package/dist-cjs/commands/DeleteMessageBatchCommand.js +3 -3
- package/dist-cjs/commands/DeleteMessageCommand.js +3 -3
- package/dist-cjs/commands/DeleteQueueCommand.js +3 -3
- package/dist-cjs/commands/GetQueueAttributesCommand.js +3 -3
- package/dist-cjs/commands/GetQueueUrlCommand.js +3 -3
- package/dist-cjs/commands/ListDeadLetterSourceQueuesCommand.js +3 -3
- package/dist-cjs/commands/ListQueueTagsCommand.js +3 -3
- package/dist-cjs/commands/ListQueuesCommand.js +3 -3
- package/dist-cjs/commands/PurgeQueueCommand.js +3 -3
- package/dist-cjs/commands/ReceiveMessageCommand.js +3 -3
- package/dist-cjs/commands/RemovePermissionCommand.js +3 -3
- package/dist-cjs/commands/SendMessageBatchCommand.js +3 -3
- package/dist-cjs/commands/SendMessageCommand.js +3 -3
- package/dist-cjs/commands/SetQueueAttributesCommand.js +3 -3
- package/dist-cjs/commands/TagQueueCommand.js +3 -3
- package/dist-cjs/commands/UntagQueueCommand.js +3 -3
- package/dist-cjs/models/models_0.js +29 -172
- package/dist-cjs/protocols/Aws_query.js +2127 -0
- package/dist-es/commands/AddPermissionCommand.js +1 -1
- package/dist-es/commands/ChangeMessageVisibilityBatchCommand.js +1 -1
- package/dist-es/commands/ChangeMessageVisibilityCommand.js +1 -1
- package/dist-es/commands/CreateQueueCommand.js +1 -1
- package/dist-es/commands/DeleteMessageBatchCommand.js +1 -1
- package/dist-es/commands/DeleteMessageCommand.js +1 -1
- package/dist-es/commands/DeleteQueueCommand.js +1 -1
- package/dist-es/commands/GetQueueAttributesCommand.js +1 -1
- package/dist-es/commands/GetQueueUrlCommand.js +1 -1
- package/dist-es/commands/ListDeadLetterSourceQueuesCommand.js +1 -1
- package/dist-es/commands/ListQueueTagsCommand.js +1 -1
- package/dist-es/commands/ListQueuesCommand.js +1 -1
- package/dist-es/commands/PurgeQueueCommand.js +1 -1
- package/dist-es/commands/ReceiveMessageCommand.js +1 -1
- package/dist-es/commands/RemovePermissionCommand.js +1 -1
- package/dist-es/commands/SendMessageBatchCommand.js +1 -1
- package/dist-es/commands/SendMessageCommand.js +1 -1
- package/dist-es/commands/SetQueueAttributesCommand.js +1 -1
- package/dist-es/commands/TagQueueCommand.js +1 -1
- package/dist-es/commands/UntagQueueCommand.js +1 -1
- package/dist-es/models/models_0.js +24 -156
- package/dist-es/protocols/Aws_query.js +2084 -0
- package/dist-types/SQS.d.ts +6 -10
- package/dist-types/SQSClient.d.ts +6 -10
- package/dist-types/commands/AddPermissionCommand.d.ts +23 -48
- package/dist-types/commands/ChangeMessageVisibilityBatchCommand.d.ts +12 -34
- package/dist-types/commands/ChangeMessageVisibilityCommand.d.ts +13 -47
- package/dist-types/commands/CreateQueueCommand.d.ts +18 -53
- package/dist-types/commands/DeleteMessageBatchCommand.d.ts +10 -31
- package/dist-types/commands/DeleteMessageCommand.d.ts +1 -29
- package/dist-types/commands/DeleteQueueCommand.d.ts +8 -44
- package/dist-types/commands/GetQueueAttributesCommand.d.ts +0 -28
- package/dist-types/commands/GetQueueUrlCommand.d.ts +4 -35
- package/dist-types/commands/ListDeadLetterSourceQueuesCommand.d.ts +10 -39
- package/dist-types/commands/ListQueueTagsCommand.d.ts +2 -34
- package/dist-types/commands/ListQueuesCommand.d.ts +11 -41
- package/dist-types/commands/PurgeQueueCommand.d.ts +5 -35
- package/dist-types/commands/ReceiveMessageCommand.d.ts +14 -87
- package/dist-types/commands/RemovePermissionCommand.d.ts +2 -34
- package/dist-types/commands/SendMessageBatchCommand.d.ts +13 -73
- package/dist-types/commands/SendMessageCommand.d.ts +0 -59
- package/dist-types/commands/SetQueueAttributesCommand.d.ts +3 -47
- package/dist-types/commands/TagQueueCommand.d.ts +1 -32
- package/dist-types/commands/UntagQueueCommand.d.ts +1 -32
- package/dist-types/models/models_0.d.ts +412 -926
- package/dist-types/protocols/{Aws_json1_0.d.ts → Aws_query.d.ts} +40 -40
- package/dist-types/ts3.4/models/models_0.d.ts +21 -78
- package/package.json +32 -31
- package/dist-cjs/protocols/Aws_json1_0.js +0 -1608
- package/dist-es/protocols/Aws_json1_0.js +0 -1565
- /package/dist-types/ts3.4/protocols/{Aws_json1_0.d.ts → Aws_query.d.ts} +0 -0
|
@@ -19,16 +19,10 @@ export interface SendMessageBatchCommandOutput extends SendMessageBatchResult, _
|
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* @public
|
|
22
|
-
* <p>
|
|
23
|
-
*
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
* in the order they are sent.</p>
|
|
27
|
-
* <p>The result of sending each message is reported individually in the response.
|
|
28
|
-
* 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 <code>200</code>.</p>
|
|
29
|
-
* <p>The maximum allowed individual message size and the maximum total payload size (the
|
|
30
|
-
* sum of the individual lengths of all of the batched messages) are both 256 KiB (262,144
|
|
31
|
-
* bytes).</p>
|
|
22
|
+
* <p>Delivers up to ten messages to the specified queue. This is a batch version of <code>
|
|
23
|
+
* <a>SendMessage</a>.</code> For a FIFO queue, multiple messages within a single batch are enqueued in the order they are sent.</p>
|
|
24
|
+
* <p>The result of sending 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 <code>200</code>.</p>
|
|
25
|
+
* <p>The maximum allowed individual message size and the maximum total payload size (the sum of the individual lengths of all of the batched messages) are both 256 KB (262,144 bytes).</p>
|
|
32
26
|
* <important>
|
|
33
27
|
* <p>A message can include only XML, JSON, and unformatted text. The following Unicode characters are allowed:</p>
|
|
34
28
|
* <p>
|
|
@@ -36,8 +30,14 @@ export interface SendMessageBatchCommandOutput extends SendMessageBatchResult, _
|
|
|
36
30
|
* </p>
|
|
37
31
|
* <p>Any characters not included in this list will be rejected. For more information, see the <a href="http://www.w3.org/TR/REC-xml/#charsets">W3C specification for characters</a>.</p>
|
|
38
32
|
* </important>
|
|
39
|
-
* <p>If you don't specify the <code>DelaySeconds</code> parameter for an entry, Amazon SQS uses
|
|
40
|
-
*
|
|
33
|
+
* <p>If you don't specify the <code>DelaySeconds</code> parameter for an entry, Amazon SQS uses the default value for the queue.</p>
|
|
34
|
+
* <p>Some actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this:</p>
|
|
35
|
+
* <p>
|
|
36
|
+
* <code>&AttributeName.1=first</code>
|
|
37
|
+
* </p>
|
|
38
|
+
* <p>
|
|
39
|
+
* <code>&AttributeName.2=second</code>
|
|
40
|
+
* </p>
|
|
41
41
|
* @example
|
|
42
42
|
* Use a bare-bones client and the command you need to make an API call.
|
|
43
43
|
* ```javascript
|
|
@@ -123,67 +123,7 @@ export interface SendMessageBatchCommandOutput extends SendMessageBatchResult, _
|
|
|
123
123
|
* <p>The batch request doesn't contain any entries.</p>
|
|
124
124
|
*
|
|
125
125
|
* @throws {@link InvalidBatchEntryId} (client fault)
|
|
126
|
-
* <p>The <code>Id</code> of a batch entry in a batch request doesn't abide by the
|
|
127
|
-
* specification.</p>
|
|
128
|
-
*
|
|
129
|
-
* @throws {@link InvalidSecurity} (client fault)
|
|
130
|
-
* <p>When the request to a queue is not HTTPS and SigV4.</p>
|
|
131
|
-
*
|
|
132
|
-
* @throws {@link KmsAccessDenied} (client fault)
|
|
133
|
-
* <p>The caller doesn't have the required KMS access.</p>
|
|
134
|
-
*
|
|
135
|
-
* @throws {@link KmsDisabled} (client fault)
|
|
136
|
-
* <p>The request was denied due to request throttling.</p>
|
|
137
|
-
*
|
|
138
|
-
* @throws {@link KmsInvalidKeyUsage} (client fault)
|
|
139
|
-
* <p>The request was rejected for one of the following reasons:</p>
|
|
140
|
-
* <ul>
|
|
141
|
-
* <li>
|
|
142
|
-
* <p>The KeyUsage value of the KMS key is incompatible with the API
|
|
143
|
-
* operation.</p>
|
|
144
|
-
* </li>
|
|
145
|
-
* <li>
|
|
146
|
-
* <p>The encryption algorithm or signing algorithm specified for the operation is
|
|
147
|
-
* incompatible with the type of key material in the KMS key (KeySpec).</p>
|
|
148
|
-
* </li>
|
|
149
|
-
* </ul>
|
|
150
|
-
*
|
|
151
|
-
* @throws {@link KmsInvalidState} (client fault)
|
|
152
|
-
* <p>The request was rejected because the state of the specified resource is not valid for
|
|
153
|
-
* this request.</p>
|
|
154
|
-
*
|
|
155
|
-
* @throws {@link KmsNotFound} (client fault)
|
|
156
|
-
* <p>The request was rejected because the specified entity or resource could not be found.
|
|
157
|
-
* </p>
|
|
158
|
-
*
|
|
159
|
-
* @throws {@link KmsOptInRequired} (client fault)
|
|
160
|
-
* <p>The request was rejected because the specified key policy isn't syntactically or
|
|
161
|
-
* semantically correct.</p>
|
|
162
|
-
*
|
|
163
|
-
* @throws {@link KmsThrottled} (client fault)
|
|
164
|
-
* <p>Amazon Web Services KMS throttles requests for the following conditions.</p>
|
|
165
|
-
*
|
|
166
|
-
* @throws {@link QueueDoesNotExist} (client fault)
|
|
167
|
-
* <p>The specified queue doesn't exist.</p>
|
|
168
|
-
*
|
|
169
|
-
* @throws {@link RequestThrottled} (client fault)
|
|
170
|
-
* <p>The request was denied due to request throttling.</p>
|
|
171
|
-
* <ul>
|
|
172
|
-
* <li>
|
|
173
|
-
* <p>The rate of requests per second exceeds the AWS KMS request quota for an
|
|
174
|
-
* account and Region. </p>
|
|
175
|
-
* </li>
|
|
176
|
-
* <li>
|
|
177
|
-
* <p>A burst or sustained high rate of requests to change the state of the same KMS
|
|
178
|
-
* key. This condition is often known as a "hot key."</p>
|
|
179
|
-
* </li>
|
|
180
|
-
* <li>
|
|
181
|
-
* <p>Requests for operations on KMS keys in a Amazon Web Services CloudHSM key store
|
|
182
|
-
* might be throttled at a lower-than-expected rate when the Amazon Web Services
|
|
183
|
-
* CloudHSM cluster associated with the Amazon Web Services CloudHSM key store is
|
|
184
|
-
* processing numerous commands, including those unrelated to the Amazon Web Services CloudHSM key store.</p>
|
|
185
|
-
* </li>
|
|
186
|
-
* </ul>
|
|
126
|
+
* <p>The <code>Id</code> of a batch entry in a batch request doesn't abide by the specification.</p>
|
|
187
127
|
*
|
|
188
128
|
* @throws {@link TooManyEntriesInBatchRequest} (client fault)
|
|
189
129
|
* <p>The batch request contains more entries than permissible.</p>
|
|
@@ -87,65 +87,6 @@ export interface SendMessageCommandOutput extends SendMessageResult, __MetadataB
|
|
|
87
87
|
* @throws {@link InvalidMessageContents} (client fault)
|
|
88
88
|
* <p>The message contains characters outside the allowed set.</p>
|
|
89
89
|
*
|
|
90
|
-
* @throws {@link InvalidSecurity} (client fault)
|
|
91
|
-
* <p>When the request to a queue is not HTTPS and SigV4.</p>
|
|
92
|
-
*
|
|
93
|
-
* @throws {@link KmsAccessDenied} (client fault)
|
|
94
|
-
* <p>The caller doesn't have the required KMS access.</p>
|
|
95
|
-
*
|
|
96
|
-
* @throws {@link KmsDisabled} (client fault)
|
|
97
|
-
* <p>The request was denied due to request throttling.</p>
|
|
98
|
-
*
|
|
99
|
-
* @throws {@link KmsInvalidKeyUsage} (client fault)
|
|
100
|
-
* <p>The request was rejected for one of the following reasons:</p>
|
|
101
|
-
* <ul>
|
|
102
|
-
* <li>
|
|
103
|
-
* <p>The KeyUsage value of the KMS key is incompatible with the API
|
|
104
|
-
* operation.</p>
|
|
105
|
-
* </li>
|
|
106
|
-
* <li>
|
|
107
|
-
* <p>The encryption algorithm or signing algorithm specified for the operation is
|
|
108
|
-
* incompatible with the type of key material in the KMS key (KeySpec).</p>
|
|
109
|
-
* </li>
|
|
110
|
-
* </ul>
|
|
111
|
-
*
|
|
112
|
-
* @throws {@link KmsInvalidState} (client fault)
|
|
113
|
-
* <p>The request was rejected because the state of the specified resource is not valid for
|
|
114
|
-
* this request.</p>
|
|
115
|
-
*
|
|
116
|
-
* @throws {@link KmsNotFound} (client fault)
|
|
117
|
-
* <p>The request was rejected because the specified entity or resource could not be found.
|
|
118
|
-
* </p>
|
|
119
|
-
*
|
|
120
|
-
* @throws {@link KmsOptInRequired} (client fault)
|
|
121
|
-
* <p>The request was rejected because the specified key policy isn't syntactically or
|
|
122
|
-
* semantically correct.</p>
|
|
123
|
-
*
|
|
124
|
-
* @throws {@link KmsThrottled} (client fault)
|
|
125
|
-
* <p>Amazon Web Services KMS throttles requests for the following conditions.</p>
|
|
126
|
-
*
|
|
127
|
-
* @throws {@link QueueDoesNotExist} (client fault)
|
|
128
|
-
* <p>The specified queue doesn't exist.</p>
|
|
129
|
-
*
|
|
130
|
-
* @throws {@link RequestThrottled} (client fault)
|
|
131
|
-
* <p>The request was denied due to request throttling.</p>
|
|
132
|
-
* <ul>
|
|
133
|
-
* <li>
|
|
134
|
-
* <p>The rate of requests per second exceeds the AWS KMS request quota for an
|
|
135
|
-
* account and Region. </p>
|
|
136
|
-
* </li>
|
|
137
|
-
* <li>
|
|
138
|
-
* <p>A burst or sustained high rate of requests to change the state of the same KMS
|
|
139
|
-
* key. This condition is often known as a "hot key."</p>
|
|
140
|
-
* </li>
|
|
141
|
-
* <li>
|
|
142
|
-
* <p>Requests for operations on KMS keys in a Amazon Web Services CloudHSM key store
|
|
143
|
-
* might be throttled at a lower-than-expected rate when the Amazon Web Services
|
|
144
|
-
* CloudHSM cluster associated with the Amazon Web Services CloudHSM key store is
|
|
145
|
-
* processing numerous commands, including those unrelated to the Amazon Web Services CloudHSM key store.</p>
|
|
146
|
-
* </li>
|
|
147
|
-
* </ul>
|
|
148
|
-
*
|
|
149
90
|
* @throws {@link UnsupportedOperation} (client fault)
|
|
150
91
|
* <p>Error code 400. Unsupported operation.</p>
|
|
151
92
|
*
|
|
@@ -19,12 +19,8 @@ export interface SetQueueAttributesCommandOutput extends __MetadataBearer {
|
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* @public
|
|
22
|
-
* <p>Sets the value of one or more queue attributes. When you change a queue's attributes,
|
|
23
|
-
*
|
|
24
|
-
* the Amazon SQS system. Changes made to the <code>MessageRetentionPeriod</code> attribute can
|
|
25
|
-
* take up to 15 minutes and will impact existing messages in the queue potentially causing
|
|
26
|
-
* them to be expired and deleted if the <code>MessageRetentionPeriod</code> is reduced
|
|
27
|
-
* below the age of existing messages.</p>
|
|
22
|
+
* <p>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 Amazon SQS system.
|
|
23
|
+
* Changes made to the <code>MessageRetentionPeriod</code> attribute can take up to 15 minutes.</p>
|
|
28
24
|
* <note>
|
|
29
25
|
* <ul>
|
|
30
26
|
* <li>
|
|
@@ -33,7 +29,7 @@ export interface SetQueueAttributesCommandOutput extends __MetadataBearer {
|
|
|
33
29
|
* <li>
|
|
34
30
|
* <p>Cross-account permissions don't apply to this action. For more information,
|
|
35
31
|
* see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant
|
|
36
|
-
* cross-account permissions to a role and a
|
|
32
|
+
* cross-account permissions to a role and a user name</a> in the <i>Amazon SQS Developer Guide</i>.</p>
|
|
37
33
|
* </li>
|
|
38
34
|
* <li>
|
|
39
35
|
* <p>To remove the ability to change queue permissions, you must deny permission to the <code>AddPermission</code>, <code>RemovePermission</code>, and <code>SetQueueAttributes</code> actions in your IAM policy.</p>
|
|
@@ -64,49 +60,9 @@ export interface SetQueueAttributesCommandOutput extends __MetadataBearer {
|
|
|
64
60
|
* @see {@link SetQueueAttributesCommandOutput} for command's `response` shape.
|
|
65
61
|
* @see {@link SQSClientResolvedConfig | config} for SQSClient's `config` shape.
|
|
66
62
|
*
|
|
67
|
-
* @throws {@link InvalidAddress} (client fault)
|
|
68
|
-
* <p>The <code>accountId</code> is invalid.</p>
|
|
69
|
-
*
|
|
70
63
|
* @throws {@link InvalidAttributeName} (client fault)
|
|
71
64
|
* <p>The specified attribute doesn't exist.</p>
|
|
72
65
|
*
|
|
73
|
-
* @throws {@link InvalidAttributeValue} (client fault)
|
|
74
|
-
* <p>A queue attribute value is invalid.</p>
|
|
75
|
-
*
|
|
76
|
-
* @throws {@link InvalidSecurity} (client fault)
|
|
77
|
-
* <p>When the request to a queue is not HTTPS and SigV4.</p>
|
|
78
|
-
*
|
|
79
|
-
* @throws {@link OverLimit} (client fault)
|
|
80
|
-
* <p>The specified action violates a limit. For example, <code>ReceiveMessage</code>
|
|
81
|
-
* returns this error if the maximum number of in flight messages is reached and
|
|
82
|
-
* <code>AddPermission</code> returns this error if the maximum number of permissions
|
|
83
|
-
* for the queue is reached.</p>
|
|
84
|
-
*
|
|
85
|
-
* @throws {@link QueueDoesNotExist} (client fault)
|
|
86
|
-
* <p>The specified queue doesn't exist.</p>
|
|
87
|
-
*
|
|
88
|
-
* @throws {@link RequestThrottled} (client fault)
|
|
89
|
-
* <p>The request was denied due to request throttling.</p>
|
|
90
|
-
* <ul>
|
|
91
|
-
* <li>
|
|
92
|
-
* <p>The rate of requests per second exceeds the AWS KMS request quota for an
|
|
93
|
-
* account and Region. </p>
|
|
94
|
-
* </li>
|
|
95
|
-
* <li>
|
|
96
|
-
* <p>A burst or sustained high rate of requests to change the state of the same KMS
|
|
97
|
-
* key. This condition is often known as a "hot key."</p>
|
|
98
|
-
* </li>
|
|
99
|
-
* <li>
|
|
100
|
-
* <p>Requests for operations on KMS keys in a Amazon Web Services CloudHSM key store
|
|
101
|
-
* might be throttled at a lower-than-expected rate when the Amazon Web Services
|
|
102
|
-
* CloudHSM cluster associated with the Amazon Web Services CloudHSM key store is
|
|
103
|
-
* processing numerous commands, including those unrelated to the Amazon Web Services CloudHSM key store.</p>
|
|
104
|
-
* </li>
|
|
105
|
-
* </ul>
|
|
106
|
-
*
|
|
107
|
-
* @throws {@link UnsupportedOperation} (client fault)
|
|
108
|
-
* <p>Error code 400. Unsupported operation.</p>
|
|
109
|
-
*
|
|
110
66
|
* @throws {@link SQSServiceException}
|
|
111
67
|
* <p>Base exception class for all service exceptions from SQS service.</p>
|
|
112
68
|
*
|
|
@@ -42,7 +42,7 @@ export interface TagQueueCommandOutput extends __MetadataBearer {
|
|
|
42
42
|
* <note>
|
|
43
43
|
* <p>Cross-account permissions don't apply to this action. For more information,
|
|
44
44
|
* see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant
|
|
45
|
-
* cross-account permissions to a role and a
|
|
45
|
+
* cross-account permissions to a role and a user name</a> in the <i>Amazon SQS Developer Guide</i>.</p>
|
|
46
46
|
* </note>
|
|
47
47
|
* @example
|
|
48
48
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -68,37 +68,6 @@ export interface TagQueueCommandOutput extends __MetadataBearer {
|
|
|
68
68
|
* @see {@link TagQueueCommandOutput} for command's `response` shape.
|
|
69
69
|
* @see {@link SQSClientResolvedConfig | config} for SQSClient's `config` shape.
|
|
70
70
|
*
|
|
71
|
-
* @throws {@link InvalidAddress} (client fault)
|
|
72
|
-
* <p>The <code>accountId</code> is invalid.</p>
|
|
73
|
-
*
|
|
74
|
-
* @throws {@link InvalidSecurity} (client fault)
|
|
75
|
-
* <p>When the request to a queue is not HTTPS and SigV4.</p>
|
|
76
|
-
*
|
|
77
|
-
* @throws {@link QueueDoesNotExist} (client fault)
|
|
78
|
-
* <p>The specified queue doesn't exist.</p>
|
|
79
|
-
*
|
|
80
|
-
* @throws {@link RequestThrottled} (client fault)
|
|
81
|
-
* <p>The request was denied due to request throttling.</p>
|
|
82
|
-
* <ul>
|
|
83
|
-
* <li>
|
|
84
|
-
* <p>The rate of requests per second exceeds the AWS KMS request quota for an
|
|
85
|
-
* account and Region. </p>
|
|
86
|
-
* </li>
|
|
87
|
-
* <li>
|
|
88
|
-
* <p>A burst or sustained high rate of requests to change the state of the same KMS
|
|
89
|
-
* key. This condition is often known as a "hot key."</p>
|
|
90
|
-
* </li>
|
|
91
|
-
* <li>
|
|
92
|
-
* <p>Requests for operations on KMS keys in a Amazon Web Services CloudHSM key store
|
|
93
|
-
* might be throttled at a lower-than-expected rate when the Amazon Web Services
|
|
94
|
-
* CloudHSM cluster associated with the Amazon Web Services CloudHSM key store is
|
|
95
|
-
* processing numerous commands, including those unrelated to the Amazon Web Services CloudHSM key store.</p>
|
|
96
|
-
* </li>
|
|
97
|
-
* </ul>
|
|
98
|
-
*
|
|
99
|
-
* @throws {@link UnsupportedOperation} (client fault)
|
|
100
|
-
* <p>Error code 400. Unsupported operation.</p>
|
|
101
|
-
*
|
|
102
71
|
* @throws {@link SQSServiceException}
|
|
103
72
|
* <p>Base exception class for all service exceptions from SQS service.</p>
|
|
104
73
|
*
|
|
@@ -24,7 +24,7 @@ export interface UntagQueueCommandOutput extends __MetadataBearer {
|
|
|
24
24
|
* <note>
|
|
25
25
|
* <p>Cross-account permissions don't apply to this action. For more information,
|
|
26
26
|
* see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant
|
|
27
|
-
* cross-account permissions to a role and a
|
|
27
|
+
* cross-account permissions to a role and a user name</a> in the <i>Amazon SQS Developer Guide</i>.</p>
|
|
28
28
|
* </note>
|
|
29
29
|
* @example
|
|
30
30
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -50,37 +50,6 @@ export interface UntagQueueCommandOutput extends __MetadataBearer {
|
|
|
50
50
|
* @see {@link UntagQueueCommandOutput} for command's `response` shape.
|
|
51
51
|
* @see {@link SQSClientResolvedConfig | config} for SQSClient's `config` shape.
|
|
52
52
|
*
|
|
53
|
-
* @throws {@link InvalidAddress} (client fault)
|
|
54
|
-
* <p>The <code>accountId</code> is invalid.</p>
|
|
55
|
-
*
|
|
56
|
-
* @throws {@link InvalidSecurity} (client fault)
|
|
57
|
-
* <p>When the request to a queue is not HTTPS and SigV4.</p>
|
|
58
|
-
*
|
|
59
|
-
* @throws {@link QueueDoesNotExist} (client fault)
|
|
60
|
-
* <p>The specified queue doesn't exist.</p>
|
|
61
|
-
*
|
|
62
|
-
* @throws {@link RequestThrottled} (client fault)
|
|
63
|
-
* <p>The request was denied due to request throttling.</p>
|
|
64
|
-
* <ul>
|
|
65
|
-
* <li>
|
|
66
|
-
* <p>The rate of requests per second exceeds the AWS KMS request quota for an
|
|
67
|
-
* account and Region. </p>
|
|
68
|
-
* </li>
|
|
69
|
-
* <li>
|
|
70
|
-
* <p>A burst or sustained high rate of requests to change the state of the same KMS
|
|
71
|
-
* key. This condition is often known as a "hot key."</p>
|
|
72
|
-
* </li>
|
|
73
|
-
* <li>
|
|
74
|
-
* <p>Requests for operations on KMS keys in a Amazon Web Services CloudHSM key store
|
|
75
|
-
* might be throttled at a lower-than-expected rate when the Amazon Web Services
|
|
76
|
-
* CloudHSM cluster associated with the Amazon Web Services CloudHSM key store is
|
|
77
|
-
* processing numerous commands, including those unrelated to the Amazon Web Services CloudHSM key store.</p>
|
|
78
|
-
* </li>
|
|
79
|
-
* </ul>
|
|
80
|
-
*
|
|
81
|
-
* @throws {@link UnsupportedOperation} (client fault)
|
|
82
|
-
* <p>Error code 400. Unsupported operation.</p>
|
|
83
|
-
*
|
|
84
53
|
* @throws {@link SQSServiceException}
|
|
85
54
|
* <p>Base exception class for all service exceptions from SQS service.</p>
|
|
86
55
|
*
|