@aws-sdk/client-sqs 3.294.0 → 3.296.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/dist-cjs/commands/AddPermissionCommand.js +4 -4
- package/dist-cjs/commands/ChangeMessageVisibilityBatchCommand.js +4 -4
- package/dist-cjs/commands/ChangeMessageVisibilityCommand.js +4 -4
- package/dist-cjs/commands/CreateQueueCommand.js +4 -4
- package/dist-cjs/commands/DeleteMessageBatchCommand.js +4 -4
- package/dist-cjs/commands/DeleteMessageCommand.js +4 -4
- package/dist-cjs/commands/DeleteQueueCommand.js +4 -4
- package/dist-cjs/commands/GetQueueAttributesCommand.js +4 -4
- package/dist-cjs/commands/GetQueueUrlCommand.js +4 -4
- package/dist-cjs/commands/ListDeadLetterSourceQueuesCommand.js +4 -4
- package/dist-cjs/commands/ListQueueTagsCommand.js +4 -4
- package/dist-cjs/commands/ListQueuesCommand.js +4 -4
- package/dist-cjs/commands/PurgeQueueCommand.js +4 -4
- package/dist-cjs/commands/ReceiveMessageCommand.js +4 -4
- package/dist-cjs/commands/RemovePermissionCommand.js +4 -4
- package/dist-cjs/commands/SendMessageBatchCommand.js +4 -4
- package/dist-cjs/commands/SendMessageCommand.js +4 -4
- package/dist-cjs/commands/SetQueueAttributesCommand.js +4 -4
- package/dist-cjs/commands/TagQueueCommand.js +4 -4
- package/dist-cjs/commands/UntagQueueCommand.js +4 -4
- package/dist-es/commands/AddPermissionCommand.js +4 -4
- package/dist-es/commands/ChangeMessageVisibilityBatchCommand.js +4 -4
- package/dist-es/commands/ChangeMessageVisibilityCommand.js +4 -4
- package/dist-es/commands/CreateQueueCommand.js +4 -4
- package/dist-es/commands/DeleteMessageBatchCommand.js +4 -4
- package/dist-es/commands/DeleteMessageCommand.js +4 -4
- package/dist-es/commands/DeleteQueueCommand.js +4 -4
- package/dist-es/commands/GetQueueAttributesCommand.js +4 -4
- package/dist-es/commands/GetQueueUrlCommand.js +4 -4
- package/dist-es/commands/ListDeadLetterSourceQueuesCommand.js +4 -4
- package/dist-es/commands/ListQueueTagsCommand.js +4 -4
- package/dist-es/commands/ListQueuesCommand.js +4 -4
- package/dist-es/commands/PurgeQueueCommand.js +4 -4
- package/dist-es/commands/ReceiveMessageCommand.js +4 -4
- package/dist-es/commands/RemovePermissionCommand.js +4 -4
- package/dist-es/commands/SendMessageBatchCommand.js +4 -4
- package/dist-es/commands/SendMessageCommand.js +4 -4
- package/dist-es/commands/SetQueueAttributesCommand.js +4 -4
- package/dist-es/commands/TagQueueCommand.js +4 -4
- package/dist-es/commands/UntagQueueCommand.js +4 -4
- package/dist-types/SQSClient.d.ts +4 -4
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +3 -3
- package/dist-types/ts3.4/SQSClient.d.ts +4 -4
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +3 -4
- package/dist-types/ts3.4/models/models_0.d.ts +3 -3
- package/package.json +38 -38
|
@@ -7,10 +7,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
7
7
|
const models_0_1 = require("../models/models_0");
|
|
8
8
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
9
9
|
class AddPermissionCommand extends smithy_client_1.Command {
|
|
10
|
-
constructor(input) {
|
|
11
|
-
super();
|
|
12
|
-
this.input = input;
|
|
13
|
-
}
|
|
14
10
|
static getEndpointParameterInstructions() {
|
|
15
11
|
return {
|
|
16
12
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -19,6 +15,10 @@ class AddPermissionCommand extends smithy_client_1.Command {
|
|
|
19
15
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
16
|
};
|
|
21
17
|
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
22
|
resolveMiddleware(clientStack, configuration, options) {
|
|
23
23
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
24
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, AddPermissionCommand.getEndpointParameterInstructions()));
|
|
@@ -7,10 +7,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
7
7
|
const models_0_1 = require("../models/models_0");
|
|
8
8
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
9
9
|
class ChangeMessageVisibilityBatchCommand extends smithy_client_1.Command {
|
|
10
|
-
constructor(input) {
|
|
11
|
-
super();
|
|
12
|
-
this.input = input;
|
|
13
|
-
}
|
|
14
10
|
static getEndpointParameterInstructions() {
|
|
15
11
|
return {
|
|
16
12
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -19,6 +15,10 @@ class ChangeMessageVisibilityBatchCommand extends smithy_client_1.Command {
|
|
|
19
15
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
16
|
};
|
|
21
17
|
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
22
|
resolveMiddleware(clientStack, configuration, options) {
|
|
23
23
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
24
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ChangeMessageVisibilityBatchCommand.getEndpointParameterInstructions()));
|
|
@@ -7,10 +7,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
7
7
|
const models_0_1 = require("../models/models_0");
|
|
8
8
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
9
9
|
class ChangeMessageVisibilityCommand extends smithy_client_1.Command {
|
|
10
|
-
constructor(input) {
|
|
11
|
-
super();
|
|
12
|
-
this.input = input;
|
|
13
|
-
}
|
|
14
10
|
static getEndpointParameterInstructions() {
|
|
15
11
|
return {
|
|
16
12
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -19,6 +15,10 @@ class ChangeMessageVisibilityCommand extends smithy_client_1.Command {
|
|
|
19
15
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
16
|
};
|
|
21
17
|
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
22
|
resolveMiddleware(clientStack, configuration, options) {
|
|
23
23
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
24
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ChangeMessageVisibilityCommand.getEndpointParameterInstructions()));
|
|
@@ -7,10 +7,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
7
7
|
const models_0_1 = require("../models/models_0");
|
|
8
8
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
9
9
|
class CreateQueueCommand extends smithy_client_1.Command {
|
|
10
|
-
constructor(input) {
|
|
11
|
-
super();
|
|
12
|
-
this.input = input;
|
|
13
|
-
}
|
|
14
10
|
static getEndpointParameterInstructions() {
|
|
15
11
|
return {
|
|
16
12
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -19,6 +15,10 @@ class CreateQueueCommand extends smithy_client_1.Command {
|
|
|
19
15
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
16
|
};
|
|
21
17
|
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
22
|
resolveMiddleware(clientStack, configuration, options) {
|
|
23
23
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
24
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, CreateQueueCommand.getEndpointParameterInstructions()));
|
|
@@ -7,10 +7,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
7
7
|
const models_0_1 = require("../models/models_0");
|
|
8
8
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
9
9
|
class DeleteMessageBatchCommand extends smithy_client_1.Command {
|
|
10
|
-
constructor(input) {
|
|
11
|
-
super();
|
|
12
|
-
this.input = input;
|
|
13
|
-
}
|
|
14
10
|
static getEndpointParameterInstructions() {
|
|
15
11
|
return {
|
|
16
12
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -19,6 +15,10 @@ class DeleteMessageBatchCommand extends smithy_client_1.Command {
|
|
|
19
15
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
16
|
};
|
|
21
17
|
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
22
|
resolveMiddleware(clientStack, configuration, options) {
|
|
23
23
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
24
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DeleteMessageBatchCommand.getEndpointParameterInstructions()));
|
|
@@ -7,10 +7,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
7
7
|
const models_0_1 = require("../models/models_0");
|
|
8
8
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
9
9
|
class DeleteMessageCommand extends smithy_client_1.Command {
|
|
10
|
-
constructor(input) {
|
|
11
|
-
super();
|
|
12
|
-
this.input = input;
|
|
13
|
-
}
|
|
14
10
|
static getEndpointParameterInstructions() {
|
|
15
11
|
return {
|
|
16
12
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -19,6 +15,10 @@ class DeleteMessageCommand extends smithy_client_1.Command {
|
|
|
19
15
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
16
|
};
|
|
21
17
|
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
22
|
resolveMiddleware(clientStack, configuration, options) {
|
|
23
23
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
24
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DeleteMessageCommand.getEndpointParameterInstructions()));
|
|
@@ -7,10 +7,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
7
7
|
const models_0_1 = require("../models/models_0");
|
|
8
8
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
9
9
|
class DeleteQueueCommand extends smithy_client_1.Command {
|
|
10
|
-
constructor(input) {
|
|
11
|
-
super();
|
|
12
|
-
this.input = input;
|
|
13
|
-
}
|
|
14
10
|
static getEndpointParameterInstructions() {
|
|
15
11
|
return {
|
|
16
12
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -19,6 +15,10 @@ class DeleteQueueCommand extends smithy_client_1.Command {
|
|
|
19
15
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
16
|
};
|
|
21
17
|
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
22
|
resolveMiddleware(clientStack, configuration, options) {
|
|
23
23
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
24
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DeleteQueueCommand.getEndpointParameterInstructions()));
|
|
@@ -7,10 +7,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
7
7
|
const models_0_1 = require("../models/models_0");
|
|
8
8
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
9
9
|
class GetQueueAttributesCommand extends smithy_client_1.Command {
|
|
10
|
-
constructor(input) {
|
|
11
|
-
super();
|
|
12
|
-
this.input = input;
|
|
13
|
-
}
|
|
14
10
|
static getEndpointParameterInstructions() {
|
|
15
11
|
return {
|
|
16
12
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -19,6 +15,10 @@ class GetQueueAttributesCommand extends smithy_client_1.Command {
|
|
|
19
15
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
16
|
};
|
|
21
17
|
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
22
|
resolveMiddleware(clientStack, configuration, options) {
|
|
23
23
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
24
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, GetQueueAttributesCommand.getEndpointParameterInstructions()));
|
|
@@ -7,10 +7,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
7
7
|
const models_0_1 = require("../models/models_0");
|
|
8
8
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
9
9
|
class GetQueueUrlCommand extends smithy_client_1.Command {
|
|
10
|
-
constructor(input) {
|
|
11
|
-
super();
|
|
12
|
-
this.input = input;
|
|
13
|
-
}
|
|
14
10
|
static getEndpointParameterInstructions() {
|
|
15
11
|
return {
|
|
16
12
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -19,6 +15,10 @@ class GetQueueUrlCommand extends smithy_client_1.Command {
|
|
|
19
15
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
16
|
};
|
|
21
17
|
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
22
|
resolveMiddleware(clientStack, configuration, options) {
|
|
23
23
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
24
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, GetQueueUrlCommand.getEndpointParameterInstructions()));
|
|
@@ -7,10 +7,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
7
7
|
const models_0_1 = require("../models/models_0");
|
|
8
8
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
9
9
|
class ListDeadLetterSourceQueuesCommand extends smithy_client_1.Command {
|
|
10
|
-
constructor(input) {
|
|
11
|
-
super();
|
|
12
|
-
this.input = input;
|
|
13
|
-
}
|
|
14
10
|
static getEndpointParameterInstructions() {
|
|
15
11
|
return {
|
|
16
12
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -19,6 +15,10 @@ class ListDeadLetterSourceQueuesCommand extends smithy_client_1.Command {
|
|
|
19
15
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
16
|
};
|
|
21
17
|
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
22
|
resolveMiddleware(clientStack, configuration, options) {
|
|
23
23
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
24
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ListDeadLetterSourceQueuesCommand.getEndpointParameterInstructions()));
|
|
@@ -7,10 +7,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
7
7
|
const models_0_1 = require("../models/models_0");
|
|
8
8
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
9
9
|
class ListQueueTagsCommand extends smithy_client_1.Command {
|
|
10
|
-
constructor(input) {
|
|
11
|
-
super();
|
|
12
|
-
this.input = input;
|
|
13
|
-
}
|
|
14
10
|
static getEndpointParameterInstructions() {
|
|
15
11
|
return {
|
|
16
12
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -19,6 +15,10 @@ class ListQueueTagsCommand extends smithy_client_1.Command {
|
|
|
19
15
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
16
|
};
|
|
21
17
|
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
22
|
resolveMiddleware(clientStack, configuration, options) {
|
|
23
23
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
24
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ListQueueTagsCommand.getEndpointParameterInstructions()));
|
|
@@ -7,10 +7,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
7
7
|
const models_0_1 = require("../models/models_0");
|
|
8
8
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
9
9
|
class ListQueuesCommand extends smithy_client_1.Command {
|
|
10
|
-
constructor(input) {
|
|
11
|
-
super();
|
|
12
|
-
this.input = input;
|
|
13
|
-
}
|
|
14
10
|
static getEndpointParameterInstructions() {
|
|
15
11
|
return {
|
|
16
12
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -19,6 +15,10 @@ class ListQueuesCommand extends smithy_client_1.Command {
|
|
|
19
15
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
16
|
};
|
|
21
17
|
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
22
|
resolveMiddleware(clientStack, configuration, options) {
|
|
23
23
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
24
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ListQueuesCommand.getEndpointParameterInstructions()));
|
|
@@ -7,10 +7,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
7
7
|
const models_0_1 = require("../models/models_0");
|
|
8
8
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
9
9
|
class PurgeQueueCommand extends smithy_client_1.Command {
|
|
10
|
-
constructor(input) {
|
|
11
|
-
super();
|
|
12
|
-
this.input = input;
|
|
13
|
-
}
|
|
14
10
|
static getEndpointParameterInstructions() {
|
|
15
11
|
return {
|
|
16
12
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -19,6 +15,10 @@ class PurgeQueueCommand extends smithy_client_1.Command {
|
|
|
19
15
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
16
|
};
|
|
21
17
|
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
22
|
resolveMiddleware(clientStack, configuration, options) {
|
|
23
23
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
24
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, PurgeQueueCommand.getEndpointParameterInstructions()));
|
|
@@ -8,10 +8,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
8
8
|
const models_0_1 = require("../models/models_0");
|
|
9
9
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
10
10
|
class ReceiveMessageCommand extends smithy_client_1.Command {
|
|
11
|
-
constructor(input) {
|
|
12
|
-
super();
|
|
13
|
-
this.input = input;
|
|
14
|
-
}
|
|
15
11
|
static getEndpointParameterInstructions() {
|
|
16
12
|
return {
|
|
17
13
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -20,6 +16,10 @@ class ReceiveMessageCommand extends smithy_client_1.Command {
|
|
|
20
16
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
21
17
|
};
|
|
22
18
|
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
23
|
resolveMiddleware(clientStack, configuration, options) {
|
|
24
24
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
25
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ReceiveMessageCommand.getEndpointParameterInstructions()));
|
|
@@ -7,10 +7,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
7
7
|
const models_0_1 = require("../models/models_0");
|
|
8
8
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
9
9
|
class RemovePermissionCommand extends smithy_client_1.Command {
|
|
10
|
-
constructor(input) {
|
|
11
|
-
super();
|
|
12
|
-
this.input = input;
|
|
13
|
-
}
|
|
14
10
|
static getEndpointParameterInstructions() {
|
|
15
11
|
return {
|
|
16
12
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -19,6 +15,10 @@ class RemovePermissionCommand extends smithy_client_1.Command {
|
|
|
19
15
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
16
|
};
|
|
21
17
|
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
22
|
resolveMiddleware(clientStack, configuration, options) {
|
|
23
23
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
24
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, RemovePermissionCommand.getEndpointParameterInstructions()));
|
|
@@ -8,10 +8,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
8
8
|
const models_0_1 = require("../models/models_0");
|
|
9
9
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
10
10
|
class SendMessageBatchCommand extends smithy_client_1.Command {
|
|
11
|
-
constructor(input) {
|
|
12
|
-
super();
|
|
13
|
-
this.input = input;
|
|
14
|
-
}
|
|
15
11
|
static getEndpointParameterInstructions() {
|
|
16
12
|
return {
|
|
17
13
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -20,6 +16,10 @@ class SendMessageBatchCommand extends smithy_client_1.Command {
|
|
|
20
16
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
21
17
|
};
|
|
22
18
|
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
23
|
resolveMiddleware(clientStack, configuration, options) {
|
|
24
24
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
25
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, SendMessageBatchCommand.getEndpointParameterInstructions()));
|
|
@@ -8,10 +8,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
8
8
|
const models_0_1 = require("../models/models_0");
|
|
9
9
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
10
10
|
class SendMessageCommand extends smithy_client_1.Command {
|
|
11
|
-
constructor(input) {
|
|
12
|
-
super();
|
|
13
|
-
this.input = input;
|
|
14
|
-
}
|
|
15
11
|
static getEndpointParameterInstructions() {
|
|
16
12
|
return {
|
|
17
13
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -20,6 +16,10 @@ class SendMessageCommand extends smithy_client_1.Command {
|
|
|
20
16
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
21
17
|
};
|
|
22
18
|
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
23
|
resolveMiddleware(clientStack, configuration, options) {
|
|
24
24
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
25
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, SendMessageCommand.getEndpointParameterInstructions()));
|
|
@@ -7,10 +7,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
7
7
|
const models_0_1 = require("../models/models_0");
|
|
8
8
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
9
9
|
class SetQueueAttributesCommand extends smithy_client_1.Command {
|
|
10
|
-
constructor(input) {
|
|
11
|
-
super();
|
|
12
|
-
this.input = input;
|
|
13
|
-
}
|
|
14
10
|
static getEndpointParameterInstructions() {
|
|
15
11
|
return {
|
|
16
12
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -19,6 +15,10 @@ class SetQueueAttributesCommand extends smithy_client_1.Command {
|
|
|
19
15
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
16
|
};
|
|
21
17
|
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
22
|
resolveMiddleware(clientStack, configuration, options) {
|
|
23
23
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
24
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, SetQueueAttributesCommand.getEndpointParameterInstructions()));
|
|
@@ -7,10 +7,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
7
7
|
const models_0_1 = require("../models/models_0");
|
|
8
8
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
9
9
|
class TagQueueCommand extends smithy_client_1.Command {
|
|
10
|
-
constructor(input) {
|
|
11
|
-
super();
|
|
12
|
-
this.input = input;
|
|
13
|
-
}
|
|
14
10
|
static getEndpointParameterInstructions() {
|
|
15
11
|
return {
|
|
16
12
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -19,6 +15,10 @@ class TagQueueCommand extends smithy_client_1.Command {
|
|
|
19
15
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
16
|
};
|
|
21
17
|
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
22
|
resolveMiddleware(clientStack, configuration, options) {
|
|
23
23
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
24
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, TagQueueCommand.getEndpointParameterInstructions()));
|
|
@@ -7,10 +7,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
7
7
|
const models_0_1 = require("../models/models_0");
|
|
8
8
|
const Aws_query_1 = require("../protocols/Aws_query");
|
|
9
9
|
class UntagQueueCommand extends smithy_client_1.Command {
|
|
10
|
-
constructor(input) {
|
|
11
|
-
super();
|
|
12
|
-
this.input = input;
|
|
13
|
-
}
|
|
14
10
|
static getEndpointParameterInstructions() {
|
|
15
11
|
return {
|
|
16
12
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -19,6 +15,10 @@ class UntagQueueCommand extends smithy_client_1.Command {
|
|
|
19
15
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
16
|
};
|
|
21
17
|
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
22
|
resolveMiddleware(clientStack, configuration, options) {
|
|
23
23
|
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
24
|
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, UntagQueueCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { AddPermissionRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_queryAddPermissionCommand, serializeAws_queryAddPermissionCommand, } from "../protocols/Aws_query";
|
|
6
6
|
export class AddPermissionCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class AddPermissionCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, AddPermissionCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { ChangeMessageVisibilityBatchRequestFilterSensitiveLog, ChangeMessageVisibilityBatchResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_queryChangeMessageVisibilityBatchCommand, serializeAws_queryChangeMessageVisibilityBatchCommand, } from "../protocols/Aws_query";
|
|
6
6
|
export class ChangeMessageVisibilityBatchCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class ChangeMessageVisibilityBatchCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, ChangeMessageVisibilityBatchCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { ChangeMessageVisibilityRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_queryChangeMessageVisibilityCommand, serializeAws_queryChangeMessageVisibilityCommand, } from "../protocols/Aws_query";
|
|
6
6
|
export class ChangeMessageVisibilityCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class ChangeMessageVisibilityCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, ChangeMessageVisibilityCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { CreateQueueRequestFilterSensitiveLog, CreateQueueResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_queryCreateQueueCommand, serializeAws_queryCreateQueueCommand } from "../protocols/Aws_query";
|
|
6
6
|
export class CreateQueueCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class CreateQueueCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, CreateQueueCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { DeleteMessageBatchRequestFilterSensitiveLog, DeleteMessageBatchResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_queryDeleteMessageBatchCommand, serializeAws_queryDeleteMessageBatchCommand, } from "../protocols/Aws_query";
|
|
6
6
|
export class DeleteMessageBatchCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class DeleteMessageBatchCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, DeleteMessageBatchCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { DeleteMessageRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_queryDeleteMessageCommand, serializeAws_queryDeleteMessageCommand, } from "../protocols/Aws_query";
|
|
6
6
|
export class DeleteMessageCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class DeleteMessageCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, DeleteMessageCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { DeleteQueueRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_queryDeleteQueueCommand, serializeAws_queryDeleteQueueCommand } from "../protocols/Aws_query";
|
|
6
6
|
export class DeleteQueueCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class DeleteQueueCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, DeleteQueueCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { GetQueueAttributesRequestFilterSensitiveLog, GetQueueAttributesResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_queryGetQueueAttributesCommand, serializeAws_queryGetQueueAttributesCommand, } from "../protocols/Aws_query";
|
|
6
6
|
export class GetQueueAttributesCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class GetQueueAttributesCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, GetQueueAttributesCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { GetQueueUrlRequestFilterSensitiveLog, GetQueueUrlResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_queryGetQueueUrlCommand, serializeAws_queryGetQueueUrlCommand } from "../protocols/Aws_query";
|
|
6
6
|
export class GetQueueUrlCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class GetQueueUrlCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, GetQueueUrlCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { ListDeadLetterSourceQueuesRequestFilterSensitiveLog, ListDeadLetterSourceQueuesResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_queryListDeadLetterSourceQueuesCommand, serializeAws_queryListDeadLetterSourceQueuesCommand, } from "../protocols/Aws_query";
|
|
6
6
|
export class ListDeadLetterSourceQueuesCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class ListDeadLetterSourceQueuesCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, ListDeadLetterSourceQueuesCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { ListQueueTagsRequestFilterSensitiveLog, ListQueueTagsResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_queryListQueueTagsCommand, serializeAws_queryListQueueTagsCommand, } from "../protocols/Aws_query";
|
|
6
6
|
export class ListQueueTagsCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class ListQueueTagsCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, ListQueueTagsCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { ListQueuesRequestFilterSensitiveLog, ListQueuesResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_queryListQueuesCommand, serializeAws_queryListQueuesCommand } from "../protocols/Aws_query";
|
|
6
6
|
export class ListQueuesCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class ListQueuesCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, ListQueuesCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { PurgeQueueRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_queryPurgeQueueCommand, serializeAws_queryPurgeQueueCommand } from "../protocols/Aws_query";
|
|
6
6
|
export class PurgeQueueCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class PurgeQueueCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, PurgeQueueCommand.getEndpointParameterInstructions()));
|
|
@@ -5,10 +5,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
5
5
|
import { ReceiveMessageRequestFilterSensitiveLog, ReceiveMessageResultFilterSensitiveLog, } from "../models/models_0";
|
|
6
6
|
import { deserializeAws_queryReceiveMessageCommand, serializeAws_queryReceiveMessageCommand, } from "../protocols/Aws_query";
|
|
7
7
|
export class ReceiveMessageCommand extends $Command {
|
|
8
|
-
constructor(input) {
|
|
9
|
-
super();
|
|
10
|
-
this.input = input;
|
|
11
|
-
}
|
|
12
8
|
static getEndpointParameterInstructions() {
|
|
13
9
|
return {
|
|
14
10
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -17,6 +13,10 @@ export class ReceiveMessageCommand extends $Command {
|
|
|
17
13
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
18
14
|
};
|
|
19
15
|
}
|
|
16
|
+
constructor(input) {
|
|
17
|
+
super();
|
|
18
|
+
this.input = input;
|
|
19
|
+
}
|
|
20
20
|
resolveMiddleware(clientStack, configuration, options) {
|
|
21
21
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
22
22
|
this.middlewareStack.use(getEndpointPlugin(configuration, ReceiveMessageCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { RemovePermissionRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_queryRemovePermissionCommand, serializeAws_queryRemovePermissionCommand, } from "../protocols/Aws_query";
|
|
6
6
|
export class RemovePermissionCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class RemovePermissionCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, RemovePermissionCommand.getEndpointParameterInstructions()));
|
|
@@ -5,10 +5,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
5
5
|
import { SendMessageBatchRequestFilterSensitiveLog, SendMessageBatchResultFilterSensitiveLog, } from "../models/models_0";
|
|
6
6
|
import { deserializeAws_querySendMessageBatchCommand, serializeAws_querySendMessageBatchCommand, } from "../protocols/Aws_query";
|
|
7
7
|
export class SendMessageBatchCommand extends $Command {
|
|
8
|
-
constructor(input) {
|
|
9
|
-
super();
|
|
10
|
-
this.input = input;
|
|
11
|
-
}
|
|
12
8
|
static getEndpointParameterInstructions() {
|
|
13
9
|
return {
|
|
14
10
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -17,6 +13,10 @@ export class SendMessageBatchCommand extends $Command {
|
|
|
17
13
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
18
14
|
};
|
|
19
15
|
}
|
|
16
|
+
constructor(input) {
|
|
17
|
+
super();
|
|
18
|
+
this.input = input;
|
|
19
|
+
}
|
|
20
20
|
resolveMiddleware(clientStack, configuration, options) {
|
|
21
21
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
22
22
|
this.middlewareStack.use(getEndpointPlugin(configuration, SendMessageBatchCommand.getEndpointParameterInstructions()));
|
|
@@ -5,10 +5,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
5
5
|
import { SendMessageRequestFilterSensitiveLog, SendMessageResultFilterSensitiveLog, } from "../models/models_0";
|
|
6
6
|
import { deserializeAws_querySendMessageCommand, serializeAws_querySendMessageCommand } from "../protocols/Aws_query";
|
|
7
7
|
export class SendMessageCommand extends $Command {
|
|
8
|
-
constructor(input) {
|
|
9
|
-
super();
|
|
10
|
-
this.input = input;
|
|
11
|
-
}
|
|
12
8
|
static getEndpointParameterInstructions() {
|
|
13
9
|
return {
|
|
14
10
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -17,6 +13,10 @@ export class SendMessageCommand extends $Command {
|
|
|
17
13
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
18
14
|
};
|
|
19
15
|
}
|
|
16
|
+
constructor(input) {
|
|
17
|
+
super();
|
|
18
|
+
this.input = input;
|
|
19
|
+
}
|
|
20
20
|
resolveMiddleware(clientStack, configuration, options) {
|
|
21
21
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
22
22
|
this.middlewareStack.use(getEndpointPlugin(configuration, SendMessageCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { SetQueueAttributesRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_querySetQueueAttributesCommand, serializeAws_querySetQueueAttributesCommand, } from "../protocols/Aws_query";
|
|
6
6
|
export class SetQueueAttributesCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class SetQueueAttributesCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, SetQueueAttributesCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { TagQueueRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_queryTagQueueCommand, serializeAws_queryTagQueueCommand } from "../protocols/Aws_query";
|
|
6
6
|
export class TagQueueCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class TagQueueCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, TagQueueCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { UntagQueueRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_queryUntagQueueCommand, serializeAws_queryUntagQueueCommand } from "../protocols/Aws_query";
|
|
6
6
|
export class UntagQueueCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class UntagQueueCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, UntagQueueCommand.getEndpointParameterInstructions()));
|
|
@@ -28,8 +28,8 @@ import { SetQueueAttributesCommandInput, SetQueueAttributesCommandOutput } from
|
|
|
28
28
|
import { TagQueueCommandInput, TagQueueCommandOutput } from "./commands/TagQueueCommand";
|
|
29
29
|
import { UntagQueueCommandInput, UntagQueueCommandOutput } from "./commands/UntagQueueCommand";
|
|
30
30
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
31
|
-
export
|
|
32
|
-
export
|
|
31
|
+
export type ServiceInputTypes = AddPermissionCommandInput | ChangeMessageVisibilityBatchCommandInput | ChangeMessageVisibilityCommandInput | CreateQueueCommandInput | DeleteMessageBatchCommandInput | DeleteMessageCommandInput | DeleteQueueCommandInput | GetQueueAttributesCommandInput | GetQueueUrlCommandInput | ListDeadLetterSourceQueuesCommandInput | ListQueueTagsCommandInput | ListQueuesCommandInput | PurgeQueueCommandInput | ReceiveMessageCommandInput | RemovePermissionCommandInput | SendMessageBatchCommandInput | SendMessageCommandInput | SetQueueAttributesCommandInput | TagQueueCommandInput | UntagQueueCommandInput;
|
|
32
|
+
export type ServiceOutputTypes = AddPermissionCommandOutput | ChangeMessageVisibilityBatchCommandOutput | ChangeMessageVisibilityCommandOutput | CreateQueueCommandOutput | DeleteMessageBatchCommandOutput | DeleteMessageCommandOutput | DeleteQueueCommandOutput | GetQueueAttributesCommandOutput | GetQueueUrlCommandOutput | ListDeadLetterSourceQueuesCommandOutput | ListQueueTagsCommandOutput | ListQueuesCommandOutput | PurgeQueueCommandOutput | ReceiveMessageCommandOutput | RemovePermissionCommandOutput | SendMessageBatchCommandOutput | SendMessageCommandOutput | SetQueueAttributesCommandOutput | TagQueueCommandOutput | UntagQueueCommandOutput;
|
|
33
33
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
34
34
|
/**
|
|
35
35
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -136,13 +136,13 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
136
136
|
*/
|
|
137
137
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
138
138
|
}
|
|
139
|
-
|
|
139
|
+
type SQSClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
140
140
|
/**
|
|
141
141
|
* The configuration interface of SQSClient class constructor that set the region, credentials and other options.
|
|
142
142
|
*/
|
|
143
143
|
export interface SQSClientConfig extends SQSClientConfigType {
|
|
144
144
|
}
|
|
145
|
-
|
|
145
|
+
type SQSClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
146
146
|
/**
|
|
147
147
|
* The resolved configuration interface of SQSClient class. This is resolved and normalized from the {@link SQSClientConfig | constructor configuration interface}.
|
|
148
148
|
*/
|
|
@@ -5,7 +5,7 @@ export interface ClientInputEndpointParameters {
|
|
|
5
5
|
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
6
6
|
endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
|
|
7
7
|
}
|
|
8
|
-
export
|
|
8
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
9
9
|
defaultSigningName: string;
|
|
10
10
|
};
|
|
11
11
|
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
@@ -228,7 +228,7 @@ export declare class TooManyEntriesInBatchRequest extends __BaseException {
|
|
|
228
228
|
*/
|
|
229
229
|
constructor(opts: __ExceptionOptionType<TooManyEntriesInBatchRequest, __BaseException>);
|
|
230
230
|
}
|
|
231
|
-
export
|
|
231
|
+
export type QueueAttributeName = "All" | "ApproximateNumberOfMessages" | "ApproximateNumberOfMessagesDelayed" | "ApproximateNumberOfMessagesNotVisible" | "ContentBasedDeduplication" | "CreatedTimestamp" | "DeduplicationScope" | "DelaySeconds" | "FifoQueue" | "FifoThroughputLimit" | "KmsDataKeyReusePeriodSeconds" | "KmsMasterKeyId" | "LastModifiedTimestamp" | "MaximumMessageSize" | "MessageRetentionPeriod" | "Policy" | "QueueArn" | "ReceiveMessageWaitTimeSeconds" | "RedriveAllowPolicy" | "RedrivePolicy" | "SqsManagedSseEnabled" | "VisibilityTimeout";
|
|
232
232
|
/**
|
|
233
233
|
* <p></p>
|
|
234
234
|
*/
|
|
@@ -1079,7 +1079,7 @@ export interface ReceiveMessageRequest {
|
|
|
1079
1079
|
*/
|
|
1080
1080
|
ReceiveRequestAttemptId?: string;
|
|
1081
1081
|
}
|
|
1082
|
-
export
|
|
1082
|
+
export type MessageSystemAttributeName = "AWSTraceHeader" | "ApproximateFirstReceiveTimestamp" | "ApproximateReceiveCount" | "MessageDeduplicationId" | "MessageGroupId" | "SenderId" | "SentTimestamp" | "SequenceNumber";
|
|
1083
1083
|
/**
|
|
1084
1084
|
* <p>The user-specified message attribute value. For string data types, the <code>Value</code> attribute has the same restrictions on the content as the message body. For more information, see <code>
|
|
1085
1085
|
* <a>SendMessage</a>.</code>
|
|
@@ -1225,7 +1225,7 @@ export declare class InvalidMessageContents extends __BaseException {
|
|
|
1225
1225
|
*/
|
|
1226
1226
|
constructor(opts: __ExceptionOptionType<InvalidMessageContents, __BaseException>);
|
|
1227
1227
|
}
|
|
1228
|
-
export
|
|
1228
|
+
export type MessageSystemAttributeNameForSends = "AWSTraceHeader";
|
|
1229
1229
|
/**
|
|
1230
1230
|
* <p>The user-specified message system attribute value. For string data types, the <code>Value</code> attribute has the same restrictions on the content as the message body. For more information, see <code>
|
|
1231
1231
|
* <a>SendMessage</a>.</code>
|
|
@@ -129,7 +129,7 @@ import {
|
|
|
129
129
|
ClientResolvedEndpointParameters,
|
|
130
130
|
EndpointParameters,
|
|
131
131
|
} from "./endpoint/EndpointParameters";
|
|
132
|
-
export
|
|
132
|
+
export type ServiceInputTypes =
|
|
133
133
|
| AddPermissionCommandInput
|
|
134
134
|
| ChangeMessageVisibilityBatchCommandInput
|
|
135
135
|
| ChangeMessageVisibilityCommandInput
|
|
@@ -150,7 +150,7 @@ export declare type ServiceInputTypes =
|
|
|
150
150
|
| SetQueueAttributesCommandInput
|
|
151
151
|
| TagQueueCommandInput
|
|
152
152
|
| UntagQueueCommandInput;
|
|
153
|
-
export
|
|
153
|
+
export type ServiceOutputTypes =
|
|
154
154
|
| AddPermissionCommandOutput
|
|
155
155
|
| ChangeMessageVisibilityBatchCommandOutput
|
|
156
156
|
| ChangeMessageVisibilityCommandOutput
|
|
@@ -196,7 +196,7 @@ export interface ClientDefaults
|
|
|
196
196
|
logger?: __Logger;
|
|
197
197
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
198
198
|
}
|
|
199
|
-
|
|
199
|
+
type SQSClientConfigType = Partial<
|
|
200
200
|
__SmithyConfiguration<__HttpHandlerOptions>
|
|
201
201
|
> &
|
|
202
202
|
ClientDefaults &
|
|
@@ -208,7 +208,7 @@ declare type SQSClientConfigType = Partial<
|
|
|
208
208
|
UserAgentInputConfig &
|
|
209
209
|
ClientInputEndpointParameters;
|
|
210
210
|
export interface SQSClientConfig extends SQSClientConfigType {}
|
|
211
|
-
|
|
211
|
+
type SQSClientResolvedConfigType =
|
|
212
212
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
213
213
|
Required<ClientDefaults> &
|
|
214
214
|
RegionResolvedConfig &
|
|
@@ -16,10 +16,9 @@ export interface ClientInputEndpointParameters {
|
|
|
16
16
|
| EndpointV2
|
|
17
17
|
| Provider<EndpointV2>;
|
|
18
18
|
}
|
|
19
|
-
export
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
};
|
|
19
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
20
|
+
defaultSigningName: string;
|
|
21
|
+
};
|
|
23
22
|
export declare const resolveClientEndpointParameters: <T>(
|
|
24
23
|
options: T & ClientInputEndpointParameters
|
|
25
24
|
) => T &
|
|
@@ -76,7 +76,7 @@ export declare class TooManyEntriesInBatchRequest extends __BaseException {
|
|
|
76
76
|
opts: __ExceptionOptionType<TooManyEntriesInBatchRequest, __BaseException>
|
|
77
77
|
);
|
|
78
78
|
}
|
|
79
|
-
export
|
|
79
|
+
export type QueueAttributeName =
|
|
80
80
|
| "All"
|
|
81
81
|
| "ApproximateNumberOfMessages"
|
|
82
82
|
| "ApproximateNumberOfMessagesDelayed"
|
|
@@ -215,7 +215,7 @@ export interface ReceiveMessageRequest {
|
|
|
215
215
|
WaitTimeSeconds?: number;
|
|
216
216
|
ReceiveRequestAttemptId?: string;
|
|
217
217
|
}
|
|
218
|
-
export
|
|
218
|
+
export type MessageSystemAttributeName =
|
|
219
219
|
| "AWSTraceHeader"
|
|
220
220
|
| "ApproximateFirstReceiveTimestamp"
|
|
221
221
|
| "ApproximateReceiveCount"
|
|
@@ -254,7 +254,7 @@ export declare class InvalidMessageContents extends __BaseException {
|
|
|
254
254
|
opts: __ExceptionOptionType<InvalidMessageContents, __BaseException>
|
|
255
255
|
);
|
|
256
256
|
}
|
|
257
|
-
export
|
|
257
|
+
export type MessageSystemAttributeNameForSends = "AWSTraceHeader";
|
|
258
258
|
export interface MessageSystemAttributeValue {
|
|
259
259
|
StringValue?: string;
|
|
260
260
|
BinaryValue?: Uint8Array;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sqs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sqs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.296.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,52 +20,52 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/md5-js": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-sdk-sqs": "3.
|
|
37
|
-
"@aws-sdk/middleware-serde": "3.
|
|
38
|
-
"@aws-sdk/middleware-signing": "3.
|
|
39
|
-
"@aws-sdk/middleware-stack": "3.
|
|
40
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
41
|
-
"@aws-sdk/node-config-provider": "3.
|
|
42
|
-
"@aws-sdk/node-http-handler": "3.
|
|
43
|
-
"@aws-sdk/protocol-http": "3.
|
|
44
|
-
"@aws-sdk/smithy-client": "3.
|
|
45
|
-
"@aws-sdk/types": "3.
|
|
46
|
-
"@aws-sdk/url-parser": "3.
|
|
47
|
-
"@aws-sdk/util-base64": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
49
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
51
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
52
|
-
"@aws-sdk/util-endpoints": "3.
|
|
53
|
-
"@aws-sdk/util-retry": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
55
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
56
|
-
"@aws-sdk/util-utf8": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.296.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.296.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.296.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
29
|
+
"@aws-sdk/md5-js": "3.296.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.296.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.296.0",
|
|
36
|
+
"@aws-sdk/middleware-sdk-sqs": "3.296.0",
|
|
37
|
+
"@aws-sdk/middleware-serde": "3.296.0",
|
|
38
|
+
"@aws-sdk/middleware-signing": "3.296.0",
|
|
39
|
+
"@aws-sdk/middleware-stack": "3.296.0",
|
|
40
|
+
"@aws-sdk/middleware-user-agent": "3.296.0",
|
|
41
|
+
"@aws-sdk/node-config-provider": "3.296.0",
|
|
42
|
+
"@aws-sdk/node-http-handler": "3.296.0",
|
|
43
|
+
"@aws-sdk/protocol-http": "3.296.0",
|
|
44
|
+
"@aws-sdk/smithy-client": "3.296.0",
|
|
45
|
+
"@aws-sdk/types": "3.296.0",
|
|
46
|
+
"@aws-sdk/url-parser": "3.296.0",
|
|
47
|
+
"@aws-sdk/util-base64": "3.295.0",
|
|
48
|
+
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
49
|
+
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
51
|
+
"@aws-sdk/util-defaults-mode-node": "3.296.0",
|
|
52
|
+
"@aws-sdk/util-endpoints": "3.296.0",
|
|
53
|
+
"@aws-sdk/util-retry": "3.296.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-browser": "3.296.0",
|
|
55
|
+
"@aws-sdk/util-user-agent-node": "3.296.0",
|
|
56
|
+
"@aws-sdk/util-utf8": "3.295.0",
|
|
57
57
|
"fast-xml-parser": "4.1.2",
|
|
58
|
-
"tslib": "^2.
|
|
58
|
+
"tslib": "^2.5.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
61
|
+
"@aws-sdk/service-client-documentation-generator": "3.295.0",
|
|
62
62
|
"@tsconfig/node14": "1.0.3",
|
|
63
63
|
"@types/node": "^14.14.31",
|
|
64
64
|
"concurrently": "7.0.0",
|
|
65
65
|
"downlevel-dts": "0.10.1",
|
|
66
66
|
"rimraf": "3.0.2",
|
|
67
67
|
"typedoc": "0.23.23",
|
|
68
|
-
"typescript": "~4.
|
|
68
|
+
"typescript": "~4.9.5"
|
|
69
69
|
},
|
|
70
70
|
"engines": {
|
|
71
71
|
"node": ">=14.0.0"
|