@aws-sdk/client-sns 3.193.0 → 3.194.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 +11 -0
- package/dist-cjs/SNSClient.js +11 -8
- package/dist-cjs/commands/AddPermissionCommand.js +10 -0
- package/dist-cjs/commands/CheckIfPhoneNumberIsOptedOutCommand.js +10 -0
- package/dist-cjs/commands/ConfirmSubscriptionCommand.js +10 -0
- package/dist-cjs/commands/CreatePlatformApplicationCommand.js +10 -0
- package/dist-cjs/commands/CreatePlatformEndpointCommand.js +10 -0
- package/dist-cjs/commands/CreateSMSSandboxPhoneNumberCommand.js +10 -0
- package/dist-cjs/commands/CreateTopicCommand.js +10 -0
- package/dist-cjs/commands/DeleteEndpointCommand.js +10 -0
- package/dist-cjs/commands/DeletePlatformApplicationCommand.js +10 -0
- package/dist-cjs/commands/DeleteSMSSandboxPhoneNumberCommand.js +10 -0
- package/dist-cjs/commands/DeleteTopicCommand.js +10 -0
- package/dist-cjs/commands/GetDataProtectionPolicyCommand.js +10 -0
- package/dist-cjs/commands/GetEndpointAttributesCommand.js +10 -0
- package/dist-cjs/commands/GetPlatformApplicationAttributesCommand.js +10 -0
- package/dist-cjs/commands/GetSMSAttributesCommand.js +10 -0
- package/dist-cjs/commands/GetSMSSandboxAccountStatusCommand.js +10 -0
- package/dist-cjs/commands/GetSubscriptionAttributesCommand.js +10 -0
- package/dist-cjs/commands/GetTopicAttributesCommand.js +10 -0
- package/dist-cjs/commands/ListEndpointsByPlatformApplicationCommand.js +10 -0
- package/dist-cjs/commands/ListOriginationNumbersCommand.js +10 -0
- package/dist-cjs/commands/ListPhoneNumbersOptedOutCommand.js +10 -0
- package/dist-cjs/commands/ListPlatformApplicationsCommand.js +10 -0
- package/dist-cjs/commands/ListSMSSandboxPhoneNumbersCommand.js +10 -0
- package/dist-cjs/commands/ListSubscriptionsByTopicCommand.js +10 -0
- package/dist-cjs/commands/ListSubscriptionsCommand.js +10 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-cjs/commands/ListTopicsCommand.js +10 -0
- package/dist-cjs/commands/OptInPhoneNumberCommand.js +10 -0
- package/dist-cjs/commands/PublishBatchCommand.js +10 -0
- package/dist-cjs/commands/PublishCommand.js +10 -0
- package/dist-cjs/commands/PutDataProtectionPolicyCommand.js +10 -0
- package/dist-cjs/commands/RemovePermissionCommand.js +10 -0
- package/dist-cjs/commands/SetEndpointAttributesCommand.js +10 -0
- package/dist-cjs/commands/SetPlatformApplicationAttributesCommand.js +10 -0
- package/dist-cjs/commands/SetSMSAttributesCommand.js +10 -0
- package/dist-cjs/commands/SetSubscriptionAttributesCommand.js +10 -0
- package/dist-cjs/commands/SetTopicAttributesCommand.js +10 -0
- package/dist-cjs/commands/SubscribeCommand.js +10 -0
- package/dist-cjs/commands/TagResourceCommand.js +10 -0
- package/dist-cjs/commands/UnsubscribeCommand.js +10 -0
- package/dist-cjs/commands/UntagResourceCommand.js +10 -0
- package/dist-cjs/commands/VerifySMSSandboxPhoneNumberCommand.js +10 -0
- package/dist-cjs/endpoint/EndpointParameters.js +13 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +356 -0
- package/dist-cjs/runtimeConfig.shared.js +3 -3
- package/dist-es/SNSClient.js +12 -9
- package/dist-es/commands/AddPermissionCommand.js +10 -0
- package/dist-es/commands/CheckIfPhoneNumberIsOptedOutCommand.js +10 -0
- package/dist-es/commands/ConfirmSubscriptionCommand.js +10 -0
- package/dist-es/commands/CreatePlatformApplicationCommand.js +10 -0
- package/dist-es/commands/CreatePlatformEndpointCommand.js +10 -0
- package/dist-es/commands/CreateSMSSandboxPhoneNumberCommand.js +10 -0
- package/dist-es/commands/CreateTopicCommand.js +10 -0
- package/dist-es/commands/DeleteEndpointCommand.js +10 -0
- package/dist-es/commands/DeletePlatformApplicationCommand.js +10 -0
- package/dist-es/commands/DeleteSMSSandboxPhoneNumberCommand.js +10 -0
- package/dist-es/commands/DeleteTopicCommand.js +10 -0
- package/dist-es/commands/GetDataProtectionPolicyCommand.js +10 -0
- package/dist-es/commands/GetEndpointAttributesCommand.js +10 -0
- package/dist-es/commands/GetPlatformApplicationAttributesCommand.js +10 -0
- package/dist-es/commands/GetSMSAttributesCommand.js +10 -0
- package/dist-es/commands/GetSMSSandboxAccountStatusCommand.js +10 -0
- package/dist-es/commands/GetSubscriptionAttributesCommand.js +10 -0
- package/dist-es/commands/GetTopicAttributesCommand.js +10 -0
- package/dist-es/commands/ListEndpointsByPlatformApplicationCommand.js +10 -0
- package/dist-es/commands/ListOriginationNumbersCommand.js +10 -0
- package/dist-es/commands/ListPhoneNumbersOptedOutCommand.js +10 -0
- package/dist-es/commands/ListPlatformApplicationsCommand.js +10 -0
- package/dist-es/commands/ListSMSSandboxPhoneNumbersCommand.js +10 -0
- package/dist-es/commands/ListSubscriptionsByTopicCommand.js +10 -0
- package/dist-es/commands/ListSubscriptionsCommand.js +10 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-es/commands/ListTopicsCommand.js +10 -0
- package/dist-es/commands/OptInPhoneNumberCommand.js +10 -0
- package/dist-es/commands/PublishBatchCommand.js +10 -0
- package/dist-es/commands/PublishCommand.js +10 -0
- package/dist-es/commands/PutDataProtectionPolicyCommand.js +10 -0
- package/dist-es/commands/RemovePermissionCommand.js +10 -0
- package/dist-es/commands/SetEndpointAttributesCommand.js +10 -0
- package/dist-es/commands/SetPlatformApplicationAttributesCommand.js +10 -0
- package/dist-es/commands/SetSMSAttributesCommand.js +10 -0
- package/dist-es/commands/SetSubscriptionAttributesCommand.js +10 -0
- package/dist-es/commands/SetTopicAttributesCommand.js +10 -0
- package/dist-es/commands/SubscribeCommand.js +10 -0
- package/dist-es/commands/TagResourceCommand.js +10 -0
- package/dist-es/commands/UnsubscribeCommand.js +10 -0
- package/dist-es/commands/UntagResourceCommand.js +10 -0
- package/dist-es/commands/VerifySMSSandboxPhoneNumberCommand.js +10 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +353 -0
- package/dist-es/runtimeConfig.shared.js +2 -2
- package/dist-types/SNSClient.d.ts +6 -9
- package/dist-types/commands/AddPermissionCommand.d.ts +2 -0
- package/dist-types/commands/CheckIfPhoneNumberIsOptedOutCommand.d.ts +2 -0
- package/dist-types/commands/ConfirmSubscriptionCommand.d.ts +2 -0
- package/dist-types/commands/CreatePlatformApplicationCommand.d.ts +2 -0
- package/dist-types/commands/CreatePlatformEndpointCommand.d.ts +2 -0
- package/dist-types/commands/CreateSMSSandboxPhoneNumberCommand.d.ts +2 -0
- package/dist-types/commands/CreateTopicCommand.d.ts +2 -0
- package/dist-types/commands/DeleteEndpointCommand.d.ts +2 -0
- package/dist-types/commands/DeletePlatformApplicationCommand.d.ts +2 -0
- package/dist-types/commands/DeleteSMSSandboxPhoneNumberCommand.d.ts +2 -0
- package/dist-types/commands/DeleteTopicCommand.d.ts +2 -0
- package/dist-types/commands/GetDataProtectionPolicyCommand.d.ts +2 -0
- package/dist-types/commands/GetEndpointAttributesCommand.d.ts +2 -0
- package/dist-types/commands/GetPlatformApplicationAttributesCommand.d.ts +2 -0
- package/dist-types/commands/GetSMSAttributesCommand.d.ts +2 -0
- package/dist-types/commands/GetSMSSandboxAccountStatusCommand.d.ts +2 -0
- package/dist-types/commands/GetSubscriptionAttributesCommand.d.ts +2 -0
- package/dist-types/commands/GetTopicAttributesCommand.d.ts +2 -0
- package/dist-types/commands/ListEndpointsByPlatformApplicationCommand.d.ts +2 -0
- package/dist-types/commands/ListOriginationNumbersCommand.d.ts +2 -0
- package/dist-types/commands/ListPhoneNumbersOptedOutCommand.d.ts +2 -0
- package/dist-types/commands/ListPlatformApplicationsCommand.d.ts +2 -0
- package/dist-types/commands/ListSMSSandboxPhoneNumbersCommand.d.ts +2 -0
- package/dist-types/commands/ListSubscriptionsByTopicCommand.d.ts +2 -0
- package/dist-types/commands/ListSubscriptionsCommand.d.ts +2 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/commands/ListTopicsCommand.d.ts +2 -0
- package/dist-types/commands/OptInPhoneNumberCommand.d.ts +2 -0
- package/dist-types/commands/PublishBatchCommand.d.ts +2 -0
- package/dist-types/commands/PublishCommand.d.ts +2 -0
- package/dist-types/commands/PutDataProtectionPolicyCommand.d.ts +2 -0
- package/dist-types/commands/RemovePermissionCommand.d.ts +2 -0
- package/dist-types/commands/SetEndpointAttributesCommand.d.ts +2 -0
- package/dist-types/commands/SetPlatformApplicationAttributesCommand.d.ts +2 -0
- package/dist-types/commands/SetSMSAttributesCommand.d.ts +2 -0
- package/dist-types/commands/SetSubscriptionAttributesCommand.d.ts +2 -0
- package/dist-types/commands/SetTopicAttributesCommand.d.ts +2 -0
- package/dist-types/commands/SubscribeCommand.d.ts +2 -0
- package/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UnsubscribeCommand.d.ts +2 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/commands/VerifySMSSandboxPhoneNumberCommand.d.ts +2 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +4 -2
- package/dist-types/runtimeConfig.shared.d.ts +3 -1
- package/dist-types/ts3.4/SNSClient.d.ts +15 -8
- package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CheckIfPhoneNumberIsOptedOutCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ConfirmSubscriptionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreatePlatformApplicationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreatePlatformEndpointCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateSMSSandboxPhoneNumberCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateTopicCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteEndpointCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeletePlatformApplicationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteSMSSandboxPhoneNumberCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteTopicCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetDataProtectionPolicyCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetEndpointAttributesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetPlatformApplicationAttributesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetSMSAttributesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetSMSSandboxAccountStatusCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetSubscriptionAttributesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetTopicAttributesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListEndpointsByPlatformApplicationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListOriginationNumbersCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListPhoneNumbersOptedOutCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListPlatformApplicationsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListSMSSandboxPhoneNumbersCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListSubscriptionsByTopicCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListTopicsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/OptInPhoneNumberCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/PublishBatchCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/PublishCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/PutDataProtectionPolicyCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/SetEndpointAttributesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/SetPlatformApplicationAttributesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/SetSMSAttributesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/SetSubscriptionAttributesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/SetTopicAttributesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/SubscribeCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UnsubscribeCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/VerifySMSSandboxPhoneNumberCommand.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +26 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +14 -3
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
- package/package.json +4 -2
- package/dist-cjs/endpoints.js +0 -185
- package/dist-es/endpoints.js +0 -181
- package/dist-types/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
|
-
EndpointsInputConfig,
|
|
3
|
-
EndpointsResolvedConfig,
|
|
4
2
|
RegionInputConfig,
|
|
5
3
|
RegionResolvedConfig,
|
|
6
4
|
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
7
9
|
import {
|
|
8
10
|
HostHeaderInputConfig,
|
|
9
11
|
HostHeaderResolvedConfig,
|
|
@@ -37,7 +39,6 @@ import {
|
|
|
37
39
|
Logger as __Logger,
|
|
38
40
|
Provider as __Provider,
|
|
39
41
|
Provider,
|
|
40
|
-
RegionInfoProvider,
|
|
41
42
|
StreamCollector as __StreamCollector,
|
|
42
43
|
UrlParser as __UrlParser,
|
|
43
44
|
UserAgent as __UserAgent,
|
|
@@ -210,6 +211,11 @@ import {
|
|
|
210
211
|
VerifySMSSandboxPhoneNumberCommandInput,
|
|
211
212
|
VerifySMSSandboxPhoneNumberCommandOutput,
|
|
212
213
|
} from "./commands/VerifySMSSandboxPhoneNumberCommand";
|
|
214
|
+
import {
|
|
215
|
+
ClientInputEndpointParameters,
|
|
216
|
+
ClientResolvedEndpointParameters,
|
|
217
|
+
EndpointParameters,
|
|
218
|
+
} from "./endpoint/EndpointParameters";
|
|
213
219
|
export declare type ServiceInputTypes =
|
|
214
220
|
| AddPermissionCommandInput
|
|
215
221
|
| CheckIfPhoneNumberIsOptedOutCommandInput
|
|
@@ -317,7 +323,6 @@ export interface ClientDefaults
|
|
|
317
323
|
serviceId?: string;
|
|
318
324
|
region?: string | __Provider<string>;
|
|
319
325
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
320
|
-
regionInfoProvider?: RegionInfoProvider;
|
|
321
326
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
322
327
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
323
328
|
}
|
|
@@ -326,21 +331,23 @@ declare type SNSClientConfigType = Partial<
|
|
|
326
331
|
> &
|
|
327
332
|
ClientDefaults &
|
|
328
333
|
RegionInputConfig &
|
|
329
|
-
|
|
334
|
+
EndpointInputConfig<EndpointParameters> &
|
|
330
335
|
RetryInputConfig &
|
|
331
336
|
HostHeaderInputConfig &
|
|
332
337
|
AwsAuthInputConfig &
|
|
333
|
-
UserAgentInputConfig
|
|
338
|
+
UserAgentInputConfig &
|
|
339
|
+
ClientInputEndpointParameters;
|
|
334
340
|
export interface SNSClientConfig extends SNSClientConfigType {}
|
|
335
341
|
declare type SNSClientResolvedConfigType =
|
|
336
342
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
337
343
|
Required<ClientDefaults> &
|
|
338
344
|
RegionResolvedConfig &
|
|
339
|
-
|
|
345
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
340
346
|
RetryResolvedConfig &
|
|
341
347
|
HostHeaderResolvedConfig &
|
|
342
348
|
AwsAuthResolvedConfig &
|
|
343
|
-
UserAgentResolvedConfig
|
|
349
|
+
UserAgentResolvedConfig &
|
|
350
|
+
ClientResolvedEndpointParameters;
|
|
344
351
|
export interface SNSClientResolvedConfig extends SNSClientResolvedConfigType {}
|
|
345
352
|
export declare class SNSClient extends __Client<
|
|
346
353
|
__HttpHandlerOptions,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -19,6 +20,7 @@ export declare class AddPermissionCommand extends $Command<
|
|
|
19
20
|
SNSClientResolvedConfig
|
|
20
21
|
> {
|
|
21
22
|
readonly input: AddPermissionCommandInput;
|
|
23
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
22
24
|
constructor(input: AddPermissionCommandInput);
|
|
23
25
|
resolveMiddleware(
|
|
24
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class CheckIfPhoneNumberIsOptedOutCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CheckIfPhoneNumberIsOptedOutCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CheckIfPhoneNumberIsOptedOutCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ConfirmSubscriptionCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ConfirmSubscriptionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ConfirmSubscriptionCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class CreatePlatformApplicationCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CreatePlatformApplicationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CreatePlatformApplicationCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class CreatePlatformEndpointCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CreatePlatformEndpointCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CreatePlatformEndpointCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class CreateSMSSandboxPhoneNumberCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CreateSMSSandboxPhoneNumberCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CreateSMSSandboxPhoneNumberCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class CreateTopicCommand extends $Command<
|
|
|
21
22
|
SNSClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: CreateTopicCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: CreateTopicCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -19,6 +20,7 @@ export declare class DeleteEndpointCommand extends $Command<
|
|
|
19
20
|
SNSClientResolvedConfig
|
|
20
21
|
> {
|
|
21
22
|
readonly input: DeleteEndpointCommandInput;
|
|
23
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
22
24
|
constructor(input: DeleteEndpointCommandInput);
|
|
23
25
|
resolveMiddleware(
|
|
24
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class DeletePlatformApplicationCommand extends $Command<
|
|
|
21
22
|
SNSClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: DeletePlatformApplicationCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: DeletePlatformApplicationCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DeleteSMSSandboxPhoneNumberCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DeleteSMSSandboxPhoneNumberCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DeleteSMSSandboxPhoneNumberCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -19,6 +20,7 @@ export declare class DeleteTopicCommand extends $Command<
|
|
|
19
20
|
SNSClientResolvedConfig
|
|
20
21
|
> {
|
|
21
22
|
readonly input: DeleteTopicCommandInput;
|
|
23
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
22
24
|
constructor(input: DeleteTopicCommandInput);
|
|
23
25
|
resolveMiddleware(
|
|
24
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class GetDataProtectionPolicyCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: GetDataProtectionPolicyCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetDataProtectionPolicyCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class GetEndpointAttributesCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: GetEndpointAttributesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetEndpointAttributesCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class GetPlatformApplicationAttributesCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: GetPlatformApplicationAttributesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetPlatformApplicationAttributesCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class GetSMSAttributesCommand extends $Command<
|
|
|
24
25
|
SNSClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: GetSMSAttributesCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: GetSMSAttributesCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class GetSMSSandboxAccountStatusCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: GetSMSSandboxAccountStatusCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetSMSSandboxAccountStatusCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class GetSubscriptionAttributesCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: GetSubscriptionAttributesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetSubscriptionAttributesCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class GetTopicAttributesCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: GetTopicAttributesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetTopicAttributesCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListEndpointsByPlatformApplicationCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListEndpointsByPlatformApplicationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListEndpointsByPlatformApplicationCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListOriginationNumbersCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListOriginationNumbersCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListOriginationNumbersCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListPhoneNumbersOptedOutCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListPhoneNumbersOptedOutCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListPhoneNumbersOptedOutCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListPlatformApplicationsCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListPlatformApplicationsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListPlatformApplicationsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListSMSSandboxPhoneNumbersCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListSMSSandboxPhoneNumbersCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListSMSSandboxPhoneNumbersCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListSubscriptionsByTopicCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListSubscriptionsByTopicCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListSubscriptionsByTopicCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class ListSubscriptionsCommand extends $Command<
|
|
|
24
25
|
SNSClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: ListSubscriptionsCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: ListSubscriptionsCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListTagsForResourceCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListTagsForResourceCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class ListTopicsCommand extends $Command<
|
|
|
21
22
|
SNSClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: ListTopicsCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: ListTopicsCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class OptInPhoneNumberCommand extends $Command<
|
|
|
24
25
|
SNSClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: OptInPhoneNumberCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: OptInPhoneNumberCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class PublishBatchCommand extends $Command<
|
|
|
21
22
|
SNSClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: PublishBatchCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: PublishBatchCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class PublishCommand extends $Command<
|
|
|
21
22
|
SNSClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: PublishCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: PublishCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class PutDataProtectionPolicyCommand extends $Command<
|
|
|
21
22
|
SNSClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: PutDataProtectionPolicyCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: PutDataProtectionPolicyCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -19,6 +20,7 @@ export declare class RemovePermissionCommand extends $Command<
|
|
|
19
20
|
SNSClientResolvedConfig
|
|
20
21
|
> {
|
|
21
22
|
readonly input: RemovePermissionCommandInput;
|
|
23
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
22
24
|
constructor(input: RemovePermissionCommandInput);
|
|
23
25
|
resolveMiddleware(
|
|
24
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -20,6 +21,7 @@ export declare class SetEndpointAttributesCommand extends $Command<
|
|
|
20
21
|
SNSClientResolvedConfig
|
|
21
22
|
> {
|
|
22
23
|
readonly input: SetEndpointAttributesCommandInput;
|
|
24
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
23
25
|
constructor(input: SetEndpointAttributesCommandInput);
|
|
24
26
|
resolveMiddleware(
|
|
25
27
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class SetPlatformApplicationAttributesCommand extends $Command<
|
|
|
21
22
|
SNSClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: SetPlatformApplicationAttributesCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: SetPlatformApplicationAttributesCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class SetSMSAttributesCommand extends $Command<
|
|
|
24
25
|
SNSClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: SetSMSAttributesCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: SetSMSAttributesCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class SetSubscriptionAttributesCommand extends $Command<
|
|
|
21
22
|
SNSClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: SetSubscriptionAttributesCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: SetSubscriptionAttributesCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -20,6 +21,7 @@ export declare class SetTopicAttributesCommand extends $Command<
|
|
|
20
21
|
SNSClientResolvedConfig
|
|
21
22
|
> {
|
|
22
23
|
readonly input: SetTopicAttributesCommandInput;
|
|
24
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
23
25
|
constructor(input: SetTopicAttributesCommandInput);
|
|
24
26
|
resolveMiddleware(
|
|
25
27
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class SubscribeCommand extends $Command<
|
|
|
21
22
|
SNSClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: SubscribeCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: SubscribeCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class TagResourceCommand extends $Command<
|
|
|
21
22
|
SNSClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: TagResourceCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: TagResourceCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -19,6 +20,7 @@ export declare class UnsubscribeCommand extends $Command<
|
|
|
19
20
|
SNSClientResolvedConfig
|
|
20
21
|
> {
|
|
21
22
|
readonly input: UnsubscribeCommandInput;
|
|
23
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
22
24
|
constructor(input: UnsubscribeCommandInput);
|
|
23
25
|
resolveMiddleware(
|
|
24
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class UntagResourceCommand extends $Command<
|
|
|
24
25
|
SNSClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: UntagResourceCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: UntagResourceCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class VerifySMSSandboxPhoneNumberCommand extends $Command<
|
|
|
25
26
|
SNSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: VerifySMSSandboxPhoneNumberCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: VerifySMSSandboxPhoneNumberCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|