@aws-sdk/client-sns 3.193.0 → 3.196.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 +19 -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 +5 -3
- 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,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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { CreateTopicInput, CreateTopicResponse } from "../models/models_0";
|
|
@@ -29,6 +30,7 @@ export interface CreateTopicCommandOutput extends CreateTopicResponse, __Metadat
|
|
|
29
30
|
*/
|
|
30
31
|
export declare class CreateTopicCommand extends $Command<CreateTopicCommandInput, CreateTopicCommandOutput, SNSClientResolvedConfig> {
|
|
31
32
|
readonly input: CreateTopicCommandInput;
|
|
33
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
32
34
|
constructor(input: CreateTopicCommandInput);
|
|
33
35
|
/**
|
|
34
36
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DeleteEndpointInput } from "../models/models_0";
|
|
@@ -29,6 +30,7 @@ export interface DeleteEndpointCommandOutput extends __MetadataBearer {
|
|
|
29
30
|
*/
|
|
30
31
|
export declare class DeleteEndpointCommand extends $Command<DeleteEndpointCommandInput, DeleteEndpointCommandOutput, SNSClientResolvedConfig> {
|
|
31
32
|
readonly input: DeleteEndpointCommandInput;
|
|
33
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
32
34
|
constructor(input: DeleteEndpointCommandInput);
|
|
33
35
|
/**
|
|
34
36
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DeletePlatformApplicationInput } from "../models/models_0";
|
|
@@ -28,6 +29,7 @@ export interface DeletePlatformApplicationCommandOutput extends __MetadataBearer
|
|
|
28
29
|
*/
|
|
29
30
|
export declare class DeletePlatformApplicationCommand extends $Command<DeletePlatformApplicationCommandInput, DeletePlatformApplicationCommandOutput, SNSClientResolvedConfig> {
|
|
30
31
|
readonly input: DeletePlatformApplicationCommandInput;
|
|
32
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
33
|
constructor(input: DeletePlatformApplicationCommandInput);
|
|
32
34
|
/**
|
|
33
35
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DeleteSMSSandboxPhoneNumberInput, DeleteSMSSandboxPhoneNumberResult } from "../models/models_0";
|
|
@@ -33,6 +34,7 @@ export interface DeleteSMSSandboxPhoneNumberCommandOutput extends DeleteSMSSandb
|
|
|
33
34
|
*/
|
|
34
35
|
export declare class DeleteSMSSandboxPhoneNumberCommand extends $Command<DeleteSMSSandboxPhoneNumberCommandInput, DeleteSMSSandboxPhoneNumberCommandOutput, SNSClientResolvedConfig> {
|
|
35
36
|
readonly input: DeleteSMSSandboxPhoneNumberCommandInput;
|
|
37
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
36
38
|
constructor(input: DeleteSMSSandboxPhoneNumberCommandInput);
|
|
37
39
|
/**
|
|
38
40
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DeleteTopicInput } from "../models/models_0";
|
|
@@ -28,6 +29,7 @@ export interface DeleteTopicCommandOutput extends __MetadataBearer {
|
|
|
28
29
|
*/
|
|
29
30
|
export declare class DeleteTopicCommand extends $Command<DeleteTopicCommandInput, DeleteTopicCommandOutput, SNSClientResolvedConfig> {
|
|
30
31
|
readonly input: DeleteTopicCommandInput;
|
|
32
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
33
|
constructor(input: DeleteTopicCommandInput);
|
|
32
34
|
/**
|
|
33
35
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { GetDataProtectionPolicyInput, GetDataProtectionPolicyResponse } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface GetDataProtectionPolicyCommandOutput extends GetDataProtectionP
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class GetDataProtectionPolicyCommand extends $Command<GetDataProtectionPolicyCommandInput, GetDataProtectionPolicyCommandOutput, SNSClientResolvedConfig> {
|
|
27
28
|
readonly input: GetDataProtectionPolicyCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetDataProtectionPolicyCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { GetEndpointAttributesInput, GetEndpointAttributesResponse } from "../models/models_0";
|
|
@@ -27,6 +28,7 @@ export interface GetEndpointAttributesCommandOutput extends GetEndpointAttribute
|
|
|
27
28
|
*/
|
|
28
29
|
export declare class GetEndpointAttributesCommand extends $Command<GetEndpointAttributesCommandInput, GetEndpointAttributesCommandOutput, SNSClientResolvedConfig> {
|
|
29
30
|
readonly input: GetEndpointAttributesCommandInput;
|
|
31
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
32
|
constructor(input: GetEndpointAttributesCommandInput);
|
|
31
33
|
/**
|
|
32
34
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { GetPlatformApplicationAttributesInput, GetPlatformApplicationAttributesResponse } from "../models/models_0";
|
|
@@ -27,6 +28,7 @@ export interface GetPlatformApplicationAttributesCommandOutput extends GetPlatfo
|
|
|
27
28
|
*/
|
|
28
29
|
export declare class GetPlatformApplicationAttributesCommand extends $Command<GetPlatformApplicationAttributesCommandInput, GetPlatformApplicationAttributesCommandOutput, SNSClientResolvedConfig> {
|
|
29
30
|
readonly input: GetPlatformApplicationAttributesCommandInput;
|
|
31
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
32
|
constructor(input: GetPlatformApplicationAttributesCommandInput);
|
|
31
33
|
/**
|
|
32
34
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { GetSMSAttributesInput, GetSMSAttributesResponse } from "../models/models_0";
|
|
@@ -26,6 +27,7 @@ export interface GetSMSAttributesCommandOutput extends GetSMSAttributesResponse,
|
|
|
26
27
|
*/
|
|
27
28
|
export declare class GetSMSAttributesCommand extends $Command<GetSMSAttributesCommandInput, GetSMSAttributesCommandOutput, SNSClientResolvedConfig> {
|
|
28
29
|
readonly input: GetSMSAttributesCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
31
|
constructor(input: GetSMSAttributesCommandInput);
|
|
30
32
|
/**
|
|
31
33
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { GetSMSSandboxAccountStatusInput, GetSMSSandboxAccountStatusResult } from "../models/models_0";
|
|
@@ -33,6 +34,7 @@ export interface GetSMSSandboxAccountStatusCommandOutput extends GetSMSSandboxAc
|
|
|
33
34
|
*/
|
|
34
35
|
export declare class GetSMSSandboxAccountStatusCommand extends $Command<GetSMSSandboxAccountStatusCommandInput, GetSMSSandboxAccountStatusCommandOutput, SNSClientResolvedConfig> {
|
|
35
36
|
readonly input: GetSMSSandboxAccountStatusCommandInput;
|
|
37
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
36
38
|
constructor(input: GetSMSSandboxAccountStatusCommandInput);
|
|
37
39
|
/**
|
|
38
40
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { GetSubscriptionAttributesInput, GetSubscriptionAttributesResponse } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface GetSubscriptionAttributesCommandOutput extends GetSubscriptionA
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class GetSubscriptionAttributesCommand extends $Command<GetSubscriptionAttributesCommandInput, GetSubscriptionAttributesCommandOutput, SNSClientResolvedConfig> {
|
|
27
28
|
readonly input: GetSubscriptionAttributesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetSubscriptionAttributesCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { GetTopicAttributesInput, GetTopicAttributesResponse } from "../models/models_0";
|
|
@@ -26,6 +27,7 @@ export interface GetTopicAttributesCommandOutput extends GetTopicAttributesRespo
|
|
|
26
27
|
*/
|
|
27
28
|
export declare class GetTopicAttributesCommand extends $Command<GetTopicAttributesCommandInput, GetTopicAttributesCommandOutput, SNSClientResolvedConfig> {
|
|
28
29
|
readonly input: GetTopicAttributesCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
31
|
constructor(input: GetTopicAttributesCommandInput);
|
|
30
32
|
/**
|
|
31
33
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { ListEndpointsByPlatformApplicationInput, ListEndpointsByPlatformApplicationResponse } from "../models/models_0";
|
|
@@ -34,6 +35,7 @@ export interface ListEndpointsByPlatformApplicationCommandOutput extends ListEnd
|
|
|
34
35
|
*/
|
|
35
36
|
export declare class ListEndpointsByPlatformApplicationCommand extends $Command<ListEndpointsByPlatformApplicationCommandInput, ListEndpointsByPlatformApplicationCommandOutput, SNSClientResolvedConfig> {
|
|
36
37
|
readonly input: ListEndpointsByPlatformApplicationCommandInput;
|
|
38
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
37
39
|
constructor(input: ListEndpointsByPlatformApplicationCommandInput);
|
|
38
40
|
/**
|
|
39
41
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { ListOriginationNumbersRequest, ListOriginationNumbersResult } from "../models/models_0";
|
|
@@ -27,6 +28,7 @@ export interface ListOriginationNumbersCommandOutput extends ListOriginationNumb
|
|
|
27
28
|
*/
|
|
28
29
|
export declare class ListOriginationNumbersCommand extends $Command<ListOriginationNumbersCommandInput, ListOriginationNumbersCommandOutput, SNSClientResolvedConfig> {
|
|
29
30
|
readonly input: ListOriginationNumbersCommandInput;
|
|
31
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
32
|
constructor(input: ListOriginationNumbersCommandInput);
|
|
31
33
|
/**
|
|
32
34
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { ListPhoneNumbersOptedOutInput, ListPhoneNumbersOptedOutResponse } from "../models/models_0";
|
|
@@ -32,6 +33,7 @@ export interface ListPhoneNumbersOptedOutCommandOutput extends ListPhoneNumbersO
|
|
|
32
33
|
*/
|
|
33
34
|
export declare class ListPhoneNumbersOptedOutCommand extends $Command<ListPhoneNumbersOptedOutCommandInput, ListPhoneNumbersOptedOutCommandOutput, SNSClientResolvedConfig> {
|
|
34
35
|
readonly input: ListPhoneNumbersOptedOutCommandInput;
|
|
36
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
35
37
|
constructor(input: ListPhoneNumbersOptedOutCommandInput);
|
|
36
38
|
/**
|
|
37
39
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { ListPlatformApplicationsInput, ListPlatformApplicationsResponse } from "../models/models_0";
|
|
@@ -34,6 +35,7 @@ export interface ListPlatformApplicationsCommandOutput extends ListPlatformAppli
|
|
|
34
35
|
*/
|
|
35
36
|
export declare class ListPlatformApplicationsCommand extends $Command<ListPlatformApplicationsCommandInput, ListPlatformApplicationsCommandOutput, SNSClientResolvedConfig> {
|
|
36
37
|
readonly input: ListPlatformApplicationsCommandInput;
|
|
38
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
37
39
|
constructor(input: ListPlatformApplicationsCommandInput);
|
|
38
40
|
/**
|
|
39
41
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { ListSMSSandboxPhoneNumbersInput, ListSMSSandboxPhoneNumbersResult } from "../models/models_0";
|
|
@@ -34,6 +35,7 @@ export interface ListSMSSandboxPhoneNumbersCommandOutput extends ListSMSSandboxP
|
|
|
34
35
|
*/
|
|
35
36
|
export declare class ListSMSSandboxPhoneNumbersCommand extends $Command<ListSMSSandboxPhoneNumbersCommandInput, ListSMSSandboxPhoneNumbersCommandOutput, SNSClientResolvedConfig> {
|
|
36
37
|
readonly input: ListSMSSandboxPhoneNumbersCommandInput;
|
|
38
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
37
39
|
constructor(input: ListSMSSandboxPhoneNumbersCommandInput);
|
|
38
40
|
/**
|
|
39
41
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { ListSubscriptionsByTopicInput, ListSubscriptionsByTopicResponse } from "../models/models_0";
|
|
@@ -29,6 +30,7 @@ export interface ListSubscriptionsByTopicCommandOutput extends ListSubscriptions
|
|
|
29
30
|
*/
|
|
30
31
|
export declare class ListSubscriptionsByTopicCommand extends $Command<ListSubscriptionsByTopicCommandInput, ListSubscriptionsByTopicCommandOutput, SNSClientResolvedConfig> {
|
|
31
32
|
readonly input: ListSubscriptionsByTopicCommandInput;
|
|
33
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
32
34
|
constructor(input: ListSubscriptionsByTopicCommandInput);
|
|
33
35
|
/**
|
|
34
36
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { ListSubscriptionsInput, ListSubscriptionsResponse } from "../models/models_0";
|
|
@@ -29,6 +30,7 @@ export interface ListSubscriptionsCommandOutput extends ListSubscriptionsRespons
|
|
|
29
30
|
*/
|
|
30
31
|
export declare class ListSubscriptionsCommand extends $Command<ListSubscriptionsCommandInput, ListSubscriptionsCommandOutput, SNSClientResolvedConfig> {
|
|
31
32
|
readonly input: ListSubscriptionsCommandInput;
|
|
33
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
32
34
|
constructor(input: ListSubscriptionsCommandInput);
|
|
33
35
|
/**
|
|
34
36
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
@@ -26,6 +27,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
27
|
*/
|
|
27
28
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SNSClientResolvedConfig> {
|
|
28
29
|
readonly input: ListTagsForResourceCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
31
|
constructor(input: ListTagsForResourceCommandInput);
|
|
30
32
|
/**
|
|
31
33
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { ListTopicsInput, ListTopicsResponse } from "../models/models_0";
|
|
@@ -29,6 +30,7 @@ export interface ListTopicsCommandOutput extends ListTopicsResponse, __MetadataB
|
|
|
29
30
|
*/
|
|
30
31
|
export declare class ListTopicsCommand extends $Command<ListTopicsCommandInput, ListTopicsCommandOutput, SNSClientResolvedConfig> {
|
|
31
32
|
readonly input: ListTopicsCommandInput;
|
|
33
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
32
34
|
constructor(input: ListTopicsCommandInput);
|
|
33
35
|
/**
|
|
34
36
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { OptInPhoneNumberInput, OptInPhoneNumberResponse } from "../models/models_0";
|
|
@@ -27,6 +28,7 @@ export interface OptInPhoneNumberCommandOutput extends OptInPhoneNumberResponse,
|
|
|
27
28
|
*/
|
|
28
29
|
export declare class OptInPhoneNumberCommand extends $Command<OptInPhoneNumberCommandInput, OptInPhoneNumberCommandOutput, SNSClientResolvedConfig> {
|
|
29
30
|
readonly input: OptInPhoneNumberCommandInput;
|
|
31
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
32
|
constructor(input: OptInPhoneNumberCommandInput);
|
|
31
33
|
/**
|
|
32
34
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { PublishBatchInput, PublishBatchResponse } from "../models/models_0";
|
|
@@ -34,6 +35,7 @@ export interface PublishBatchCommandOutput extends PublishBatchResponse, __Metad
|
|
|
34
35
|
*/
|
|
35
36
|
export declare class PublishBatchCommand extends $Command<PublishBatchCommandInput, PublishBatchCommandOutput, SNSClientResolvedConfig> {
|
|
36
37
|
readonly input: PublishBatchCommandInput;
|
|
38
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
37
39
|
constructor(input: PublishBatchCommandInput);
|
|
38
40
|
/**
|
|
39
41
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { PublishInput, PublishResponse } from "../models/models_0";
|
|
@@ -41,6 +42,7 @@ export interface PublishCommandOutput extends PublishResponse, __MetadataBearer
|
|
|
41
42
|
*/
|
|
42
43
|
export declare class PublishCommand extends $Command<PublishCommandInput, PublishCommandOutput, SNSClientResolvedConfig> {
|
|
43
44
|
readonly input: PublishCommandInput;
|
|
45
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
46
|
constructor(input: PublishCommandInput);
|
|
45
47
|
/**
|
|
46
48
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { PutDataProtectionPolicyInput } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface PutDataProtectionPolicyCommandOutput extends __MetadataBearer {
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class PutDataProtectionPolicyCommand extends $Command<PutDataProtectionPolicyCommandInput, PutDataProtectionPolicyCommandOutput, SNSClientResolvedConfig> {
|
|
27
28
|
readonly input: PutDataProtectionPolicyCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: PutDataProtectionPolicyCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { RemovePermissionInput } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface RemovePermissionCommandOutput extends __MetadataBearer {
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class RemovePermissionCommand extends $Command<RemovePermissionCommandInput, RemovePermissionCommandOutput, SNSClientResolvedConfig> {
|
|
27
28
|
readonly input: RemovePermissionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: RemovePermissionCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { SetEndpointAttributesInput } from "../models/models_0";
|
|
@@ -27,6 +28,7 @@ export interface SetEndpointAttributesCommandOutput extends __MetadataBearer {
|
|
|
27
28
|
*/
|
|
28
29
|
export declare class SetEndpointAttributesCommand extends $Command<SetEndpointAttributesCommandInput, SetEndpointAttributesCommandOutput, SNSClientResolvedConfig> {
|
|
29
30
|
readonly input: SetEndpointAttributesCommandInput;
|
|
31
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
32
|
constructor(input: SetEndpointAttributesCommandInput);
|
|
31
33
|
/**
|
|
32
34
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { SetPlatformApplicationAttributesInput } from "../models/models_0";
|
|
@@ -29,6 +30,7 @@ export interface SetPlatformApplicationAttributesCommandOutput extends __Metadat
|
|
|
29
30
|
*/
|
|
30
31
|
export declare class SetPlatformApplicationAttributesCommand extends $Command<SetPlatformApplicationAttributesCommandInput, SetPlatformApplicationAttributesCommandOutput, SNSClientResolvedConfig> {
|
|
31
32
|
readonly input: SetPlatformApplicationAttributesCommandInput;
|
|
33
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
32
34
|
constructor(input: SetPlatformApplicationAttributesCommandInput);
|
|
33
35
|
/**
|
|
34
36
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { SetSMSAttributesInput, SetSMSAttributesResponse } from "../models/models_0";
|
|
@@ -35,6 +36,7 @@ export interface SetSMSAttributesCommandOutput extends SetSMSAttributesResponse,
|
|
|
35
36
|
*/
|
|
36
37
|
export declare class SetSMSAttributesCommand extends $Command<SetSMSAttributesCommandInput, SetSMSAttributesCommandOutput, SNSClientResolvedConfig> {
|
|
37
38
|
readonly input: SetSMSAttributesCommandInput;
|
|
39
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
38
40
|
constructor(input: SetSMSAttributesCommandInput);
|
|
39
41
|
/**
|
|
40
42
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { SetSubscriptionAttributesInput } from "../models/models_0";
|
|
@@ -26,6 +27,7 @@ export interface SetSubscriptionAttributesCommandOutput extends __MetadataBearer
|
|
|
26
27
|
*/
|
|
27
28
|
export declare class SetSubscriptionAttributesCommand extends $Command<SetSubscriptionAttributesCommandInput, SetSubscriptionAttributesCommandOutput, SNSClientResolvedConfig> {
|
|
28
29
|
readonly input: SetSubscriptionAttributesCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
31
|
constructor(input: SetSubscriptionAttributesCommandInput);
|
|
30
32
|
/**
|
|
31
33
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { SetTopicAttributesInput } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface SetTopicAttributesCommandOutput extends __MetadataBearer {
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class SetTopicAttributesCommand extends $Command<SetTopicAttributesCommandInput, SetTopicAttributesCommandOutput, SNSClientResolvedConfig> {
|
|
27
28
|
readonly input: SetTopicAttributesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: SetTopicAttributesCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { SubscribeInput, SubscribeResponse } from "../models/models_0";
|
|
@@ -30,6 +31,7 @@ export interface SubscribeCommandOutput extends SubscribeResponse, __MetadataBea
|
|
|
30
31
|
*/
|
|
31
32
|
export declare class SubscribeCommand extends $Command<SubscribeCommandInput, SubscribeCommandOutput, SNSClientResolvedConfig> {
|
|
32
33
|
readonly input: SubscribeCommandInput;
|
|
34
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
33
35
|
constructor(input: SubscribeCommandInput);
|
|
34
36
|
/**
|
|
35
37
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
@@ -47,6 +48,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
47
48
|
*/
|
|
48
49
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SNSClientResolvedConfig> {
|
|
49
50
|
readonly input: TagResourceCommandInput;
|
|
51
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
52
|
constructor(input: TagResourceCommandInput);
|
|
51
53
|
/**
|
|
52
54
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { UnsubscribeInput } from "../models/models_0";
|
|
@@ -31,6 +32,7 @@ export interface UnsubscribeCommandOutput extends __MetadataBearer {
|
|
|
31
32
|
*/
|
|
32
33
|
export declare class UnsubscribeCommand extends $Command<UnsubscribeCommandInput, UnsubscribeCommandOutput, SNSClientResolvedConfig> {
|
|
33
34
|
readonly input: UnsubscribeCommandInput;
|
|
35
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
34
36
|
constructor(input: UnsubscribeCommandInput);
|
|
35
37
|
/**
|
|
36
38
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
@@ -26,6 +27,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
27
|
*/
|
|
27
28
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SNSClientResolvedConfig> {
|
|
28
29
|
readonly input: UntagResourceCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
31
|
constructor(input: UntagResourceCommandInput);
|
|
30
32
|
/**
|
|
31
33
|
* @internal
|
|
@@ -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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { VerifySMSSandboxPhoneNumberInput, VerifySMSSandboxPhoneNumberResult } from "../models/models_0";
|
|
@@ -33,6 +34,7 @@ export interface VerifySMSSandboxPhoneNumberCommandOutput extends VerifySMSSandb
|
|
|
33
34
|
*/
|
|
34
35
|
export declare class VerifySMSSandboxPhoneNumberCommand extends $Command<VerifySMSSandboxPhoneNumberCommandInput, VerifySMSSandboxPhoneNumberCommandOutput, SNSClientResolvedConfig> {
|
|
35
36
|
readonly input: VerifySMSSandboxPhoneNumberCommandInput;
|
|
37
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
36
38
|
constructor(input: VerifySMSSandboxPhoneNumberCommandInput);
|
|
37
39
|
/**
|
|
38
40
|
* @internal
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EndpointParameters as __EndpointParameters, Provider } from "@aws-sdk/types";
|
|
2
|
+
export interface ClientInputEndpointParameters {
|
|
3
|
+
region?: string | Provider<string>;
|
|
4
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
5
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
6
|
+
endpoint?: string | Provider<string>;
|
|
7
|
+
}
|
|
8
|
+
export declare type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
9
|
+
defaultSigningName: string;
|
|
10
|
+
};
|
|
11
|
+
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
12
|
+
defaultSigningName: string;
|
|
13
|
+
};
|
|
14
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
15
|
+
Region?: string;
|
|
16
|
+
UseDualStack?: boolean;
|
|
17
|
+
UseFIPS?: boolean;
|
|
18
|
+
Endpoint?: string;
|
|
19
|
+
}
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: SNSClientConfig) => {
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: SNSClientConfig) => {
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -23,10 +23,12 @@ export declare const getRuntimeConfig: (config: SNSClientConfig) => {
|
|
|
23
23
|
serviceId: string;
|
|
24
24
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
26
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
27
|
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
29
|
-
endpoint?: string | import("@aws-sdk/types").Endpoint
|
|
28
|
+
endpoint?: string | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Endpoint & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").EndpointV2 & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@aws-sdk/types").Provider<string>) | undefined;
|
|
29
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
31
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
30
32
|
tls?: boolean | undefined;
|
|
31
33
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
34
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -6,8 +6,10 @@ import { SNSClientConfig } from "./SNSClient";
|
|
|
6
6
|
export declare const getRuntimeConfig: (config: SNSClientConfig) => {
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
disableHostPrefix: boolean;
|
|
9
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
10
|
+
logger?: __Logger | undefined;
|
|
11
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
9
12
|
logger: __Logger;
|
|
10
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
11
13
|
serviceId: string;
|
|
12
14
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
13
15
|
};
|