@aws-sdk/client-pinpoint-sms-voice 3.1077.0 → 3.1078.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 +16 -83
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/CreateConfigurationSetCommand.js +2 -14
- package/dist-es/commands/CreateConfigurationSetEventDestinationCommand.js +2 -14
- package/dist-es/commands/DeleteConfigurationSetCommand.js +2 -14
- package/dist-es/commands/DeleteConfigurationSetEventDestinationCommand.js +2 -14
- package/dist-es/commands/GetConfigurationSetEventDestinationsCommand.js +2 -14
- package/dist-es/commands/ListConfigurationSetsCommand.js +2 -14
- package/dist-es/commands/SendVoiceMessageCommand.js +2 -14
- package/dist-es/commands/UpdateConfigurationSetEventDestinationCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/CreateConfigurationSetCommand.d.ts +3 -8
- package/dist-types/commands/CreateConfigurationSetEventDestinationCommand.d.ts +3 -8
- package/dist-types/commands/DeleteConfigurationSetCommand.d.ts +3 -8
- package/dist-types/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +3 -8
- package/dist-types/commands/GetConfigurationSetEventDestinationsCommand.d.ts +3 -8
- package/dist-types/commands/ListConfigurationSetsCommand.d.ts +3 -8
- package/dist-types/commands/SendVoiceMessageCommand.d.ts +3 -8
- package/dist-types/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/CreateConfigurationSetCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateConfigurationSetEventDestinationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteConfigurationSetCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetConfigurationSetEventDestinationsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListConfigurationSetsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SendVoiceMessageCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
2
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require("@smithy/core");
|
|
3
|
-
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client,
|
|
4
|
-
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
|
|
4
|
+
const { Command: $Command } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = $Command;
|
|
5
6
|
exports.__Client = Client;
|
|
6
7
|
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
8
|
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
@@ -68,7 +69,7 @@ const commonParams = {
|
|
|
68
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
69
70
|
};
|
|
70
71
|
|
|
71
|
-
var version = "3.
|
|
72
|
+
var version = "3.1077.0";
|
|
72
73
|
var packageInfo = {
|
|
73
74
|
version: version};
|
|
74
75
|
|
|
@@ -637,100 +638,32 @@ class PinpointSMSVoiceClient extends Client {
|
|
|
637
638
|
}
|
|
638
639
|
}
|
|
639
640
|
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
})
|
|
646
|
-
.s("PinpointSMSVoice", "CreateConfigurationSet", {})
|
|
647
|
-
.n("PinpointSMSVoiceClient", "CreateConfigurationSetCommand")
|
|
648
|
-
.sc(CreateConfigurationSet$)
|
|
649
|
-
.build() {
|
|
641
|
+
const command = makeBuilder(commonParams, "PinpointSMSVoice", "PinpointSMSVoiceClient", getEndpointPlugin);
|
|
642
|
+
const _ep0 = {};
|
|
643
|
+
const _mw0 = (Command, cs, config, o) => [];
|
|
644
|
+
|
|
645
|
+
class CreateConfigurationSetCommand extends command(_ep0, _mw0, "CreateConfigurationSet", CreateConfigurationSet$) {
|
|
650
646
|
}
|
|
651
647
|
|
|
652
|
-
class CreateConfigurationSetEventDestinationCommand extends
|
|
653
|
-
.classBuilder()
|
|
654
|
-
.ep(commonParams)
|
|
655
|
-
.m(function (Command, cs, config, o) {
|
|
656
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
657
|
-
})
|
|
658
|
-
.s("PinpointSMSVoice", "CreateConfigurationSetEventDestination", {})
|
|
659
|
-
.n("PinpointSMSVoiceClient", "CreateConfigurationSetEventDestinationCommand")
|
|
660
|
-
.sc(CreateConfigurationSetEventDestination$)
|
|
661
|
-
.build() {
|
|
648
|
+
class CreateConfigurationSetEventDestinationCommand extends command(_ep0, _mw0, "CreateConfigurationSetEventDestination", CreateConfigurationSetEventDestination$) {
|
|
662
649
|
}
|
|
663
650
|
|
|
664
|
-
class DeleteConfigurationSetCommand extends
|
|
665
|
-
.classBuilder()
|
|
666
|
-
.ep(commonParams)
|
|
667
|
-
.m(function (Command, cs, config, o) {
|
|
668
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
669
|
-
})
|
|
670
|
-
.s("PinpointSMSVoice", "DeleteConfigurationSet", {})
|
|
671
|
-
.n("PinpointSMSVoiceClient", "DeleteConfigurationSetCommand")
|
|
672
|
-
.sc(DeleteConfigurationSet$)
|
|
673
|
-
.build() {
|
|
651
|
+
class DeleteConfigurationSetCommand extends command(_ep0, _mw0, "DeleteConfigurationSet", DeleteConfigurationSet$) {
|
|
674
652
|
}
|
|
675
653
|
|
|
676
|
-
class DeleteConfigurationSetEventDestinationCommand extends
|
|
677
|
-
.classBuilder()
|
|
678
|
-
.ep(commonParams)
|
|
679
|
-
.m(function (Command, cs, config, o) {
|
|
680
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
681
|
-
})
|
|
682
|
-
.s("PinpointSMSVoice", "DeleteConfigurationSetEventDestination", {})
|
|
683
|
-
.n("PinpointSMSVoiceClient", "DeleteConfigurationSetEventDestinationCommand")
|
|
684
|
-
.sc(DeleteConfigurationSetEventDestination$)
|
|
685
|
-
.build() {
|
|
654
|
+
class DeleteConfigurationSetEventDestinationCommand extends command(_ep0, _mw0, "DeleteConfigurationSetEventDestination", DeleteConfigurationSetEventDestination$) {
|
|
686
655
|
}
|
|
687
656
|
|
|
688
|
-
class GetConfigurationSetEventDestinationsCommand extends
|
|
689
|
-
.classBuilder()
|
|
690
|
-
.ep(commonParams)
|
|
691
|
-
.m(function (Command, cs, config, o) {
|
|
692
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
693
|
-
})
|
|
694
|
-
.s("PinpointSMSVoice", "GetConfigurationSetEventDestinations", {})
|
|
695
|
-
.n("PinpointSMSVoiceClient", "GetConfigurationSetEventDestinationsCommand")
|
|
696
|
-
.sc(GetConfigurationSetEventDestinations$)
|
|
697
|
-
.build() {
|
|
657
|
+
class GetConfigurationSetEventDestinationsCommand extends command(_ep0, _mw0, "GetConfigurationSetEventDestinations", GetConfigurationSetEventDestinations$) {
|
|
698
658
|
}
|
|
699
659
|
|
|
700
|
-
class ListConfigurationSetsCommand extends
|
|
701
|
-
.classBuilder()
|
|
702
|
-
.ep(commonParams)
|
|
703
|
-
.m(function (Command, cs, config, o) {
|
|
704
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
705
|
-
})
|
|
706
|
-
.s("PinpointSMSVoice", "ListConfigurationSets", {})
|
|
707
|
-
.n("PinpointSMSVoiceClient", "ListConfigurationSetsCommand")
|
|
708
|
-
.sc(ListConfigurationSets$)
|
|
709
|
-
.build() {
|
|
660
|
+
class ListConfigurationSetsCommand extends command(_ep0, _mw0, "ListConfigurationSets", ListConfigurationSets$) {
|
|
710
661
|
}
|
|
711
662
|
|
|
712
|
-
class SendVoiceMessageCommand extends
|
|
713
|
-
.classBuilder()
|
|
714
|
-
.ep(commonParams)
|
|
715
|
-
.m(function (Command, cs, config, o) {
|
|
716
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
717
|
-
})
|
|
718
|
-
.s("PinpointSMSVoice", "SendVoiceMessage", {})
|
|
719
|
-
.n("PinpointSMSVoiceClient", "SendVoiceMessageCommand")
|
|
720
|
-
.sc(SendVoiceMessage$)
|
|
721
|
-
.build() {
|
|
663
|
+
class SendVoiceMessageCommand extends command(_ep0, _mw0, "SendVoiceMessage", SendVoiceMessage$) {
|
|
722
664
|
}
|
|
723
665
|
|
|
724
|
-
class UpdateConfigurationSetEventDestinationCommand extends
|
|
725
|
-
.classBuilder()
|
|
726
|
-
.ep(commonParams)
|
|
727
|
-
.m(function (Command, cs, config, o) {
|
|
728
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
729
|
-
})
|
|
730
|
-
.s("PinpointSMSVoice", "UpdateConfigurationSetEventDestination", {})
|
|
731
|
-
.n("PinpointSMSVoiceClient", "UpdateConfigurationSetEventDestinationCommand")
|
|
732
|
-
.sc(UpdateConfigurationSetEventDestination$)
|
|
733
|
-
.build() {
|
|
666
|
+
class UpdateConfigurationSetEventDestinationCommand extends command(_ep0, _mw0, "UpdateConfigurationSetEventDestination", UpdateConfigurationSetEventDestination$) {
|
|
734
667
|
}
|
|
735
668
|
|
|
736
669
|
const commands = {
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { makeBuilder } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "./endpoint/EndpointParameters";
|
|
4
|
+
export const command = makeBuilder(commonParams, "PinpointSMSVoice", "PinpointSMSVoiceClient", getEndpointPlugin);
|
|
5
|
+
export const _ep0 = {};
|
|
6
|
+
export const _mw0 = (Command, cs, config, o) => [];
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { CreateConfigurationSet$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class CreateConfigurationSetCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("PinpointSMSVoice", "CreateConfigurationSet", {})
|
|
13
|
-
.n("PinpointSMSVoiceClient", "CreateConfigurationSetCommand")
|
|
14
|
-
.sc(CreateConfigurationSet$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class CreateConfigurationSetCommand extends command(_ep0, _mw0, "CreateConfigurationSet", CreateConfigurationSet$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { CreateConfigurationSetEventDestination$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class CreateConfigurationSetEventDestinationCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("PinpointSMSVoice", "CreateConfigurationSetEventDestination", {})
|
|
13
|
-
.n("PinpointSMSVoiceClient", "CreateConfigurationSetEventDestinationCommand")
|
|
14
|
-
.sc(CreateConfigurationSetEventDestination$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class CreateConfigurationSetEventDestinationCommand extends command(_ep0, _mw0, "CreateConfigurationSetEventDestination", CreateConfigurationSetEventDestination$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { DeleteConfigurationSet$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class DeleteConfigurationSetCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("PinpointSMSVoice", "DeleteConfigurationSet", {})
|
|
13
|
-
.n("PinpointSMSVoiceClient", "DeleteConfigurationSetCommand")
|
|
14
|
-
.sc(DeleteConfigurationSet$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class DeleteConfigurationSetCommand extends command(_ep0, _mw0, "DeleteConfigurationSet", DeleteConfigurationSet$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { DeleteConfigurationSetEventDestination$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class DeleteConfigurationSetEventDestinationCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("PinpointSMSVoice", "DeleteConfigurationSetEventDestination", {})
|
|
13
|
-
.n("PinpointSMSVoiceClient", "DeleteConfigurationSetEventDestinationCommand")
|
|
14
|
-
.sc(DeleteConfigurationSetEventDestination$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class DeleteConfigurationSetEventDestinationCommand extends command(_ep0, _mw0, "DeleteConfigurationSetEventDestination", DeleteConfigurationSetEventDestination$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { GetConfigurationSetEventDestinations$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class GetConfigurationSetEventDestinationsCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("PinpointSMSVoice", "GetConfigurationSetEventDestinations", {})
|
|
13
|
-
.n("PinpointSMSVoiceClient", "GetConfigurationSetEventDestinationsCommand")
|
|
14
|
-
.sc(GetConfigurationSetEventDestinations$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class GetConfigurationSetEventDestinationsCommand extends command(_ep0, _mw0, "GetConfigurationSetEventDestinations", GetConfigurationSetEventDestinations$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { ListConfigurationSets$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ListConfigurationSetsCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("PinpointSMSVoice", "ListConfigurationSets", {})
|
|
13
|
-
.n("PinpointSMSVoiceClient", "ListConfigurationSetsCommand")
|
|
14
|
-
.sc(ListConfigurationSets$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ListConfigurationSetsCommand extends command(_ep0, _mw0, "ListConfigurationSets", ListConfigurationSets$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { SendVoiceMessage$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class SendVoiceMessageCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("PinpointSMSVoice", "SendVoiceMessage", {})
|
|
13
|
-
.n("PinpointSMSVoiceClient", "SendVoiceMessageCommand")
|
|
14
|
-
.sc(SendVoiceMessage$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class SendVoiceMessageCommand extends command(_ep0, _mw0, "SendVoiceMessage", SendVoiceMessage$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { UpdateConfigurationSetEventDestination$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class UpdateConfigurationSetEventDestinationCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("PinpointSMSVoice", "UpdateConfigurationSetEventDestination", {})
|
|
13
|
-
.n("PinpointSMSVoiceClient", "UpdateConfigurationSetEventDestinationCommand")
|
|
14
|
-
.sc(UpdateConfigurationSetEventDestination$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class UpdateConfigurationSetEventDestinationCommand extends command(_ep0, _mw0, "UpdateConfigurationSetEventDestination", UpdateConfigurationSetEventDestination$) {
|
|
16
4
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./PinpointSMSVoiceClient";
|
|
2
2
|
export * from "./PinpointSMSVoice";
|
|
3
3
|
export * from "./commands";
|
|
4
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
4
5
|
export * from "./schemas/schemas_0";
|
|
5
6
|
export * from "./models/enums";
|
|
6
7
|
export * from "./models/errors";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import type { PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./PinpointSMSVoiceClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
|
|
7
|
+
new (input: I): import("@smithy/core/client").CommandImpl<I, O, PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
8
|
+
new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
9
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { CreateConfigurationSetRequest, CreateConfigurationSetResponse } from "../models/models_0";
|
|
4
|
-
import type { PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointSMSVoiceClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface CreateConfigurationSetCommandInput extends CreateConfigurationS
|
|
|
22
19
|
export interface CreateConfigurationSetCommandOutput extends CreateConfigurationSetResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const CreateConfigurationSetCommand_base: {
|
|
25
|
-
new (input: CreateConfigurationSetCommandInput): import("@smithy/core/client").CommandImpl<CreateConfigurationSetCommandInput, CreateConfigurationSetCommandOutput, PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [CreateConfigurationSetCommandInput]): import("@smithy/core/client").CommandImpl<CreateConfigurationSetCommandInput, CreateConfigurationSetCommandOutput, PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: CreateConfigurationSetCommandInput): import("@smithy/core/client").CommandImpl<CreateConfigurationSetCommandInput, CreateConfigurationSetCommandOutput, import("..").PinpointSMSVoiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [CreateConfigurationSetCommandInput]): import("@smithy/core/client").CommandImpl<CreateConfigurationSetCommandInput, CreateConfigurationSetCommandOutput, import("..").PinpointSMSVoiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* Create a new configuration set. After you create the configuration set, you can add one or more event destinations to it.
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { CreateConfigurationSetEventDestinationRequest, CreateConfigurationSetEventDestinationResponse } from "../models/models_0";
|
|
4
|
-
import type { PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointSMSVoiceClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface CreateConfigurationSetEventDestinationCommandInput extends Crea
|
|
|
22
19
|
export interface CreateConfigurationSetEventDestinationCommandOutput extends CreateConfigurationSetEventDestinationResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const CreateConfigurationSetEventDestinationCommand_base: {
|
|
25
|
-
new (input: CreateConfigurationSetEventDestinationCommandInput): import("@smithy/core/client").CommandImpl<CreateConfigurationSetEventDestinationCommandInput, CreateConfigurationSetEventDestinationCommandOutput, PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: CreateConfigurationSetEventDestinationCommandInput): import("@smithy/core/client").CommandImpl<CreateConfigurationSetEventDestinationCommandInput, CreateConfigurationSetEventDestinationCommandOutput, PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: CreateConfigurationSetEventDestinationCommandInput): import("@smithy/core/client").CommandImpl<CreateConfigurationSetEventDestinationCommandInput, CreateConfigurationSetEventDestinationCommandOutput, import("..").PinpointSMSVoiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: CreateConfigurationSetEventDestinationCommandInput): import("@smithy/core/client").CommandImpl<CreateConfigurationSetEventDestinationCommandInput, CreateConfigurationSetEventDestinationCommandOutput, import("..").PinpointSMSVoiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* Create a new event destination in a configuration set.
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { DeleteConfigurationSetRequest, DeleteConfigurationSetResponse } from "../models/models_0";
|
|
4
|
-
import type { PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointSMSVoiceClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface DeleteConfigurationSetCommandInput extends DeleteConfigurationS
|
|
|
22
19
|
export interface DeleteConfigurationSetCommandOutput extends DeleteConfigurationSetResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const DeleteConfigurationSetCommand_base: {
|
|
25
|
-
new (input: DeleteConfigurationSetCommandInput): import("@smithy/core/client").CommandImpl<DeleteConfigurationSetCommandInput, DeleteConfigurationSetCommandOutput, PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: DeleteConfigurationSetCommandInput): import("@smithy/core/client").CommandImpl<DeleteConfigurationSetCommandInput, DeleteConfigurationSetCommandOutput, PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: DeleteConfigurationSetCommandInput): import("@smithy/core/client").CommandImpl<DeleteConfigurationSetCommandInput, DeleteConfigurationSetCommandOutput, import("..").PinpointSMSVoiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: DeleteConfigurationSetCommandInput): import("@smithy/core/client").CommandImpl<DeleteConfigurationSetCommandInput, DeleteConfigurationSetCommandOutput, import("..").PinpointSMSVoiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* Deletes an existing configuration set.
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { DeleteConfigurationSetEventDestinationRequest, DeleteConfigurationSetEventDestinationResponse } from "../models/models_0";
|
|
4
|
-
import type { PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointSMSVoiceClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface DeleteConfigurationSetEventDestinationCommandInput extends Dele
|
|
|
22
19
|
export interface DeleteConfigurationSetEventDestinationCommandOutput extends DeleteConfigurationSetEventDestinationResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const DeleteConfigurationSetEventDestinationCommand_base: {
|
|
25
|
-
new (input: DeleteConfigurationSetEventDestinationCommandInput): import("@smithy/core/client").CommandImpl<DeleteConfigurationSetEventDestinationCommandInput, DeleteConfigurationSetEventDestinationCommandOutput, PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: DeleteConfigurationSetEventDestinationCommandInput): import("@smithy/core/client").CommandImpl<DeleteConfigurationSetEventDestinationCommandInput, DeleteConfigurationSetEventDestinationCommandOutput, PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: DeleteConfigurationSetEventDestinationCommandInput): import("@smithy/core/client").CommandImpl<DeleteConfigurationSetEventDestinationCommandInput, DeleteConfigurationSetEventDestinationCommandOutput, import("..").PinpointSMSVoiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: DeleteConfigurationSetEventDestinationCommandInput): import("@smithy/core/client").CommandImpl<DeleteConfigurationSetEventDestinationCommandInput, DeleteConfigurationSetEventDestinationCommandOutput, import("..").PinpointSMSVoiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* Deletes an event destination in a configuration set.
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { GetConfigurationSetEventDestinationsRequest, GetConfigurationSetEventDestinationsResponse } from "../models/models_0";
|
|
4
|
-
import type { PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointSMSVoiceClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetConfigurationSetEventDestinationsCommandInput extends GetCon
|
|
|
22
19
|
export interface GetConfigurationSetEventDestinationsCommandOutput extends GetConfigurationSetEventDestinationsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetConfigurationSetEventDestinationsCommand_base: {
|
|
25
|
-
new (input: GetConfigurationSetEventDestinationsCommandInput): import("@smithy/core/client").CommandImpl<GetConfigurationSetEventDestinationsCommandInput, GetConfigurationSetEventDestinationsCommandOutput, PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetConfigurationSetEventDestinationsCommandInput): import("@smithy/core/client").CommandImpl<GetConfigurationSetEventDestinationsCommandInput, GetConfigurationSetEventDestinationsCommandOutput, PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetConfigurationSetEventDestinationsCommandInput): import("@smithy/core/client").CommandImpl<GetConfigurationSetEventDestinationsCommandInput, GetConfigurationSetEventDestinationsCommandOutput, import("..").PinpointSMSVoiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetConfigurationSetEventDestinationsCommandInput): import("@smithy/core/client").CommandImpl<GetConfigurationSetEventDestinationsCommandInput, GetConfigurationSetEventDestinationsCommandOutput, import("..").PinpointSMSVoiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* Obtain information about an event destination, including the types of events it reports, the Amazon Resource Name (ARN) of the destination, and the name of the event destination.
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListConfigurationSetsRequest, ListConfigurationSetsResponse } from "../models/models_0";
|
|
4
|
-
import type { PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointSMSVoiceClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListConfigurationSetsCommandInput extends ListConfigurationSets
|
|
|
22
19
|
export interface ListConfigurationSetsCommandOutput extends ListConfigurationSetsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListConfigurationSetsCommand_base: {
|
|
25
|
-
new (input: ListConfigurationSetsCommandInput): import("@smithy/core/client").CommandImpl<ListConfigurationSetsCommandInput, ListConfigurationSetsCommandOutput, PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListConfigurationSetsCommandInput]): import("@smithy/core/client").CommandImpl<ListConfigurationSetsCommandInput, ListConfigurationSetsCommandOutput, PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListConfigurationSetsCommandInput): import("@smithy/core/client").CommandImpl<ListConfigurationSetsCommandInput, ListConfigurationSetsCommandOutput, import("..").PinpointSMSVoiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListConfigurationSetsCommandInput]): import("@smithy/core/client").CommandImpl<ListConfigurationSetsCommandInput, ListConfigurationSetsCommandOutput, import("..").PinpointSMSVoiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* List all of the configuration sets associated with your Amazon Pinpoint account in the current region.
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { SendVoiceMessageRequest, SendVoiceMessageResponse } from "../models/models_0";
|
|
4
|
-
import type { PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointSMSVoiceClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface SendVoiceMessageCommandInput extends SendVoiceMessageRequest {
|
|
|
22
19
|
export interface SendVoiceMessageCommandOutput extends SendVoiceMessageResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const SendVoiceMessageCommand_base: {
|
|
25
|
-
new (input: SendVoiceMessageCommandInput): import("@smithy/core/client").CommandImpl<SendVoiceMessageCommandInput, SendVoiceMessageCommandOutput, PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [SendVoiceMessageCommandInput]): import("@smithy/core/client").CommandImpl<SendVoiceMessageCommandInput, SendVoiceMessageCommandOutput, PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: SendVoiceMessageCommandInput): import("@smithy/core/client").CommandImpl<SendVoiceMessageCommandInput, SendVoiceMessageCommandOutput, import("..").PinpointSMSVoiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [SendVoiceMessageCommandInput]): import("@smithy/core/client").CommandImpl<SendVoiceMessageCommandInput, SendVoiceMessageCommandOutput, import("..").PinpointSMSVoiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* Create a new voice message and send it to a recipient's phone number.
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { UpdateConfigurationSetEventDestinationRequest, UpdateConfigurationSetEventDestinationResponse } from "../models/models_0";
|
|
4
|
-
import type { PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointSMSVoiceClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UpdateConfigurationSetEventDestinationCommandInput extends Upda
|
|
|
22
19
|
export interface UpdateConfigurationSetEventDestinationCommandOutput extends UpdateConfigurationSetEventDestinationResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UpdateConfigurationSetEventDestinationCommand_base: {
|
|
25
|
-
new (input: UpdateConfigurationSetEventDestinationCommandInput): import("@smithy/core/client").CommandImpl<UpdateConfigurationSetEventDestinationCommandInput, UpdateConfigurationSetEventDestinationCommandOutput, PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UpdateConfigurationSetEventDestinationCommandInput): import("@smithy/core/client").CommandImpl<UpdateConfigurationSetEventDestinationCommandInput, UpdateConfigurationSetEventDestinationCommandOutput, PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UpdateConfigurationSetEventDestinationCommandInput): import("@smithy/core/client").CommandImpl<UpdateConfigurationSetEventDestinationCommandInput, UpdateConfigurationSetEventDestinationCommandOutput, import("..").PinpointSMSVoiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpdateConfigurationSetEventDestinationCommandInput): import("@smithy/core/client").CommandImpl<UpdateConfigurationSetEventDestinationCommandInput, UpdateConfigurationSetEventDestinationCommandOutput, import("..").PinpointSMSVoiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* Update an event destination in a configuration set. An event destination is a location that you publish information about your voice calls to. For example, you can log an event to an Amazon CloudWatch destination when a call fails.
|
package/dist-types/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
9
9
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
10
|
export type { PinpointSMSVoiceExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
12
13
|
export * from "./schemas/schemas_0";
|
|
13
14
|
export * from "./models/enums";
|
|
14
15
|
export * from "./models/errors";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
PinpointSMSVoiceClientResolvedConfig,
|
|
4
|
+
ServiceInputTypes,
|
|
5
|
+
ServiceOutputTypes,
|
|
6
|
+
} from "./PinpointSMSVoiceClient";
|
|
7
|
+
export declare const command: <
|
|
8
|
+
I extends ServiceInputTypes,
|
|
9
|
+
O extends ServiceOutputTypes
|
|
10
|
+
>(
|
|
11
|
+
added: EndpointParameterInstructions,
|
|
12
|
+
plugins: (
|
|
13
|
+
CommandCtor: any,
|
|
14
|
+
clientStack: any,
|
|
15
|
+
config: any,
|
|
16
|
+
options: any
|
|
17
|
+
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
|
+
op: string,
|
|
19
|
+
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
+
smithyContext?: Record<string, unknown>
|
|
21
|
+
) => {
|
|
22
|
+
new (input: I): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
I,
|
|
24
|
+
O,
|
|
25
|
+
PinpointSMSVoiceClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
I,
|
|
33
|
+
O,
|
|
34
|
+
PinpointSMSVoiceClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
+
export declare const _mw0: (
|
|
42
|
+
Command: any,
|
|
43
|
+
cs: any,
|
|
44
|
+
config: any,
|
|
45
|
+
o: any
|
|
46
|
+
) => never[];
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
CreateConfigurationSetRequest,
|
|
5
4
|
CreateConfigurationSetResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../PinpointSMSVoiceClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface CreateConfigurationSetCommandInput
|
|
15
8
|
extends CreateConfigurationSetRequest {}
|
|
16
9
|
export interface CreateConfigurationSetCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const CreateConfigurationSetCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
CreateConfigurationSetCommandInput,
|
|
24
17
|
CreateConfigurationSetCommandOutput,
|
|
25
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").PinpointSMSVoiceClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [CreateConfigurationSetCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
CreateConfigurationSetCommandInput,
|
|
33
26
|
CreateConfigurationSetCommandOutput,
|
|
34
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").PinpointSMSVoiceClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class CreateConfigurationSetCommand extends CreateConfigurationSetCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
CreateConfigurationSetEventDestinationRequest,
|
|
5
4
|
CreateConfigurationSetEventDestinationResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../PinpointSMSVoiceClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface CreateConfigurationSetEventDestinationCommandInput
|
|
15
8
|
extends CreateConfigurationSetEventDestinationRequest {}
|
|
16
9
|
export interface CreateConfigurationSetEventDestinationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const CreateConfigurationSetEventDestinationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
CreateConfigurationSetEventDestinationCommandInput,
|
|
24
17
|
CreateConfigurationSetEventDestinationCommandOutput,
|
|
25
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").PinpointSMSVoiceClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: CreateConfigurationSetEventDestinationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
CreateConfigurationSetEventDestinationCommandInput,
|
|
33
26
|
CreateConfigurationSetEventDestinationCommandOutput,
|
|
34
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").PinpointSMSVoiceClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class CreateConfigurationSetEventDestinationCommand extends CreateConfigurationSetEventDestinationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
DeleteConfigurationSetRequest,
|
|
5
4
|
DeleteConfigurationSetResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../PinpointSMSVoiceClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DeleteConfigurationSetCommandInput
|
|
15
8
|
extends DeleteConfigurationSetRequest {}
|
|
16
9
|
export interface DeleteConfigurationSetCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const DeleteConfigurationSetCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
DeleteConfigurationSetCommandInput,
|
|
24
17
|
DeleteConfigurationSetCommandOutput,
|
|
25
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").PinpointSMSVoiceClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: DeleteConfigurationSetCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
DeleteConfigurationSetCommandInput,
|
|
33
26
|
DeleteConfigurationSetCommandOutput,
|
|
34
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").PinpointSMSVoiceClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class DeleteConfigurationSetCommand extends DeleteConfigurationSetCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
DeleteConfigurationSetEventDestinationRequest,
|
|
5
4
|
DeleteConfigurationSetEventDestinationResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../PinpointSMSVoiceClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DeleteConfigurationSetEventDestinationCommandInput
|
|
15
8
|
extends DeleteConfigurationSetEventDestinationRequest {}
|
|
16
9
|
export interface DeleteConfigurationSetEventDestinationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const DeleteConfigurationSetEventDestinationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
DeleteConfigurationSetEventDestinationCommandInput,
|
|
24
17
|
DeleteConfigurationSetEventDestinationCommandOutput,
|
|
25
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").PinpointSMSVoiceClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: DeleteConfigurationSetEventDestinationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
DeleteConfigurationSetEventDestinationCommandInput,
|
|
33
26
|
DeleteConfigurationSetEventDestinationCommandOutput,
|
|
34
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").PinpointSMSVoiceClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class DeleteConfigurationSetEventDestinationCommand extends DeleteConfigurationSetEventDestinationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
GetConfigurationSetEventDestinationsRequest,
|
|
5
4
|
GetConfigurationSetEventDestinationsResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../PinpointSMSVoiceClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetConfigurationSetEventDestinationsCommandInput
|
|
15
8
|
extends GetConfigurationSetEventDestinationsRequest {}
|
|
16
9
|
export interface GetConfigurationSetEventDestinationsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetConfigurationSetEventDestinationsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetConfigurationSetEventDestinationsCommandInput,
|
|
24
17
|
GetConfigurationSetEventDestinationsCommandOutput,
|
|
25
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").PinpointSMSVoiceClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: GetConfigurationSetEventDestinationsCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetConfigurationSetEventDestinationsCommandInput,
|
|
33
26
|
GetConfigurationSetEventDestinationsCommandOutput,
|
|
34
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").PinpointSMSVoiceClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetConfigurationSetEventDestinationsCommand extends GetConfigurationSetEventDestinationsCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
ListConfigurationSetsRequest,
|
|
5
4
|
ListConfigurationSetsResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../PinpointSMSVoiceClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListConfigurationSetsCommandInput
|
|
15
8
|
extends ListConfigurationSetsRequest {}
|
|
16
9
|
export interface ListConfigurationSetsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListConfigurationSetsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListConfigurationSetsCommandInput,
|
|
24
17
|
ListConfigurationSetsCommandOutput,
|
|
25
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").PinpointSMSVoiceClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [ListConfigurationSetsCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListConfigurationSetsCommandInput,
|
|
33
26
|
ListConfigurationSetsCommandOutput,
|
|
34
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").PinpointSMSVoiceClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListConfigurationSetsCommand extends ListConfigurationSetsCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
SendVoiceMessageRequest,
|
|
5
4
|
SendVoiceMessageResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../PinpointSMSVoiceClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface SendVoiceMessageCommandInput extends SendVoiceMessageRequest {}
|
|
15
8
|
export interface SendVoiceMessageCommandOutput
|
|
16
9
|
extends SendVoiceMessageResponse,
|
|
@@ -21,22 +14,20 @@ declare const SendVoiceMessageCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
SendVoiceMessageCommandInput,
|
|
23
16
|
SendVoiceMessageCommandOutput,
|
|
24
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").PinpointSMSVoiceClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
...[input]: [] | [SendVoiceMessageCommandInput]
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
SendVoiceMessageCommandInput,
|
|
32
25
|
SendVoiceMessageCommandOutput,
|
|
33
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").PinpointSMSVoiceClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class SendVoiceMessageCommand extends SendVoiceMessageCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
UpdateConfigurationSetEventDestinationRequest,
|
|
5
4
|
UpdateConfigurationSetEventDestinationResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../PinpointSMSVoiceClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface UpdateConfigurationSetEventDestinationCommandInput
|
|
15
8
|
extends UpdateConfigurationSetEventDestinationRequest {}
|
|
16
9
|
export interface UpdateConfigurationSetEventDestinationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const UpdateConfigurationSetEventDestinationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
UpdateConfigurationSetEventDestinationCommandInput,
|
|
24
17
|
UpdateConfigurationSetEventDestinationCommandOutput,
|
|
25
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").PinpointSMSVoiceClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: UpdateConfigurationSetEventDestinationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
UpdateConfigurationSetEventDestinationCommandInput,
|
|
33
26
|
UpdateConfigurationSetEventDestinationCommandOutput,
|
|
34
|
-
PinpointSMSVoiceClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").PinpointSMSVoiceClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class UpdateConfigurationSetEventDestinationCommand extends UpdateConfigurationSetEventDestinationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { PinpointSMSVoiceExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
7
8
|
export * from "./schemas/schemas_0";
|
|
8
9
|
export * from "./models/enums";
|
|
9
10
|
export * from "./models/errors";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-pinpoint-sms-voice",
|
|
3
3
|
"description": "AWS SDK for JavaScript Pinpoint Sms Voice Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1078.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"module": "./dist-es/index.js",
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.974.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/types": "^3.973.
|
|
25
|
-
"@smithy/core": "^3.
|
|
26
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
27
|
-
"@smithy/node-http-handler": "^4.9.
|
|
28
|
-
"@smithy/types": "^4.15.
|
|
22
|
+
"@aws-sdk/core": "^3.974.26",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "^3.972.61",
|
|
24
|
+
"@aws-sdk/types": "^3.973.15",
|
|
25
|
+
"@smithy/core": "^3.29.0",
|
|
26
|
+
"@smithy/fetch-http-handler": "^5.6.2",
|
|
27
|
+
"@smithy/node-http-handler": "^4.9.2",
|
|
28
|
+
"@smithy/types": "^4.15.1",
|
|
29
29
|
"tslib": "^2.6.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|