@aws-sdk/client-sns 3.952.0 → 3.953.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +591 -409
- package/dist-cjs/runtimeConfig.shared.js +7 -6
- package/dist-es/commands/AddPermissionCommand.js +2 -2
- package/dist-es/commands/CheckIfPhoneNumberIsOptedOutCommand.js +2 -2
- package/dist-es/commands/ConfirmSubscriptionCommand.js +2 -2
- package/dist-es/commands/CreatePlatformApplicationCommand.js +2 -2
- package/dist-es/commands/CreatePlatformEndpointCommand.js +2 -2
- package/dist-es/commands/CreateSMSSandboxPhoneNumberCommand.js +2 -2
- package/dist-es/commands/CreateTopicCommand.js +2 -2
- package/dist-es/commands/DeleteEndpointCommand.js +2 -2
- package/dist-es/commands/DeletePlatformApplicationCommand.js +2 -2
- package/dist-es/commands/DeleteSMSSandboxPhoneNumberCommand.js +2 -2
- package/dist-es/commands/DeleteTopicCommand.js +2 -2
- package/dist-es/commands/GetDataProtectionPolicyCommand.js +2 -2
- package/dist-es/commands/GetEndpointAttributesCommand.js +2 -2
- package/dist-es/commands/GetPlatformApplicationAttributesCommand.js +2 -2
- package/dist-es/commands/GetSMSAttributesCommand.js +2 -2
- package/dist-es/commands/GetSMSSandboxAccountStatusCommand.js +2 -2
- package/dist-es/commands/GetSubscriptionAttributesCommand.js +2 -2
- package/dist-es/commands/GetTopicAttributesCommand.js +2 -2
- package/dist-es/commands/ListEndpointsByPlatformApplicationCommand.js +2 -2
- package/dist-es/commands/ListOriginationNumbersCommand.js +2 -2
- package/dist-es/commands/ListPhoneNumbersOptedOutCommand.js +2 -2
- package/dist-es/commands/ListPlatformApplicationsCommand.js +2 -2
- package/dist-es/commands/ListSMSSandboxPhoneNumbersCommand.js +2 -2
- package/dist-es/commands/ListSubscriptionsByTopicCommand.js +2 -2
- package/dist-es/commands/ListSubscriptionsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListTopicsCommand.js +2 -2
- package/dist-es/commands/OptInPhoneNumberCommand.js +2 -2
- package/dist-es/commands/PublishBatchCommand.js +2 -2
- package/dist-es/commands/PublishCommand.js +2 -2
- package/dist-es/commands/PutDataProtectionPolicyCommand.js +2 -2
- package/dist-es/commands/RemovePermissionCommand.js +2 -2
- package/dist-es/commands/SetEndpointAttributesCommand.js +2 -2
- package/dist-es/commands/SetPlatformApplicationAttributesCommand.js +2 -2
- package/dist-es/commands/SetSMSAttributesCommand.js +2 -2
- package/dist-es/commands/SetSubscriptionAttributesCommand.js +2 -2
- package/dist-es/commands/SetTopicAttributesCommand.js +2 -2
- package/dist-es/commands/SubscribeCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UnsubscribeCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/VerifySMSSandboxPhoneNumberCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -6
- package/dist-es/schemas/schemas_0.js +298 -277
- package/dist-types/SNSClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +162 -185
- package/dist-types/ts3.4/SNSClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +161 -187
- package/package.json +34 -34
|
@@ -26,12 +26,13 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsQueryProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.sns",
|
|
32
|
+
xmlNamespace: "http://sns.amazonaws.com/doc/2010-03-31/",
|
|
33
|
+
version: "2010-03-31",
|
|
34
|
+
serviceTarget: "AmazonSimpleNotificationService",
|
|
35
|
+
},
|
|
35
36
|
serviceId: config?.serviceId ?? "SNS",
|
|
36
37
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
38
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AddPermission } from "../schemas/schemas_0";
|
|
4
|
+
import { AddPermission$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AddPermissionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AddPermissionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "AddPermission", {})
|
|
13
13
|
.n("SNSClient", "AddPermissionCommand")
|
|
14
|
-
.sc(AddPermission)
|
|
14
|
+
.sc(AddPermission$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CheckIfPhoneNumberIsOptedOut } from "../schemas/schemas_0";
|
|
4
|
+
import { CheckIfPhoneNumberIsOptedOut$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CheckIfPhoneNumberIsOptedOutCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CheckIfPhoneNumberIsOptedOutCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "CheckIfPhoneNumberIsOptedOut", {})
|
|
13
13
|
.n("SNSClient", "CheckIfPhoneNumberIsOptedOutCommand")
|
|
14
|
-
.sc(CheckIfPhoneNumberIsOptedOut)
|
|
14
|
+
.sc(CheckIfPhoneNumberIsOptedOut$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ConfirmSubscription } from "../schemas/schemas_0";
|
|
4
|
+
import { ConfirmSubscription$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ConfirmSubscriptionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ConfirmSubscriptionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "ConfirmSubscription", {})
|
|
13
13
|
.n("SNSClient", "ConfirmSubscriptionCommand")
|
|
14
|
-
.sc(ConfirmSubscription)
|
|
14
|
+
.sc(ConfirmSubscription$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreatePlatformApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { CreatePlatformApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreatePlatformApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreatePlatformApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "CreatePlatformApplication", {})
|
|
13
13
|
.n("SNSClient", "CreatePlatformApplicationCommand")
|
|
14
|
-
.sc(CreatePlatformApplication)
|
|
14
|
+
.sc(CreatePlatformApplication$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreatePlatformEndpoint } from "../schemas/schemas_0";
|
|
4
|
+
import { CreatePlatformEndpoint$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreatePlatformEndpointCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreatePlatformEndpointCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "CreatePlatformEndpoint", {})
|
|
13
13
|
.n("SNSClient", "CreatePlatformEndpointCommand")
|
|
14
|
-
.sc(CreatePlatformEndpoint)
|
|
14
|
+
.sc(CreatePlatformEndpoint$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateSMSSandboxPhoneNumber } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateSMSSandboxPhoneNumber$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateSMSSandboxPhoneNumberCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateSMSSandboxPhoneNumberCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "CreateSMSSandboxPhoneNumber", {})
|
|
13
13
|
.n("SNSClient", "CreateSMSSandboxPhoneNumberCommand")
|
|
14
|
-
.sc(CreateSMSSandboxPhoneNumber)
|
|
14
|
+
.sc(CreateSMSSandboxPhoneNumber$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateTopic } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateTopic$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateTopicCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateTopicCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "CreateTopic", {})
|
|
13
13
|
.n("SNSClient", "CreateTopicCommand")
|
|
14
|
-
.sc(CreateTopic)
|
|
14
|
+
.sc(CreateTopic$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteEndpoint } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteEndpoint$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteEndpointCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteEndpointCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "DeleteEndpoint", {})
|
|
13
13
|
.n("SNSClient", "DeleteEndpointCommand")
|
|
14
|
-
.sc(DeleteEndpoint)
|
|
14
|
+
.sc(DeleteEndpoint$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeletePlatformApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePlatformApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePlatformApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePlatformApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "DeletePlatformApplication", {})
|
|
13
13
|
.n("SNSClient", "DeletePlatformApplicationCommand")
|
|
14
|
-
.sc(DeletePlatformApplication)
|
|
14
|
+
.sc(DeletePlatformApplication$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteSMSSandboxPhoneNumber } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSMSSandboxPhoneNumber$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSMSSandboxPhoneNumberCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSMSSandboxPhoneNumberCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "DeleteSMSSandboxPhoneNumber", {})
|
|
13
13
|
.n("SNSClient", "DeleteSMSSandboxPhoneNumberCommand")
|
|
14
|
-
.sc(DeleteSMSSandboxPhoneNumber)
|
|
14
|
+
.sc(DeleteSMSSandboxPhoneNumber$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteTopic } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteTopic$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteTopicCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteTopicCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "DeleteTopic", {})
|
|
13
13
|
.n("SNSClient", "DeleteTopicCommand")
|
|
14
|
-
.sc(DeleteTopic)
|
|
14
|
+
.sc(DeleteTopic$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDataProtectionPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDataProtectionPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDataProtectionPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDataProtectionPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "GetDataProtectionPolicy", {})
|
|
13
13
|
.n("SNSClient", "GetDataProtectionPolicyCommand")
|
|
14
|
-
.sc(GetDataProtectionPolicy)
|
|
14
|
+
.sc(GetDataProtectionPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetEndpointAttributes } from "../schemas/schemas_0";
|
|
4
|
+
import { GetEndpointAttributes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetEndpointAttributesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetEndpointAttributesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "GetEndpointAttributes", {})
|
|
13
13
|
.n("SNSClient", "GetEndpointAttributesCommand")
|
|
14
|
-
.sc(GetEndpointAttributes)
|
|
14
|
+
.sc(GetEndpointAttributes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetPlatformApplicationAttributes } from "../schemas/schemas_0";
|
|
4
|
+
import { GetPlatformApplicationAttributes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetPlatformApplicationAttributesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetPlatformApplicationAttributesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "GetPlatformApplicationAttributes", {})
|
|
13
13
|
.n("SNSClient", "GetPlatformApplicationAttributesCommand")
|
|
14
|
-
.sc(GetPlatformApplicationAttributes)
|
|
14
|
+
.sc(GetPlatformApplicationAttributes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSMSAttributes } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSMSAttributes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSMSAttributesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSMSAttributesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "GetSMSAttributes", {})
|
|
13
13
|
.n("SNSClient", "GetSMSAttributesCommand")
|
|
14
|
-
.sc(GetSMSAttributes)
|
|
14
|
+
.sc(GetSMSAttributes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSMSSandboxAccountStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSMSSandboxAccountStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSMSSandboxAccountStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSMSSandboxAccountStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "GetSMSSandboxAccountStatus", {})
|
|
13
13
|
.n("SNSClient", "GetSMSSandboxAccountStatusCommand")
|
|
14
|
-
.sc(GetSMSSandboxAccountStatus)
|
|
14
|
+
.sc(GetSMSSandboxAccountStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSubscriptionAttributes } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSubscriptionAttributes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSubscriptionAttributesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSubscriptionAttributesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "GetSubscriptionAttributes", {})
|
|
13
13
|
.n("SNSClient", "GetSubscriptionAttributesCommand")
|
|
14
|
-
.sc(GetSubscriptionAttributes)
|
|
14
|
+
.sc(GetSubscriptionAttributes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTopicAttributes } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTopicAttributes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTopicAttributesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTopicAttributesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "GetTopicAttributes", {})
|
|
13
13
|
.n("SNSClient", "GetTopicAttributesCommand")
|
|
14
|
-
.sc(GetTopicAttributes)
|
|
14
|
+
.sc(GetTopicAttributes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListEndpointsByPlatformApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { ListEndpointsByPlatformApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListEndpointsByPlatformApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListEndpointsByPlatformApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "ListEndpointsByPlatformApplication", {})
|
|
13
13
|
.n("SNSClient", "ListEndpointsByPlatformApplicationCommand")
|
|
14
|
-
.sc(ListEndpointsByPlatformApplication)
|
|
14
|
+
.sc(ListEndpointsByPlatformApplication$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListOriginationNumbers } from "../schemas/schemas_0";
|
|
4
|
+
import { ListOriginationNumbers$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListOriginationNumbersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListOriginationNumbersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "ListOriginationNumbers", {})
|
|
13
13
|
.n("SNSClient", "ListOriginationNumbersCommand")
|
|
14
|
-
.sc(ListOriginationNumbers)
|
|
14
|
+
.sc(ListOriginationNumbers$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPhoneNumbersOptedOut } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPhoneNumbersOptedOut$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPhoneNumbersOptedOutCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPhoneNumbersOptedOutCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "ListPhoneNumbersOptedOut", {})
|
|
13
13
|
.n("SNSClient", "ListPhoneNumbersOptedOutCommand")
|
|
14
|
-
.sc(ListPhoneNumbersOptedOut)
|
|
14
|
+
.sc(ListPhoneNumbersOptedOut$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPlatformApplications } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPlatformApplications$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPlatformApplicationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPlatformApplicationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "ListPlatformApplications", {})
|
|
13
13
|
.n("SNSClient", "ListPlatformApplicationsCommand")
|
|
14
|
-
.sc(ListPlatformApplications)
|
|
14
|
+
.sc(ListPlatformApplications$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSMSSandboxPhoneNumbers } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSMSSandboxPhoneNumbers$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSMSSandboxPhoneNumbersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSMSSandboxPhoneNumbersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "ListSMSSandboxPhoneNumbers", {})
|
|
13
13
|
.n("SNSClient", "ListSMSSandboxPhoneNumbersCommand")
|
|
14
|
-
.sc(ListSMSSandboxPhoneNumbers)
|
|
14
|
+
.sc(ListSMSSandboxPhoneNumbers$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSubscriptionsByTopic } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSubscriptionsByTopic$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSubscriptionsByTopicCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSubscriptionsByTopicCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "ListSubscriptionsByTopic", {})
|
|
13
13
|
.n("SNSClient", "ListSubscriptionsByTopicCommand")
|
|
14
|
-
.sc(ListSubscriptionsByTopic)
|
|
14
|
+
.sc(ListSubscriptionsByTopic$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSubscriptions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSubscriptions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSubscriptionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSubscriptionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "ListSubscriptions", {})
|
|
13
13
|
.n("SNSClient", "ListSubscriptionsCommand")
|
|
14
|
-
.sc(ListSubscriptions)
|
|
14
|
+
.sc(ListSubscriptions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "ListTagsForResource", {})
|
|
13
13
|
.n("SNSClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTopics } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTopics$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTopicsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTopicsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "ListTopics", {})
|
|
13
13
|
.n("SNSClient", "ListTopicsCommand")
|
|
14
|
-
.sc(ListTopics)
|
|
14
|
+
.sc(ListTopics$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { OptInPhoneNumber } from "../schemas/schemas_0";
|
|
4
|
+
import { OptInPhoneNumber$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class OptInPhoneNumberCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class OptInPhoneNumberCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "OptInPhoneNumber", {})
|
|
13
13
|
.n("SNSClient", "OptInPhoneNumberCommand")
|
|
14
|
-
.sc(OptInPhoneNumber)
|
|
14
|
+
.sc(OptInPhoneNumber$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PublishBatch } from "../schemas/schemas_0";
|
|
4
|
+
import { PublishBatch$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PublishBatchCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PublishBatchCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "PublishBatch", {})
|
|
13
13
|
.n("SNSClient", "PublishBatchCommand")
|
|
14
|
-
.sc(PublishBatch)
|
|
14
|
+
.sc(PublishBatch$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { Publish } from "../schemas/schemas_0";
|
|
4
|
+
import { Publish$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PublishCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PublishCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "Publish", {})
|
|
13
13
|
.n("SNSClient", "PublishCommand")
|
|
14
|
-
.sc(Publish)
|
|
14
|
+
.sc(Publish$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutDataProtectionPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { PutDataProtectionPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutDataProtectionPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutDataProtectionPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "PutDataProtectionPolicy", {})
|
|
13
13
|
.n("SNSClient", "PutDataProtectionPolicyCommand")
|
|
14
|
-
.sc(PutDataProtectionPolicy)
|
|
14
|
+
.sc(PutDataProtectionPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RemovePermission } from "../schemas/schemas_0";
|
|
4
|
+
import { RemovePermission$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RemovePermissionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RemovePermissionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "RemovePermission", {})
|
|
13
13
|
.n("SNSClient", "RemovePermissionCommand")
|
|
14
|
-
.sc(RemovePermission)
|
|
14
|
+
.sc(RemovePermission$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SetEndpointAttributes } from "../schemas/schemas_0";
|
|
4
|
+
import { SetEndpointAttributes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SetEndpointAttributesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SetEndpointAttributesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "SetEndpointAttributes", {})
|
|
13
13
|
.n("SNSClient", "SetEndpointAttributesCommand")
|
|
14
|
-
.sc(SetEndpointAttributes)
|
|
14
|
+
.sc(SetEndpointAttributes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SetPlatformApplicationAttributes } from "../schemas/schemas_0";
|
|
4
|
+
import { SetPlatformApplicationAttributes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SetPlatformApplicationAttributesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SetPlatformApplicationAttributesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "SetPlatformApplicationAttributes", {})
|
|
13
13
|
.n("SNSClient", "SetPlatformApplicationAttributesCommand")
|
|
14
|
-
.sc(SetPlatformApplicationAttributes)
|
|
14
|
+
.sc(SetPlatformApplicationAttributes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SetSMSAttributes } from "../schemas/schemas_0";
|
|
4
|
+
import { SetSMSAttributes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SetSMSAttributesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SetSMSAttributesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonSimpleNotificationService", "SetSMSAttributes", {})
|
|
13
13
|
.n("SNSClient", "SetSMSAttributesCommand")
|
|
14
|
-
.sc(SetSMSAttributes)
|
|
14
|
+
.sc(SetSMSAttributes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|