@aws-sdk/client-pinpoint-sms-voice-v2 3.325.0 → 3.326.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-types/commands/AssociateOriginationIdentityCommand.d.ts +10 -0
- package/dist-types/commands/CreateConfigurationSetCommand.d.ts +14 -0
- package/dist-types/commands/CreateEventDestinationCommand.d.ts +25 -0
- package/dist-types/commands/CreateOptOutListCommand.d.ts +14 -0
- package/dist-types/commands/CreatePoolCommand.d.ts +22 -0
- package/dist-types/commands/DeleteConfigurationSetCommand.d.ts +30 -0
- package/dist-types/commands/DeleteDefaultMessageTypeCommand.d.ts +8 -0
- package/dist-types/commands/DeleteDefaultSenderIdCommand.d.ts +8 -0
- package/dist-types/commands/DeleteEventDestinationCommand.d.ts +25 -0
- package/dist-types/commands/DeleteKeywordCommand.d.ts +10 -0
- package/dist-types/commands/DeleteOptOutListCommand.d.ts +8 -0
- package/dist-types/commands/DeleteOptedOutNumberCommand.d.ts +10 -0
- package/dist-types/commands/DeletePoolCommand.d.ts +15 -0
- package/dist-types/commands/DeleteTextMessageSpendLimitOverrideCommand.d.ts +6 -0
- package/dist-types/commands/DeleteVoiceMessageSpendLimitOverrideCommand.d.ts +6 -0
- package/dist-types/commands/DescribeAccountAttributesCommand.d.ts +12 -0
- package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +13 -0
- package/dist-types/commands/DescribeConfigurationSetsCommand.d.ts +35 -0
- package/dist-types/commands/DescribeKeywordsCommand.d.ts +15 -0
- package/dist-types/commands/DescribeOptOutListsCommand.d.ts +13 -0
- package/dist-types/commands/DescribeOptedOutNumbersCommand.d.ts +15 -0
- package/dist-types/commands/DescribePhoneNumbersCommand.d.ts +28 -0
- package/dist-types/commands/DescribePoolsCommand.d.ts +21 -0
- package/dist-types/commands/DescribeSenderIdsCommand.d.ts +17 -0
- package/dist-types/commands/DescribeSpendLimitsCommand.d.ts +14 -0
- package/dist-types/commands/DisassociateOriginationIdentityCommand.d.ts +10 -0
- package/dist-types/commands/ListPoolOriginationIdentitiesCommand.d.ts +18 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
- package/dist-types/commands/PutKeywordCommand.d.ts +10 -0
- package/dist-types/commands/PutOptedOutNumberCommand.d.ts +10 -0
- package/dist-types/commands/ReleasePhoneNumberCommand.d.ts +21 -0
- package/dist-types/commands/RequestPhoneNumberCommand.d.ts +29 -0
- package/dist-types/commands/SendTextMessageCommand.d.ts +6 -0
- package/dist-types/commands/SendVoiceMessageCommand.d.ts +6 -0
- package/dist-types/commands/SetDefaultMessageTypeCommand.d.ts +8 -0
- package/dist-types/commands/SetDefaultSenderIdCommand.d.ts +8 -0
- package/dist-types/commands/SetTextMessageSpendLimitOverrideCommand.d.ts +6 -0
- package/dist-types/commands/SetVoiceMessageSpendLimitOverrideCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateEventDestinationCommand.d.ts +25 -0
- package/dist-types/commands/UpdatePhoneNumberCommand.d.ts +22 -0
- package/dist-types/commands/UpdatePoolCommand.d.ts +16 -0
- package/package.json +3 -3
|
@@ -38,6 +38,14 @@ export interface AssociateOriginationIdentityCommandOutput extends AssociateOrig
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new AssociateOriginationIdentityCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // AssociateOriginationIdentityResult
|
|
42
|
+
* // PoolArn: "STRING_VALUE",
|
|
43
|
+
* // PoolId: "STRING_VALUE",
|
|
44
|
+
* // OriginationIdentityArn: "STRING_VALUE",
|
|
45
|
+
* // OriginationIdentity: "STRING_VALUE",
|
|
46
|
+
* // IsoCountryCode: "STRING_VALUE",
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
41
49
|
* ```
|
|
42
50
|
*
|
|
43
51
|
* @param AssociateOriginationIdentityCommandInput - {@link AssociateOriginationIdentityCommandInput}
|
|
@@ -73,6 +81,8 @@ export interface AssociateOriginationIdentityCommandOutput extends AssociateOrig
|
|
|
73
81
|
* @throws {@link ValidationException} (client fault)
|
|
74
82
|
* <p>A validation exception for a field.</p>
|
|
75
83
|
*
|
|
84
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
76
86
|
*
|
|
77
87
|
*/
|
|
78
88
|
export declare class AssociateOriginationIdentityCommand extends $Command<AssociateOriginationIdentityCommandInput, AssociateOriginationIdentityCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -42,6 +42,18 @@ export interface CreateConfigurationSetCommandOutput extends CreateConfiguration
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new CreateConfigurationSetCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // CreateConfigurationSetResult
|
|
46
|
+
* // ConfigurationSetArn: "STRING_VALUE",
|
|
47
|
+
* // ConfigurationSetName: "STRING_VALUE",
|
|
48
|
+
* // Tags: [ // TagList
|
|
49
|
+
* // { // Tag
|
|
50
|
+
* // Key: "STRING_VALUE", // required
|
|
51
|
+
* // Value: "STRING_VALUE", // required
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // CreatedTimestamp: new Date("TIMESTAMP"),
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
45
57
|
* ```
|
|
46
58
|
*
|
|
47
59
|
* @param CreateConfigurationSetCommandInput - {@link CreateConfigurationSetCommandInput}
|
|
@@ -74,6 +86,8 @@ export interface CreateConfigurationSetCommandOutput extends CreateConfiguration
|
|
|
74
86
|
* @throws {@link ValidationException} (client fault)
|
|
75
87
|
* <p>A validation exception for a field.</p>
|
|
76
88
|
*
|
|
89
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
77
91
|
*
|
|
78
92
|
*/
|
|
79
93
|
export declare class CreateConfigurationSetCommand extends $Command<CreateConfigurationSetCommandInput, CreateConfigurationSetCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -55,6 +55,29 @@ export interface CreateEventDestinationCommandOutput extends CreateEventDestinat
|
|
|
55
55
|
* };
|
|
56
56
|
* const command = new CreateEventDestinationCommand(input);
|
|
57
57
|
* const response = await client.send(command);
|
|
58
|
+
* // { // CreateEventDestinationResult
|
|
59
|
+
* // ConfigurationSetArn: "STRING_VALUE",
|
|
60
|
+
* // ConfigurationSetName: "STRING_VALUE",
|
|
61
|
+
* // EventDestination: { // EventDestination
|
|
62
|
+
* // EventDestinationName: "STRING_VALUE", // required
|
|
63
|
+
* // Enabled: true || false, // required
|
|
64
|
+
* // MatchingEventTypes: [ // EventTypeList // required
|
|
65
|
+
* // "STRING_VALUE",
|
|
66
|
+
* // ],
|
|
67
|
+
* // CloudWatchLogsDestination: { // CloudWatchLogsDestination
|
|
68
|
+
* // IamRoleArn: "STRING_VALUE", // required
|
|
69
|
+
* // LogGroupArn: "STRING_VALUE", // required
|
|
70
|
+
* // },
|
|
71
|
+
* // KinesisFirehoseDestination: { // KinesisFirehoseDestination
|
|
72
|
+
* // IamRoleArn: "STRING_VALUE", // required
|
|
73
|
+
* // DeliveryStreamArn: "STRING_VALUE", // required
|
|
74
|
+
* // },
|
|
75
|
+
* // SnsDestination: { // SnsDestination
|
|
76
|
+
* // TopicArn: "STRING_VALUE", // required
|
|
77
|
+
* // },
|
|
78
|
+
* // },
|
|
79
|
+
* // };
|
|
80
|
+
*
|
|
58
81
|
* ```
|
|
59
82
|
*
|
|
60
83
|
* @param CreateEventDestinationCommandInput - {@link CreateEventDestinationCommandInput}
|
|
@@ -90,6 +113,8 @@ export interface CreateEventDestinationCommandOutput extends CreateEventDestinat
|
|
|
90
113
|
* @throws {@link ValidationException} (client fault)
|
|
91
114
|
* <p>A validation exception for a field.</p>
|
|
92
115
|
*
|
|
116
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
117
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
93
118
|
*
|
|
94
119
|
*/
|
|
95
120
|
export declare class CreateEventDestinationCommand extends $Command<CreateEventDestinationCommandInput, CreateEventDestinationCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -46,6 +46,18 @@ export interface CreateOptOutListCommandOutput extends CreateOptOutListResult, _
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new CreateOptOutListCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // { // CreateOptOutListResult
|
|
50
|
+
* // OptOutListArn: "STRING_VALUE",
|
|
51
|
+
* // OptOutListName: "STRING_VALUE",
|
|
52
|
+
* // Tags: [ // TagList
|
|
53
|
+
* // { // Tag
|
|
54
|
+
* // Key: "STRING_VALUE", // required
|
|
55
|
+
* // Value: "STRING_VALUE", // required
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // CreatedTimestamp: new Date("TIMESTAMP"),
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
49
61
|
* ```
|
|
50
62
|
*
|
|
51
63
|
* @param CreateOptOutListCommandInput - {@link CreateOptOutListCommandInput}
|
|
@@ -78,6 +90,8 @@ export interface CreateOptOutListCommandOutput extends CreateOptOutListResult, _
|
|
|
78
90
|
* @throws {@link ValidationException} (client fault)
|
|
79
91
|
* <p>A validation exception for a field.</p>
|
|
80
92
|
*
|
|
93
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
81
95
|
*
|
|
82
96
|
*/
|
|
83
97
|
export declare class CreateOptOutListCommand extends $Command<CreateOptOutListCommandInput, CreateOptOutListCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -49,6 +49,26 @@ export interface CreatePoolCommandOutput extends CreatePoolResult, __MetadataBea
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new CreatePoolCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // { // CreatePoolResult
|
|
53
|
+
* // PoolArn: "STRING_VALUE",
|
|
54
|
+
* // PoolId: "STRING_VALUE",
|
|
55
|
+
* // Status: "STRING_VALUE",
|
|
56
|
+
* // MessageType: "STRING_VALUE",
|
|
57
|
+
* // TwoWayEnabled: true || false,
|
|
58
|
+
* // TwoWayChannelArn: "STRING_VALUE",
|
|
59
|
+
* // SelfManagedOptOutsEnabled: true || false,
|
|
60
|
+
* // OptOutListName: "STRING_VALUE",
|
|
61
|
+
* // SharedRoutesEnabled: true || false,
|
|
62
|
+
* // DeletionProtectionEnabled: true || false,
|
|
63
|
+
* // Tags: [ // TagList
|
|
64
|
+
* // { // Tag
|
|
65
|
+
* // Key: "STRING_VALUE", // required
|
|
66
|
+
* // Value: "STRING_VALUE", // required
|
|
67
|
+
* // },
|
|
68
|
+
* // ],
|
|
69
|
+
* // CreatedTimestamp: new Date("TIMESTAMP"),
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
52
72
|
* ```
|
|
53
73
|
*
|
|
54
74
|
* @param CreatePoolCommandInput - {@link CreatePoolCommandInput}
|
|
@@ -84,6 +104,8 @@ export interface CreatePoolCommandOutput extends CreatePoolResult, __MetadataBea
|
|
|
84
104
|
* @throws {@link ValidationException} (client fault)
|
|
85
105
|
* <p>A validation exception for a field.</p>
|
|
86
106
|
*
|
|
107
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
108
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
87
109
|
*
|
|
88
110
|
*/
|
|
89
111
|
export declare class CreatePoolCommand extends $Command<CreatePoolCommandInput, CreatePoolCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -34,6 +34,34 @@ export interface DeleteConfigurationSetCommandOutput extends DeleteConfiguration
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteConfigurationSetCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // DeleteConfigurationSetResult
|
|
38
|
+
* // ConfigurationSetArn: "STRING_VALUE",
|
|
39
|
+
* // ConfigurationSetName: "STRING_VALUE",
|
|
40
|
+
* // EventDestinations: [ // EventDestinationList
|
|
41
|
+
* // { // EventDestination
|
|
42
|
+
* // EventDestinationName: "STRING_VALUE", // required
|
|
43
|
+
* // Enabled: true || false, // required
|
|
44
|
+
* // MatchingEventTypes: [ // EventTypeList // required
|
|
45
|
+
* // "STRING_VALUE",
|
|
46
|
+
* // ],
|
|
47
|
+
* // CloudWatchLogsDestination: { // CloudWatchLogsDestination
|
|
48
|
+
* // IamRoleArn: "STRING_VALUE", // required
|
|
49
|
+
* // LogGroupArn: "STRING_VALUE", // required
|
|
50
|
+
* // },
|
|
51
|
+
* // KinesisFirehoseDestination: { // KinesisFirehoseDestination
|
|
52
|
+
* // IamRoleArn: "STRING_VALUE", // required
|
|
53
|
+
* // DeliveryStreamArn: "STRING_VALUE", // required
|
|
54
|
+
* // },
|
|
55
|
+
* // SnsDestination: { // SnsDestination
|
|
56
|
+
* // TopicArn: "STRING_VALUE", // required
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // DefaultMessageType: "STRING_VALUE",
|
|
61
|
+
* // DefaultSenderId: "STRING_VALUE",
|
|
62
|
+
* // CreatedTimestamp: new Date("TIMESTAMP"),
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
37
65
|
* ```
|
|
38
66
|
*
|
|
39
67
|
* @param DeleteConfigurationSetCommandInput - {@link DeleteConfigurationSetCommandInput}
|
|
@@ -60,6 +88,8 @@ export interface DeleteConfigurationSetCommandOutput extends DeleteConfiguration
|
|
|
60
88
|
* @throws {@link ValidationException} (client fault)
|
|
61
89
|
* <p>A validation exception for a field.</p>
|
|
62
90
|
*
|
|
91
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
63
93
|
*
|
|
64
94
|
*/
|
|
65
95
|
export declare class DeleteConfigurationSetCommand extends $Command<DeleteConfigurationSetCommandInput, DeleteConfigurationSetCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -36,6 +36,12 @@ export interface DeleteDefaultMessageTypeCommandOutput extends DeleteDefaultMess
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DeleteDefaultMessageTypeCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // DeleteDefaultMessageTypeResult
|
|
40
|
+
* // ConfigurationSetArn: "STRING_VALUE",
|
|
41
|
+
* // ConfigurationSetName: "STRING_VALUE",
|
|
42
|
+
* // MessageType: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
39
45
|
* ```
|
|
40
46
|
*
|
|
41
47
|
* @param DeleteDefaultMessageTypeCommandInput - {@link DeleteDefaultMessageTypeCommandInput}
|
|
@@ -62,6 +68,8 @@ export interface DeleteDefaultMessageTypeCommandOutput extends DeleteDefaultMess
|
|
|
62
68
|
* @throws {@link ValidationException} (client fault)
|
|
63
69
|
* <p>A validation exception for a field.</p>
|
|
64
70
|
*
|
|
71
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
65
73
|
*
|
|
66
74
|
*/
|
|
67
75
|
export declare class DeleteDefaultMessageTypeCommand extends $Command<DeleteDefaultMessageTypeCommandInput, DeleteDefaultMessageTypeCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -34,6 +34,12 @@ export interface DeleteDefaultSenderIdCommandOutput extends DeleteDefaultSenderI
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteDefaultSenderIdCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // DeleteDefaultSenderIdResult
|
|
38
|
+
* // ConfigurationSetArn: "STRING_VALUE",
|
|
39
|
+
* // ConfigurationSetName: "STRING_VALUE",
|
|
40
|
+
* // SenderId: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
37
43
|
* ```
|
|
38
44
|
*
|
|
39
45
|
* @param DeleteDefaultSenderIdCommandInput - {@link DeleteDefaultSenderIdCommandInput}
|
|
@@ -60,6 +66,8 @@ export interface DeleteDefaultSenderIdCommandOutput extends DeleteDefaultSenderI
|
|
|
60
66
|
* @throws {@link ValidationException} (client fault)
|
|
61
67
|
* <p>A validation exception for a field.</p>
|
|
62
68
|
*
|
|
69
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
63
71
|
*
|
|
64
72
|
*/
|
|
65
73
|
export declare class DeleteDefaultSenderIdCommand extends $Command<DeleteDefaultSenderIdCommandInput, DeleteDefaultSenderIdCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -36,6 +36,29 @@ export interface DeleteEventDestinationCommandOutput extends DeleteEventDestinat
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DeleteEventDestinationCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // DeleteEventDestinationResult
|
|
40
|
+
* // ConfigurationSetArn: "STRING_VALUE",
|
|
41
|
+
* // ConfigurationSetName: "STRING_VALUE",
|
|
42
|
+
* // EventDestination: { // EventDestination
|
|
43
|
+
* // EventDestinationName: "STRING_VALUE", // required
|
|
44
|
+
* // Enabled: true || false, // required
|
|
45
|
+
* // MatchingEventTypes: [ // EventTypeList // required
|
|
46
|
+
* // "STRING_VALUE",
|
|
47
|
+
* // ],
|
|
48
|
+
* // CloudWatchLogsDestination: { // CloudWatchLogsDestination
|
|
49
|
+
* // IamRoleArn: "STRING_VALUE", // required
|
|
50
|
+
* // LogGroupArn: "STRING_VALUE", // required
|
|
51
|
+
* // },
|
|
52
|
+
* // KinesisFirehoseDestination: { // KinesisFirehoseDestination
|
|
53
|
+
* // IamRoleArn: "STRING_VALUE", // required
|
|
54
|
+
* // DeliveryStreamArn: "STRING_VALUE", // required
|
|
55
|
+
* // },
|
|
56
|
+
* // SnsDestination: { // SnsDestination
|
|
57
|
+
* // TopicArn: "STRING_VALUE", // required
|
|
58
|
+
* // },
|
|
59
|
+
* // },
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
39
62
|
* ```
|
|
40
63
|
*
|
|
41
64
|
* @param DeleteEventDestinationCommandInput - {@link DeleteEventDestinationCommandInput}
|
|
@@ -62,6 +85,8 @@ export interface DeleteEventDestinationCommandOutput extends DeleteEventDestinat
|
|
|
62
85
|
* @throws {@link ValidationException} (client fault)
|
|
63
86
|
* <p>A validation exception for a field.</p>
|
|
64
87
|
*
|
|
88
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
89
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
65
90
|
*
|
|
66
91
|
*/
|
|
67
92
|
export declare class DeleteEventDestinationCommand extends $Command<DeleteEventDestinationCommandInput, DeleteEventDestinationCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -38,6 +38,14 @@ export interface DeleteKeywordCommandOutput extends DeleteKeywordResult, __Metad
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new DeleteKeywordCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // DeleteKeywordResult
|
|
42
|
+
* // OriginationIdentityArn: "STRING_VALUE",
|
|
43
|
+
* // OriginationIdentity: "STRING_VALUE",
|
|
44
|
+
* // Keyword: "STRING_VALUE",
|
|
45
|
+
* // KeywordMessage: "STRING_VALUE",
|
|
46
|
+
* // KeywordAction: "STRING_VALUE",
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
41
49
|
* ```
|
|
42
50
|
*
|
|
43
51
|
* @param DeleteKeywordCommandInput - {@link DeleteKeywordCommandInput}
|
|
@@ -70,6 +78,8 @@ export interface DeleteKeywordCommandOutput extends DeleteKeywordResult, __Metad
|
|
|
70
78
|
* @throws {@link ValidationException} (client fault)
|
|
71
79
|
* <p>A validation exception for a field.</p>
|
|
72
80
|
*
|
|
81
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
73
83
|
*
|
|
74
84
|
*/
|
|
75
85
|
export declare class DeleteKeywordCommand extends $Command<DeleteKeywordCommandInput, DeleteKeywordCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -34,6 +34,12 @@ export interface DeleteOptOutListCommandOutput extends DeleteOptOutListResult, _
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteOptOutListCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // DeleteOptOutListResult
|
|
38
|
+
* // OptOutListArn: "STRING_VALUE",
|
|
39
|
+
* // OptOutListName: "STRING_VALUE",
|
|
40
|
+
* // CreatedTimestamp: new Date("TIMESTAMP"),
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
37
43
|
* ```
|
|
38
44
|
*
|
|
39
45
|
* @param DeleteOptOutListCommandInput - {@link DeleteOptOutListCommandInput}
|
|
@@ -66,6 +72,8 @@ export interface DeleteOptOutListCommandOutput extends DeleteOptOutListResult, _
|
|
|
66
72
|
* @throws {@link ValidationException} (client fault)
|
|
67
73
|
* <p>A validation exception for a field.</p>
|
|
68
74
|
*
|
|
75
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
69
77
|
*
|
|
70
78
|
*/
|
|
71
79
|
export declare class DeleteOptOutListCommand extends $Command<DeleteOptOutListCommandInput, DeleteOptOutListCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -36,6 +36,14 @@ export interface DeleteOptedOutNumberCommandOutput extends DeleteOptedOutNumberR
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DeleteOptedOutNumberCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // DeleteOptedOutNumberResult
|
|
40
|
+
* // OptOutListArn: "STRING_VALUE",
|
|
41
|
+
* // OptOutListName: "STRING_VALUE",
|
|
42
|
+
* // OptedOutNumber: "STRING_VALUE",
|
|
43
|
+
* // OptedOutTimestamp: new Date("TIMESTAMP"),
|
|
44
|
+
* // EndUserOptedOut: true || false,
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
39
47
|
* ```
|
|
40
48
|
*
|
|
41
49
|
* @param DeleteOptedOutNumberCommandInput - {@link DeleteOptedOutNumberCommandInput}
|
|
@@ -68,6 +76,8 @@ export interface DeleteOptedOutNumberCommandOutput extends DeleteOptedOutNumberR
|
|
|
68
76
|
* @throws {@link ValidationException} (client fault)
|
|
69
77
|
* <p>A validation exception for a field.</p>
|
|
70
78
|
*
|
|
79
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
71
81
|
*
|
|
72
82
|
*/
|
|
73
83
|
export declare class DeleteOptedOutNumberCommand extends $Command<DeleteOptedOutNumberCommandInput, DeleteOptedOutNumberCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -37,6 +37,19 @@ export interface DeletePoolCommandOutput extends DeletePoolResult, __MetadataBea
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new DeletePoolCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // DeletePoolResult
|
|
41
|
+
* // PoolArn: "STRING_VALUE",
|
|
42
|
+
* // PoolId: "STRING_VALUE",
|
|
43
|
+
* // Status: "STRING_VALUE",
|
|
44
|
+
* // MessageType: "STRING_VALUE",
|
|
45
|
+
* // TwoWayEnabled: true || false,
|
|
46
|
+
* // TwoWayChannelArn: "STRING_VALUE",
|
|
47
|
+
* // SelfManagedOptOutsEnabled: true || false,
|
|
48
|
+
* // OptOutListName: "STRING_VALUE",
|
|
49
|
+
* // SharedRoutesEnabled: true || false,
|
|
50
|
+
* // CreatedTimestamp: new Date("TIMESTAMP"),
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
40
53
|
* ```
|
|
41
54
|
*
|
|
42
55
|
* @param DeletePoolCommandInput - {@link DeletePoolCommandInput}
|
|
@@ -69,6 +82,8 @@ export interface DeletePoolCommandOutput extends DeletePoolResult, __MetadataBea
|
|
|
69
82
|
* @throws {@link ValidationException} (client fault)
|
|
70
83
|
* <p>A validation exception for a field.</p>
|
|
71
84
|
*
|
|
85
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
72
87
|
*
|
|
73
88
|
*/
|
|
74
89
|
export declare class DeletePoolCommand extends $Command<DeletePoolCommandInput, DeletePoolCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -33,6 +33,10 @@ export interface DeleteTextMessageSpendLimitOverrideCommandOutput extends Delete
|
|
|
33
33
|
* const input = {};
|
|
34
34
|
* const command = new DeleteTextMessageSpendLimitOverrideCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DeleteTextMessageSpendLimitOverrideResult
|
|
37
|
+
* // MonthlyLimit: Number("long"),
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
36
40
|
* ```
|
|
37
41
|
*
|
|
38
42
|
* @param DeleteTextMessageSpendLimitOverrideCommandInput - {@link DeleteTextMessageSpendLimitOverrideCommandInput}
|
|
@@ -56,6 +60,8 @@ export interface DeleteTextMessageSpendLimitOverrideCommandOutput extends Delete
|
|
|
56
60
|
* @throws {@link ValidationException} (client fault)
|
|
57
61
|
* <p>A validation exception for a field.</p>
|
|
58
62
|
*
|
|
63
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
59
65
|
*
|
|
60
66
|
*/
|
|
61
67
|
export declare class DeleteTextMessageSpendLimitOverrideCommand extends $Command<DeleteTextMessageSpendLimitOverrideCommandInput, DeleteTextMessageSpendLimitOverrideCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -33,6 +33,10 @@ export interface DeleteVoiceMessageSpendLimitOverrideCommandOutput extends Delet
|
|
|
33
33
|
* const input = {};
|
|
34
34
|
* const command = new DeleteVoiceMessageSpendLimitOverrideCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DeleteVoiceMessageSpendLimitOverrideResult
|
|
37
|
+
* // MonthlyLimit: Number("long"),
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
36
40
|
* ```
|
|
37
41
|
*
|
|
38
42
|
* @param DeleteVoiceMessageSpendLimitOverrideCommandInput - {@link DeleteVoiceMessageSpendLimitOverrideCommandInput}
|
|
@@ -56,6 +60,8 @@ export interface DeleteVoiceMessageSpendLimitOverrideCommandOutput extends Delet
|
|
|
56
60
|
* @throws {@link ValidationException} (client fault)
|
|
57
61
|
* <p>A validation exception for a field.</p>
|
|
58
62
|
*
|
|
63
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
59
65
|
*
|
|
60
66
|
*/
|
|
61
67
|
export declare class DeleteVoiceMessageSpendLimitOverrideCommand extends $Command<DeleteVoiceMessageSpendLimitOverrideCommandInput, DeleteVoiceMessageSpendLimitOverrideCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -38,6 +38,16 @@ export interface DescribeAccountAttributesCommandOutput extends DescribeAccountA
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new DescribeAccountAttributesCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // DescribeAccountAttributesResult
|
|
42
|
+
* // AccountAttributes: [ // AccountAttributeList
|
|
43
|
+
* // { // AccountAttribute
|
|
44
|
+
* // Name: "STRING_VALUE", // required
|
|
45
|
+
* // Value: "STRING_VALUE", // required
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // NextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
41
51
|
* ```
|
|
42
52
|
*
|
|
43
53
|
* @param DescribeAccountAttributesCommandInput - {@link DescribeAccountAttributesCommandInput}
|
|
@@ -61,6 +71,8 @@ export interface DescribeAccountAttributesCommandOutput extends DescribeAccountA
|
|
|
61
71
|
* @throws {@link ValidationException} (client fault)
|
|
62
72
|
* <p>A validation exception for a field.</p>
|
|
63
73
|
*
|
|
74
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
64
76
|
*
|
|
65
77
|
*/
|
|
66
78
|
export declare class DescribeAccountAttributesCommand extends $Command<DescribeAccountAttributesCommandInput, DescribeAccountAttributesCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -39,6 +39,17 @@ export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimit
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new DescribeAccountLimitsCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // DescribeAccountLimitsResult
|
|
43
|
+
* // AccountLimits: [ // AccountLimitList
|
|
44
|
+
* // { // AccountLimit
|
|
45
|
+
* // Name: "STRING_VALUE", // required
|
|
46
|
+
* // Used: Number("long"), // required
|
|
47
|
+
* // Max: Number("long"), // required
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // NextToken: "STRING_VALUE",
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
42
53
|
* ```
|
|
43
54
|
*
|
|
44
55
|
* @param DescribeAccountLimitsCommandInput - {@link DescribeAccountLimitsCommandInput}
|
|
@@ -62,6 +73,8 @@ export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimit
|
|
|
62
73
|
* @throws {@link ValidationException} (client fault)
|
|
63
74
|
* <p>A validation exception for a field.</p>
|
|
64
75
|
*
|
|
76
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
65
78
|
*
|
|
66
79
|
*/
|
|
67
80
|
export declare class DescribeAccountLimitsCommand extends $Command<DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -49,6 +49,39 @@ export interface DescribeConfigurationSetsCommandOutput extends DescribeConfigur
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new DescribeConfigurationSetsCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // { // DescribeConfigurationSetsResult
|
|
53
|
+
* // ConfigurationSets: [ // ConfigurationSetInformationList
|
|
54
|
+
* // { // ConfigurationSetInformation
|
|
55
|
+
* // ConfigurationSetArn: "STRING_VALUE", // required
|
|
56
|
+
* // ConfigurationSetName: "STRING_VALUE", // required
|
|
57
|
+
* // EventDestinations: [ // EventDestinationList // required
|
|
58
|
+
* // { // EventDestination
|
|
59
|
+
* // EventDestinationName: "STRING_VALUE", // required
|
|
60
|
+
* // Enabled: true || false, // required
|
|
61
|
+
* // MatchingEventTypes: [ // EventTypeList // required
|
|
62
|
+
* // "STRING_VALUE",
|
|
63
|
+
* // ],
|
|
64
|
+
* // CloudWatchLogsDestination: { // CloudWatchLogsDestination
|
|
65
|
+
* // IamRoleArn: "STRING_VALUE", // required
|
|
66
|
+
* // LogGroupArn: "STRING_VALUE", // required
|
|
67
|
+
* // },
|
|
68
|
+
* // KinesisFirehoseDestination: { // KinesisFirehoseDestination
|
|
69
|
+
* // IamRoleArn: "STRING_VALUE", // required
|
|
70
|
+
* // DeliveryStreamArn: "STRING_VALUE", // required
|
|
71
|
+
* // },
|
|
72
|
+
* // SnsDestination: { // SnsDestination
|
|
73
|
+
* // TopicArn: "STRING_VALUE", // required
|
|
74
|
+
* // },
|
|
75
|
+
* // },
|
|
76
|
+
* // ],
|
|
77
|
+
* // DefaultMessageType: "STRING_VALUE",
|
|
78
|
+
* // DefaultSenderId: "STRING_VALUE",
|
|
79
|
+
* // CreatedTimestamp: new Date("TIMESTAMP"), // required
|
|
80
|
+
* // },
|
|
81
|
+
* // ],
|
|
82
|
+
* // NextToken: "STRING_VALUE",
|
|
83
|
+
* // };
|
|
84
|
+
*
|
|
52
85
|
* ```
|
|
53
86
|
*
|
|
54
87
|
* @param DescribeConfigurationSetsCommandInput - {@link DescribeConfigurationSetsCommandInput}
|
|
@@ -75,6 +108,8 @@ export interface DescribeConfigurationSetsCommandOutput extends DescribeConfigur
|
|
|
75
108
|
* @throws {@link ValidationException} (client fault)
|
|
76
109
|
* <p>A validation exception for a field.</p>
|
|
77
110
|
*
|
|
111
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
112
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
78
113
|
*
|
|
79
114
|
*/
|
|
80
115
|
export declare class DescribeConfigurationSetsCommand extends $Command<DescribeConfigurationSetsCommandInput, DescribeConfigurationSetsCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -51,6 +51,19 @@ export interface DescribeKeywordsCommandOutput extends DescribeKeywordsResult, _
|
|
|
51
51
|
* };
|
|
52
52
|
* const command = new DescribeKeywordsCommand(input);
|
|
53
53
|
* const response = await client.send(command);
|
|
54
|
+
* // { // DescribeKeywordsResult
|
|
55
|
+
* // OriginationIdentityArn: "STRING_VALUE",
|
|
56
|
+
* // OriginationIdentity: "STRING_VALUE",
|
|
57
|
+
* // Keywords: [ // KeywordInformationList
|
|
58
|
+
* // { // KeywordInformation
|
|
59
|
+
* // Keyword: "STRING_VALUE", // required
|
|
60
|
+
* // KeywordMessage: "STRING_VALUE", // required
|
|
61
|
+
* // KeywordAction: "STRING_VALUE", // required
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // NextToken: "STRING_VALUE",
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
54
67
|
* ```
|
|
55
68
|
*
|
|
56
69
|
* @param DescribeKeywordsCommandInput - {@link DescribeKeywordsCommandInput}
|
|
@@ -77,6 +90,8 @@ export interface DescribeKeywordsCommandOutput extends DescribeKeywordsResult, _
|
|
|
77
90
|
* @throws {@link ValidationException} (client fault)
|
|
78
91
|
* <p>A validation exception for a field.</p>
|
|
79
92
|
*
|
|
93
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
80
95
|
*
|
|
81
96
|
*/
|
|
82
97
|
export declare class DescribeKeywordsCommand extends $Command<DescribeKeywordsCommandInput, DescribeKeywordsCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -40,6 +40,17 @@ export interface DescribeOptOutListsCommandOutput extends DescribeOptOutListsRes
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new DescribeOptOutListsCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // DescribeOptOutListsResult
|
|
44
|
+
* // OptOutLists: [ // OptOutListInformationList
|
|
45
|
+
* // { // OptOutListInformation
|
|
46
|
+
* // OptOutListArn: "STRING_VALUE", // required
|
|
47
|
+
* // OptOutListName: "STRING_VALUE", // required
|
|
48
|
+
* // CreatedTimestamp: new Date("TIMESTAMP"), // required
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // NextToken: "STRING_VALUE",
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
43
54
|
* ```
|
|
44
55
|
*
|
|
45
56
|
* @param DescribeOptOutListsCommandInput - {@link DescribeOptOutListsCommandInput}
|
|
@@ -66,6 +77,8 @@ export interface DescribeOptOutListsCommandOutput extends DescribeOptOutListsRes
|
|
|
66
77
|
* @throws {@link ValidationException} (client fault)
|
|
67
78
|
* <p>A validation exception for a field.</p>
|
|
68
79
|
*
|
|
80
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
69
82
|
*
|
|
70
83
|
*/
|
|
71
84
|
export declare class DescribeOptOutListsCommand extends $Command<DescribeOptOutListsCommandInput, DescribeOptOutListsCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|
|
@@ -51,6 +51,19 @@ export interface DescribeOptedOutNumbersCommandOutput extends DescribeOptedOutNu
|
|
|
51
51
|
* };
|
|
52
52
|
* const command = new DescribeOptedOutNumbersCommand(input);
|
|
53
53
|
* const response = await client.send(command);
|
|
54
|
+
* // { // DescribeOptedOutNumbersResult
|
|
55
|
+
* // OptOutListArn: "STRING_VALUE",
|
|
56
|
+
* // OptOutListName: "STRING_VALUE",
|
|
57
|
+
* // OptedOutNumbers: [ // OptedOutNumberInformationList
|
|
58
|
+
* // { // OptedOutNumberInformation
|
|
59
|
+
* // OptedOutNumber: "STRING_VALUE", // required
|
|
60
|
+
* // OptedOutTimestamp: new Date("TIMESTAMP"), // required
|
|
61
|
+
* // EndUserOptedOut: true || false, // required
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // NextToken: "STRING_VALUE",
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
54
67
|
* ```
|
|
55
68
|
*
|
|
56
69
|
* @param DescribeOptedOutNumbersCommandInput - {@link DescribeOptedOutNumbersCommandInput}
|
|
@@ -77,6 +90,8 @@ export interface DescribeOptedOutNumbersCommandOutput extends DescribeOptedOutNu
|
|
|
77
90
|
* @throws {@link ValidationException} (client fault)
|
|
78
91
|
* <p>A validation exception for a field.</p>
|
|
79
92
|
*
|
|
93
|
+
* @throws {@link PinpointSMSVoiceV2ServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from PinpointSMSVoiceV2 service.</p>
|
|
80
95
|
*
|
|
81
96
|
*/
|
|
82
97
|
export declare class DescribeOptedOutNumbersCommand extends $Command<DescribeOptedOutNumbersCommandInput, DescribeOptedOutNumbersCommandOutput, PinpointSMSVoiceV2ClientResolvedConfig> {
|