@aws-sdk/client-sqs 3.169.0 → 3.171.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/SQS.d.ts +344 -105
- package/dist-types/ts3.4/SQSClient.d.ts +224 -95
- package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +31 -17
- package/dist-types/ts3.4/commands/TagQueueCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/index.d.ts +20 -20
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/SQSServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +452 -545
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListDeadLetterSourceQueuesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +245 -62
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -39
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -40
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +36 -36
|
@@ -1,17 +1,30 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { DeleteQueueRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SQSClientResolvedConfig,
|
|
13
|
+
} from "../SQSClient";
|
|
14
|
+
export interface DeleteQueueCommandInput extends DeleteQueueRequest {}
|
|
15
|
+
export interface DeleteQueueCommandOutput extends __MetadataBearer {}
|
|
16
|
+
export declare class DeleteQueueCommand extends $Command<
|
|
17
|
+
DeleteQueueCommandInput,
|
|
18
|
+
DeleteQueueCommandOutput,
|
|
19
|
+
SQSClientResolvedConfig
|
|
20
|
+
> {
|
|
21
|
+
readonly input: DeleteQueueCommandInput;
|
|
22
|
+
constructor(input: DeleteQueueCommandInput);
|
|
23
|
+
resolveMiddleware(
|
|
24
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
25
|
+
configuration: SQSClientResolvedConfig,
|
|
26
|
+
options?: __HttpHandlerOptions
|
|
27
|
+
): Handler<DeleteQueueCommandInput, DeleteQueueCommandOutput>;
|
|
28
|
+
private serialize;
|
|
29
|
+
private deserialize;
|
|
30
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetQueueAttributesRequest,
|
|
10
|
+
GetQueueAttributesResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SQSClientResolvedConfig,
|
|
16
|
+
} from "../SQSClient";
|
|
17
|
+
export interface GetQueueAttributesCommandInput
|
|
18
|
+
extends GetQueueAttributesRequest {}
|
|
19
|
+
export interface GetQueueAttributesCommandOutput
|
|
20
|
+
extends GetQueueAttributesResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetQueueAttributesCommand extends $Command<
|
|
23
|
+
GetQueueAttributesCommandInput,
|
|
24
|
+
GetQueueAttributesCommandOutput,
|
|
25
|
+
SQSClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetQueueAttributesCommandInput;
|
|
28
|
+
constructor(input: GetQueueAttributesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SQSClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<GetQueueAttributesCommandInput, GetQueueAttributesCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { GetQueueUrlRequest, GetQueueUrlResult } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SQSClientResolvedConfig,
|
|
13
|
+
} from "../SQSClient";
|
|
14
|
+
export interface GetQueueUrlCommandInput extends GetQueueUrlRequest {}
|
|
15
|
+
export interface GetQueueUrlCommandOutput
|
|
16
|
+
extends GetQueueUrlResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class GetQueueUrlCommand extends $Command<
|
|
19
|
+
GetQueueUrlCommandInput,
|
|
20
|
+
GetQueueUrlCommandOutput,
|
|
21
|
+
SQSClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetQueueUrlCommandInput;
|
|
24
|
+
constructor(input: GetQueueUrlCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: SQSClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetQueueUrlCommandInput, GetQueueUrlCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListDeadLetterSourceQueuesRequest,
|
|
10
|
+
ListDeadLetterSourceQueuesResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SQSClientResolvedConfig,
|
|
16
|
+
} from "../SQSClient";
|
|
17
|
+
export interface ListDeadLetterSourceQueuesCommandInput
|
|
18
|
+
extends ListDeadLetterSourceQueuesRequest {}
|
|
19
|
+
export interface ListDeadLetterSourceQueuesCommandOutput
|
|
20
|
+
extends ListDeadLetterSourceQueuesResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListDeadLetterSourceQueuesCommand extends $Command<
|
|
23
|
+
ListDeadLetterSourceQueuesCommandInput,
|
|
24
|
+
ListDeadLetterSourceQueuesCommandOutput,
|
|
25
|
+
SQSClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListDeadLetterSourceQueuesCommandInput;
|
|
28
|
+
constructor(input: ListDeadLetterSourceQueuesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SQSClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListDeadLetterSourceQueuesCommandInput,
|
|
35
|
+
ListDeadLetterSourceQueuesCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { ListQueueTagsRequest, ListQueueTagsResult } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SQSClientResolvedConfig,
|
|
13
|
+
} from "../SQSClient";
|
|
14
|
+
export interface ListQueueTagsCommandInput extends ListQueueTagsRequest {}
|
|
15
|
+
export interface ListQueueTagsCommandOutput
|
|
16
|
+
extends ListQueueTagsResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListQueueTagsCommand extends $Command<
|
|
19
|
+
ListQueueTagsCommandInput,
|
|
20
|
+
ListQueueTagsCommandOutput,
|
|
21
|
+
SQSClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListQueueTagsCommandInput;
|
|
24
|
+
constructor(input: ListQueueTagsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: SQSClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListQueueTagsCommandInput, ListQueueTagsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { ListQueuesRequest, ListQueuesResult } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SQSClientResolvedConfig,
|
|
13
|
+
} from "../SQSClient";
|
|
14
|
+
export interface ListQueuesCommandInput extends ListQueuesRequest {}
|
|
15
|
+
export interface ListQueuesCommandOutput
|
|
16
|
+
extends ListQueuesResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListQueuesCommand extends $Command<
|
|
19
|
+
ListQueuesCommandInput,
|
|
20
|
+
ListQueuesCommandOutput,
|
|
21
|
+
SQSClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListQueuesCommandInput;
|
|
24
|
+
constructor(input: ListQueuesCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: SQSClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListQueuesCommandInput, ListQueuesCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,30 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { PurgeQueueRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SQSClientResolvedConfig,
|
|
13
|
+
} from "../SQSClient";
|
|
14
|
+
export interface PurgeQueueCommandInput extends PurgeQueueRequest {}
|
|
15
|
+
export interface PurgeQueueCommandOutput extends __MetadataBearer {}
|
|
16
|
+
export declare class PurgeQueueCommand extends $Command<
|
|
17
|
+
PurgeQueueCommandInput,
|
|
18
|
+
PurgeQueueCommandOutput,
|
|
19
|
+
SQSClientResolvedConfig
|
|
20
|
+
> {
|
|
21
|
+
readonly input: PurgeQueueCommandInput;
|
|
22
|
+
constructor(input: PurgeQueueCommandInput);
|
|
23
|
+
resolveMiddleware(
|
|
24
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
25
|
+
configuration: SQSClientResolvedConfig,
|
|
26
|
+
options?: __HttpHandlerOptions
|
|
27
|
+
): Handler<PurgeQueueCommandInput, PurgeQueueCommandOutput>;
|
|
28
|
+
private serialize;
|
|
29
|
+
private deserialize;
|
|
30
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ReceiveMessageRequest,
|
|
10
|
+
ReceiveMessageResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SQSClientResolvedConfig,
|
|
16
|
+
} from "../SQSClient";
|
|
17
|
+
export interface ReceiveMessageCommandInput extends ReceiveMessageRequest {}
|
|
18
|
+
export interface ReceiveMessageCommandOutput
|
|
19
|
+
extends ReceiveMessageResult,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ReceiveMessageCommand extends $Command<
|
|
22
|
+
ReceiveMessageCommandInput,
|
|
23
|
+
ReceiveMessageCommandOutput,
|
|
24
|
+
SQSClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ReceiveMessageCommandInput;
|
|
27
|
+
constructor(input: ReceiveMessageCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: SQSClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ReceiveMessageCommandInput, ReceiveMessageCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,30 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { RemovePermissionRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SQSClientResolvedConfig,
|
|
13
|
+
} from "../SQSClient";
|
|
14
|
+
export interface RemovePermissionCommandInput extends RemovePermissionRequest {}
|
|
15
|
+
export interface RemovePermissionCommandOutput extends __MetadataBearer {}
|
|
16
|
+
export declare class RemovePermissionCommand extends $Command<
|
|
17
|
+
RemovePermissionCommandInput,
|
|
18
|
+
RemovePermissionCommandOutput,
|
|
19
|
+
SQSClientResolvedConfig
|
|
20
|
+
> {
|
|
21
|
+
readonly input: RemovePermissionCommandInput;
|
|
22
|
+
constructor(input: RemovePermissionCommandInput);
|
|
23
|
+
resolveMiddleware(
|
|
24
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
25
|
+
configuration: SQSClientResolvedConfig,
|
|
26
|
+
options?: __HttpHandlerOptions
|
|
27
|
+
): Handler<RemovePermissionCommandInput, RemovePermissionCommandOutput>;
|
|
28
|
+
private serialize;
|
|
29
|
+
private deserialize;
|
|
30
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
SendMessageBatchRequest,
|
|
10
|
+
SendMessageBatchResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SQSClientResolvedConfig,
|
|
16
|
+
} from "../SQSClient";
|
|
17
|
+
export interface SendMessageBatchCommandInput extends SendMessageBatchRequest {}
|
|
18
|
+
export interface SendMessageBatchCommandOutput
|
|
19
|
+
extends SendMessageBatchResult,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class SendMessageBatchCommand extends $Command<
|
|
22
|
+
SendMessageBatchCommandInput,
|
|
23
|
+
SendMessageBatchCommandOutput,
|
|
24
|
+
SQSClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: SendMessageBatchCommandInput;
|
|
27
|
+
constructor(input: SendMessageBatchCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: SQSClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<SendMessageBatchCommandInput, SendMessageBatchCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { SendMessageRequest, SendMessageResult } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SQSClientResolvedConfig,
|
|
13
|
+
} from "../SQSClient";
|
|
14
|
+
export interface SendMessageCommandInput extends SendMessageRequest {}
|
|
15
|
+
export interface SendMessageCommandOutput
|
|
16
|
+
extends SendMessageResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class SendMessageCommand extends $Command<
|
|
19
|
+
SendMessageCommandInput,
|
|
20
|
+
SendMessageCommandOutput,
|
|
21
|
+
SQSClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: SendMessageCommandInput;
|
|
24
|
+
constructor(input: SendMessageCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: SQSClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<SendMessageCommandInput, SendMessageCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,31 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { SetQueueAttributesRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SQSClientResolvedConfig,
|
|
13
|
+
} from "../SQSClient";
|
|
14
|
+
export interface SetQueueAttributesCommandInput
|
|
15
|
+
extends SetQueueAttributesRequest {}
|
|
16
|
+
export interface SetQueueAttributesCommandOutput extends __MetadataBearer {}
|
|
17
|
+
export declare class SetQueueAttributesCommand extends $Command<
|
|
18
|
+
SetQueueAttributesCommandInput,
|
|
19
|
+
SetQueueAttributesCommandOutput,
|
|
20
|
+
SQSClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: SetQueueAttributesCommandInput;
|
|
23
|
+
constructor(input: SetQueueAttributesCommandInput);
|
|
24
|
+
resolveMiddleware(
|
|
25
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
26
|
+
configuration: SQSClientResolvedConfig,
|
|
27
|
+
options?: __HttpHandlerOptions
|
|
28
|
+
): Handler<SetQueueAttributesCommandInput, SetQueueAttributesCommandOutput>;
|
|
29
|
+
private serialize;
|
|
30
|
+
private deserialize;
|
|
31
|
+
}
|