@aws-sdk/client-chime-sdk-voice 3.313.0 → 3.316.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/ChimeSDKVoice.js +97 -1302
- package/dist-cjs/protocols/Aws_restJson1.js +916 -1827
- package/dist-es/ChimeSDKVoice.js +97 -1302
- package/dist-es/protocols/Aws_restJson1.js +786 -1697
- package/dist-types/ChimeSDKVoice.d.ts +101 -300
- package/dist-types/ts3.4/ChimeSDKVoice.d.ts +4 -1
- package/package.json +6 -6
|
@@ -93,769 +93,570 @@ import { UpdateVoiceConnectorGroupCommandInput, UpdateVoiceConnectorGroupCommand
|
|
|
93
93
|
import { UpdateVoiceProfileCommandInput, UpdateVoiceProfileCommandOutput } from "./commands/UpdateVoiceProfileCommand";
|
|
94
94
|
import { UpdateVoiceProfileDomainCommandInput, UpdateVoiceProfileDomainCommandOutput } from "./commands/UpdateVoiceProfileDomainCommand";
|
|
95
95
|
import { ValidateE911AddressCommandInput, ValidateE911AddressCommandOutput } from "./commands/ValidateE911AddressCommand";
|
|
96
|
-
|
|
97
|
-
* @public
|
|
98
|
-
* <p>The Amazon Chime SDK telephony APIs in this section enable developers to create PSTN calling solutions that use Amazon Chime SDK Voice Connectors, and Amazon Chime SDK SIP media applications. Developers can
|
|
99
|
-
* also order and manage phone numbers, create and manage Voice Connectors and SIP media applications, and run voice analytics.</p>
|
|
100
|
-
*/
|
|
101
|
-
export declare class ChimeSDKVoice extends ChimeSDKVoiceClient {
|
|
96
|
+
export interface ChimeSDKVoice {
|
|
102
97
|
/**
|
|
103
|
-
* @
|
|
104
|
-
* <p>Associates phone numbers with the specified Amazon Chime SDK Voice Connector.</p>
|
|
98
|
+
* @see {@link AssociatePhoneNumbersWithVoiceConnectorCommand}
|
|
105
99
|
*/
|
|
106
100
|
associatePhoneNumbersWithVoiceConnector(args: AssociatePhoneNumbersWithVoiceConnectorCommandInput, options?: __HttpHandlerOptions): Promise<AssociatePhoneNumbersWithVoiceConnectorCommandOutput>;
|
|
107
101
|
associatePhoneNumbersWithVoiceConnector(args: AssociatePhoneNumbersWithVoiceConnectorCommandInput, cb: (err: any, data?: AssociatePhoneNumbersWithVoiceConnectorCommandOutput) => void): void;
|
|
108
102
|
associatePhoneNumbersWithVoiceConnector(args: AssociatePhoneNumbersWithVoiceConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociatePhoneNumbersWithVoiceConnectorCommandOutput) => void): void;
|
|
109
103
|
/**
|
|
110
|
-
* @
|
|
111
|
-
* <p>Associates phone numbers with the specified Amazon Chime SDK Voice Connector group.</p>
|
|
104
|
+
* @see {@link AssociatePhoneNumbersWithVoiceConnectorGroupCommand}
|
|
112
105
|
*/
|
|
113
106
|
associatePhoneNumbersWithVoiceConnectorGroup(args: AssociatePhoneNumbersWithVoiceConnectorGroupCommandInput, options?: __HttpHandlerOptions): Promise<AssociatePhoneNumbersWithVoiceConnectorGroupCommandOutput>;
|
|
114
107
|
associatePhoneNumbersWithVoiceConnectorGroup(args: AssociatePhoneNumbersWithVoiceConnectorGroupCommandInput, cb: (err: any, data?: AssociatePhoneNumbersWithVoiceConnectorGroupCommandOutput) => void): void;
|
|
115
108
|
associatePhoneNumbersWithVoiceConnectorGroup(args: AssociatePhoneNumbersWithVoiceConnectorGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociatePhoneNumbersWithVoiceConnectorGroupCommandOutput) => void): void;
|
|
116
109
|
/**
|
|
117
|
-
* @
|
|
118
|
-
* <p>
|
|
119
|
-
* Moves phone numbers into the
|
|
120
|
-
* <b>Deletion queue</b>. Phone numbers must be disassociated from any users or Amazon Chime SDK Voice Connectors before they can be deleted.
|
|
121
|
-
* </p>
|
|
122
|
-
* <p>
|
|
123
|
-
* Phone numbers remain in the
|
|
124
|
-
* <b>Deletion queue</b> for 7 days before they are deleted permanently.
|
|
125
|
-
* </p>
|
|
110
|
+
* @see {@link BatchDeletePhoneNumberCommand}
|
|
126
111
|
*/
|
|
127
112
|
batchDeletePhoneNumber(args: BatchDeletePhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<BatchDeletePhoneNumberCommandOutput>;
|
|
128
113
|
batchDeletePhoneNumber(args: BatchDeletePhoneNumberCommandInput, cb: (err: any, data?: BatchDeletePhoneNumberCommandOutput) => void): void;
|
|
129
114
|
batchDeletePhoneNumber(args: BatchDeletePhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDeletePhoneNumberCommandOutput) => void): void;
|
|
130
115
|
/**
|
|
131
|
-
* @
|
|
132
|
-
* <p>Updates one or more phone numbers.</p>
|
|
116
|
+
* @see {@link BatchUpdatePhoneNumberCommand}
|
|
133
117
|
*/
|
|
134
118
|
batchUpdatePhoneNumber(args: BatchUpdatePhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<BatchUpdatePhoneNumberCommandOutput>;
|
|
135
119
|
batchUpdatePhoneNumber(args: BatchUpdatePhoneNumberCommandInput, cb: (err: any, data?: BatchUpdatePhoneNumberCommandOutput) => void): void;
|
|
136
120
|
batchUpdatePhoneNumber(args: BatchUpdatePhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchUpdatePhoneNumberCommandOutput) => void): void;
|
|
137
121
|
/**
|
|
138
|
-
* @
|
|
139
|
-
* <p>Creates an order for phone numbers to be provisioned. For numbers outside the U.S., you must use the Amazon Chime SDK SIP media application dial-in product type.</p>
|
|
122
|
+
* @see {@link CreatePhoneNumberOrderCommand}
|
|
140
123
|
*/
|
|
141
124
|
createPhoneNumberOrder(args: CreatePhoneNumberOrderCommandInput, options?: __HttpHandlerOptions): Promise<CreatePhoneNumberOrderCommandOutput>;
|
|
142
125
|
createPhoneNumberOrder(args: CreatePhoneNumberOrderCommandInput, cb: (err: any, data?: CreatePhoneNumberOrderCommandOutput) => void): void;
|
|
143
126
|
createPhoneNumberOrder(args: CreatePhoneNumberOrderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePhoneNumberOrderCommandOutput) => void): void;
|
|
144
127
|
/**
|
|
145
|
-
* @
|
|
146
|
-
* <p>Creates a proxy session for the specified Amazon Chime SDK Voice Connector for
|
|
147
|
-
* the specified participant phone numbers.</p>
|
|
128
|
+
* @see {@link CreateProxySessionCommand}
|
|
148
129
|
*/
|
|
149
130
|
createProxySession(args: CreateProxySessionCommandInput, options?: __HttpHandlerOptions): Promise<CreateProxySessionCommandOutput>;
|
|
150
131
|
createProxySession(args: CreateProxySessionCommandInput, cb: (err: any, data?: CreateProxySessionCommandOutput) => void): void;
|
|
151
132
|
createProxySession(args: CreateProxySessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProxySessionCommandOutput) => void): void;
|
|
152
133
|
/**
|
|
153
|
-
* @
|
|
154
|
-
* <p>Creates a SIP media application. For more information about SIP media applications, see <a href="https://docs.aws.amazon.com/chime-sdk/latest/ag/manage-sip-applications.html">Managing SIP media applications
|
|
155
|
-
* and rules</a> in the <i>Amazon Chime SDK Administrator Guide</i>.</p>
|
|
134
|
+
* @see {@link CreateSipMediaApplicationCommand}
|
|
156
135
|
*/
|
|
157
136
|
createSipMediaApplication(args: CreateSipMediaApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateSipMediaApplicationCommandOutput>;
|
|
158
137
|
createSipMediaApplication(args: CreateSipMediaApplicationCommandInput, cb: (err: any, data?: CreateSipMediaApplicationCommandOutput) => void): void;
|
|
159
138
|
createSipMediaApplication(args: CreateSipMediaApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSipMediaApplicationCommandOutput) => void): void;
|
|
160
139
|
/**
|
|
161
|
-
* @
|
|
162
|
-
* <p>Creates an outbound call to a phone number from the phone number specified
|
|
163
|
-
* in the request, and it invokes the endpoint of the specified
|
|
164
|
-
* <code>sipMediaApplicationId</code>.</p>
|
|
140
|
+
* @see {@link CreateSipMediaApplicationCallCommand}
|
|
165
141
|
*/
|
|
166
142
|
createSipMediaApplicationCall(args: CreateSipMediaApplicationCallCommandInput, options?: __HttpHandlerOptions): Promise<CreateSipMediaApplicationCallCommandOutput>;
|
|
167
143
|
createSipMediaApplicationCall(args: CreateSipMediaApplicationCallCommandInput, cb: (err: any, data?: CreateSipMediaApplicationCallCommandOutput) => void): void;
|
|
168
144
|
createSipMediaApplicationCall(args: CreateSipMediaApplicationCallCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSipMediaApplicationCallCommandOutput) => void): void;
|
|
169
145
|
/**
|
|
170
|
-
* @
|
|
171
|
-
* <p>Creates a SIP rule, which can be used to run a SIP media application as a target for a specific trigger type. For more information about SIP rules, see <a href="https://docs.aws.amazon.com/chime-sdk/latest/ag/manage-sip-applications.html">Managing SIP media applications
|
|
172
|
-
* and rules</a> in the <i>Amazon Chime SDK Administrator Guide</i>.</p>
|
|
146
|
+
* @see {@link CreateSipRuleCommand}
|
|
173
147
|
*/
|
|
174
148
|
createSipRule(args: CreateSipRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateSipRuleCommandOutput>;
|
|
175
149
|
createSipRule(args: CreateSipRuleCommandInput, cb: (err: any, data?: CreateSipRuleCommandOutput) => void): void;
|
|
176
150
|
createSipRule(args: CreateSipRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSipRuleCommandOutput) => void): void;
|
|
177
151
|
/**
|
|
178
|
-
* @
|
|
179
|
-
* <p>Creates an Amazon Chime SDK Voice Connector. For more information about
|
|
180
|
-
* Voice Connectors,
|
|
181
|
-
* see <a href="https://docs.aws.amazon.com/chime-sdk/latest/ag/voice-connector-groups.html">Managing Amazon Chime SDK Voice Connector groups</a> in the <i>Amazon Chime SDK
|
|
182
|
-
* Administrator Guide</i>.</p>
|
|
152
|
+
* @see {@link CreateVoiceConnectorCommand}
|
|
183
153
|
*/
|
|
184
154
|
createVoiceConnector(args: CreateVoiceConnectorCommandInput, options?: __HttpHandlerOptions): Promise<CreateVoiceConnectorCommandOutput>;
|
|
185
155
|
createVoiceConnector(args: CreateVoiceConnectorCommandInput, cb: (err: any, data?: CreateVoiceConnectorCommandOutput) => void): void;
|
|
186
156
|
createVoiceConnector(args: CreateVoiceConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVoiceConnectorCommandOutput) => void): void;
|
|
187
157
|
/**
|
|
188
|
-
* @
|
|
189
|
-
* <p>Creates an Amazon Chime SDK Voice Connector group under the administrator's
|
|
190
|
-
* AWS account. You can associate Amazon Chime SDK Voice Connectors with the
|
|
191
|
-
* Voice Connector group by including <code>VoiceConnectorItems</code> in the
|
|
192
|
-
* request. </p>
|
|
193
|
-
* <p>You can include Voice Connectors from different AWS Regions in your group.
|
|
194
|
-
* This creates a fault tolerant mechanism for fallback in case of availability events.</p>
|
|
158
|
+
* @see {@link CreateVoiceConnectorGroupCommand}
|
|
195
159
|
*/
|
|
196
160
|
createVoiceConnectorGroup(args: CreateVoiceConnectorGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateVoiceConnectorGroupCommandOutput>;
|
|
197
161
|
createVoiceConnectorGroup(args: CreateVoiceConnectorGroupCommandInput, cb: (err: any, data?: CreateVoiceConnectorGroupCommandOutput) => void): void;
|
|
198
162
|
createVoiceConnectorGroup(args: CreateVoiceConnectorGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVoiceConnectorGroupCommandOutput) => void): void;
|
|
199
163
|
/**
|
|
200
|
-
* @
|
|
201
|
-
* <p>Creates a voice profile, which consists of an enrolled user and their latest voice print.</p>
|
|
202
|
-
* <important>
|
|
203
|
-
* <p>Before creating any voice profiles, you must provide all notices and obtain all consents from the speaker as required under applicable privacy and biometrics laws, and as required under the
|
|
204
|
-
* <a href="https://aws.amazon.com/service-terms/">AWS service terms</a> for the Amazon Chime SDK.</p>
|
|
205
|
-
* </important>
|
|
206
|
-
* <p>For more information about voice profiles and voice analytics, see <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/pstn-voice-analytics.html">Using Amazon Chime SDK Voice Analytics</a>
|
|
207
|
-
* in the <i>Amazon Chime SDK Developer Guide</i>.</p>
|
|
164
|
+
* @see {@link CreateVoiceProfileCommand}
|
|
208
165
|
*/
|
|
209
166
|
createVoiceProfile(args: CreateVoiceProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateVoiceProfileCommandOutput>;
|
|
210
167
|
createVoiceProfile(args: CreateVoiceProfileCommandInput, cb: (err: any, data?: CreateVoiceProfileCommandOutput) => void): void;
|
|
211
168
|
createVoiceProfile(args: CreateVoiceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVoiceProfileCommandOutput) => void): void;
|
|
212
169
|
/**
|
|
213
|
-
* @
|
|
214
|
-
* <p>Creates a voice profile domain, a collection of voice profiles, their voice prints, and encrypted enrollment audio.</p>
|
|
215
|
-
* <important>
|
|
216
|
-
* <p>Before creating any voice profiles, you must provide all notices and obtain all consents from the speaker as required under applicable privacy and biometrics laws, and as required under the
|
|
217
|
-
* <a href="https://aws.amazon.com/service-terms/">AWS service terms</a> for the Amazon Chime SDK.</p>
|
|
218
|
-
* </important>
|
|
219
|
-
* <p>For more information about voice profile domains, see <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/pstn-voice-analytics.html">Using Amazon Chime SDK Voice Analytics</a>
|
|
220
|
-
* in the <i>Amazon Chime SDK Developer Guide</i>.</p>
|
|
170
|
+
* @see {@link CreateVoiceProfileDomainCommand}
|
|
221
171
|
*/
|
|
222
172
|
createVoiceProfileDomain(args: CreateVoiceProfileDomainCommandInput, options?: __HttpHandlerOptions): Promise<CreateVoiceProfileDomainCommandOutput>;
|
|
223
173
|
createVoiceProfileDomain(args: CreateVoiceProfileDomainCommandInput, cb: (err: any, data?: CreateVoiceProfileDomainCommandOutput) => void): void;
|
|
224
174
|
createVoiceProfileDomain(args: CreateVoiceProfileDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVoiceProfileDomainCommandOutput) => void): void;
|
|
225
175
|
/**
|
|
226
|
-
* @
|
|
227
|
-
* <p>Moves the specified phone number into the
|
|
228
|
-
* <b>Deletion queue</b>. A phone number must
|
|
229
|
-
* be disassociated from any users or Amazon Chime SDK Voice Connectors before it can be
|
|
230
|
-
* deleted.</p>
|
|
231
|
-
* <p>Deleted phone numbers remain in the
|
|
232
|
-
* <b>Deletion queue</b> queue for 7 days before
|
|
233
|
-
* they are deleted permanently.</p>
|
|
176
|
+
* @see {@link DeletePhoneNumberCommand}
|
|
234
177
|
*/
|
|
235
178
|
deletePhoneNumber(args: DeletePhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<DeletePhoneNumberCommandOutput>;
|
|
236
179
|
deletePhoneNumber(args: DeletePhoneNumberCommandInput, cb: (err: any, data?: DeletePhoneNumberCommandOutput) => void): void;
|
|
237
180
|
deletePhoneNumber(args: DeletePhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePhoneNumberCommandOutput) => void): void;
|
|
238
181
|
/**
|
|
239
|
-
* @
|
|
240
|
-
* <p>Deletes the specified proxy session from the specified Amazon Chime SDK Voice
|
|
241
|
-
* Connector.</p>
|
|
182
|
+
* @see {@link DeleteProxySessionCommand}
|
|
242
183
|
*/
|
|
243
184
|
deleteProxySession(args: DeleteProxySessionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProxySessionCommandOutput>;
|
|
244
185
|
deleteProxySession(args: DeleteProxySessionCommandInput, cb: (err: any, data?: DeleteProxySessionCommandOutput) => void): void;
|
|
245
186
|
deleteProxySession(args: DeleteProxySessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProxySessionCommandOutput) => void): void;
|
|
246
187
|
/**
|
|
247
|
-
* @
|
|
248
|
-
* <p>Deletes a SIP media application.</p>
|
|
188
|
+
* @see {@link DeleteSipMediaApplicationCommand}
|
|
249
189
|
*/
|
|
250
190
|
deleteSipMediaApplication(args: DeleteSipMediaApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSipMediaApplicationCommandOutput>;
|
|
251
191
|
deleteSipMediaApplication(args: DeleteSipMediaApplicationCommandInput, cb: (err: any, data?: DeleteSipMediaApplicationCommandOutput) => void): void;
|
|
252
192
|
deleteSipMediaApplication(args: DeleteSipMediaApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSipMediaApplicationCommandOutput) => void): void;
|
|
253
193
|
/**
|
|
254
|
-
* @
|
|
255
|
-
* <p>Deletes a SIP rule.</p>
|
|
194
|
+
* @see {@link DeleteSipRuleCommand}
|
|
256
195
|
*/
|
|
257
196
|
deleteSipRule(args: DeleteSipRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSipRuleCommandOutput>;
|
|
258
197
|
deleteSipRule(args: DeleteSipRuleCommandInput, cb: (err: any, data?: DeleteSipRuleCommandOutput) => void): void;
|
|
259
198
|
deleteSipRule(args: DeleteSipRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSipRuleCommandOutput) => void): void;
|
|
260
199
|
/**
|
|
261
|
-
* @
|
|
262
|
-
* <p>Deletes an Amazon Chime SDK Voice Connector. Any phone numbers associated
|
|
263
|
-
* with the Amazon Chime SDK Voice Connector must be disassociated from it before it
|
|
264
|
-
* can be deleted.</p>
|
|
200
|
+
* @see {@link DeleteVoiceConnectorCommand}
|
|
265
201
|
*/
|
|
266
202
|
deleteVoiceConnector(args: DeleteVoiceConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceConnectorCommandOutput>;
|
|
267
203
|
deleteVoiceConnector(args: DeleteVoiceConnectorCommandInput, cb: (err: any, data?: DeleteVoiceConnectorCommandOutput) => void): void;
|
|
268
204
|
deleteVoiceConnector(args: DeleteVoiceConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceConnectorCommandOutput) => void): void;
|
|
269
205
|
/**
|
|
270
|
-
* @
|
|
271
|
-
* <p>Deletes the emergency calling details from the specified Amazon Chime SDK Voice
|
|
272
|
-
* Connector.</p>
|
|
206
|
+
* @see {@link DeleteVoiceConnectorEmergencyCallingConfigurationCommand}
|
|
273
207
|
*/
|
|
274
208
|
deleteVoiceConnectorEmergencyCallingConfiguration(args: DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput>;
|
|
275
209
|
deleteVoiceConnectorEmergencyCallingConfiguration(args: DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput, cb: (err: any, data?: DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
276
210
|
deleteVoiceConnectorEmergencyCallingConfiguration(args: DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
277
211
|
/**
|
|
278
|
-
* @
|
|
279
|
-
* <p>Deletes an Amazon Chime SDK Voice Connector group. Any <code>VoiceConnectorItems</code>
|
|
280
|
-
* and phone numbers associated with the group must be removed before it can be
|
|
281
|
-
* deleted.</p>
|
|
212
|
+
* @see {@link DeleteVoiceConnectorGroupCommand}
|
|
282
213
|
*/
|
|
283
214
|
deleteVoiceConnectorGroup(args: DeleteVoiceConnectorGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceConnectorGroupCommandOutput>;
|
|
284
215
|
deleteVoiceConnectorGroup(args: DeleteVoiceConnectorGroupCommandInput, cb: (err: any, data?: DeleteVoiceConnectorGroupCommandOutput) => void): void;
|
|
285
216
|
deleteVoiceConnectorGroup(args: DeleteVoiceConnectorGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceConnectorGroupCommandOutput) => void): void;
|
|
286
217
|
/**
|
|
287
|
-
* @
|
|
288
|
-
* <p>Deletes the origination settings for the specified Amazon Chime SDK Voice Connector. </p>
|
|
289
|
-
* <note>
|
|
290
|
-
* <p>If emergency calling is configured for the Voice Connector, it must be
|
|
291
|
-
* deleted prior to deleting the origination settings.</p>
|
|
292
|
-
* </note>
|
|
218
|
+
* @see {@link DeleteVoiceConnectorOriginationCommand}
|
|
293
219
|
*/
|
|
294
220
|
deleteVoiceConnectorOrigination(args: DeleteVoiceConnectorOriginationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceConnectorOriginationCommandOutput>;
|
|
295
221
|
deleteVoiceConnectorOrigination(args: DeleteVoiceConnectorOriginationCommandInput, cb: (err: any, data?: DeleteVoiceConnectorOriginationCommandOutput) => void): void;
|
|
296
222
|
deleteVoiceConnectorOrigination(args: DeleteVoiceConnectorOriginationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceConnectorOriginationCommandOutput) => void): void;
|
|
297
223
|
/**
|
|
298
|
-
* @
|
|
299
|
-
* <p>Deletes the proxy configuration from the specified Amazon Chime SDK Voice Connector.</p>
|
|
224
|
+
* @see {@link DeleteVoiceConnectorProxyCommand}
|
|
300
225
|
*/
|
|
301
226
|
deleteVoiceConnectorProxy(args: DeleteVoiceConnectorProxyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceConnectorProxyCommandOutput>;
|
|
302
227
|
deleteVoiceConnectorProxy(args: DeleteVoiceConnectorProxyCommandInput, cb: (err: any, data?: DeleteVoiceConnectorProxyCommandOutput) => void): void;
|
|
303
228
|
deleteVoiceConnectorProxy(args: DeleteVoiceConnectorProxyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceConnectorProxyCommandOutput) => void): void;
|
|
304
229
|
/**
|
|
305
|
-
* @
|
|
306
|
-
* <p>Deletes a Voice Connector's streaming configuration.</p>
|
|
230
|
+
* @see {@link DeleteVoiceConnectorStreamingConfigurationCommand}
|
|
307
231
|
*/
|
|
308
232
|
deleteVoiceConnectorStreamingConfiguration(args: DeleteVoiceConnectorStreamingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceConnectorStreamingConfigurationCommandOutput>;
|
|
309
233
|
deleteVoiceConnectorStreamingConfiguration(args: DeleteVoiceConnectorStreamingConfigurationCommandInput, cb: (err: any, data?: DeleteVoiceConnectorStreamingConfigurationCommandOutput) => void): void;
|
|
310
234
|
deleteVoiceConnectorStreamingConfiguration(args: DeleteVoiceConnectorStreamingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceConnectorStreamingConfigurationCommandOutput) => void): void;
|
|
311
235
|
/**
|
|
312
|
-
* @
|
|
313
|
-
* <p>Deletes the termination settings for the specified Amazon Chime SDK Voice Connector.</p>
|
|
314
|
-
* <note>
|
|
315
|
-
* <p>If emergency calling is configured for the Voice Connector, it must be
|
|
316
|
-
* deleted prior to deleting the termination settings.</p>
|
|
317
|
-
* </note>
|
|
236
|
+
* @see {@link DeleteVoiceConnectorTerminationCommand}
|
|
318
237
|
*/
|
|
319
238
|
deleteVoiceConnectorTermination(args: DeleteVoiceConnectorTerminationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceConnectorTerminationCommandOutput>;
|
|
320
239
|
deleteVoiceConnectorTermination(args: DeleteVoiceConnectorTerminationCommandInput, cb: (err: any, data?: DeleteVoiceConnectorTerminationCommandOutput) => void): void;
|
|
321
240
|
deleteVoiceConnectorTermination(args: DeleteVoiceConnectorTerminationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceConnectorTerminationCommandOutput) => void): void;
|
|
322
241
|
/**
|
|
323
|
-
* @
|
|
324
|
-
* <p>Deletes the specified SIP credentials used by your equipment to
|
|
325
|
-
* authenticate during call termination.</p>
|
|
242
|
+
* @see {@link DeleteVoiceConnectorTerminationCredentialsCommand}
|
|
326
243
|
*/
|
|
327
244
|
deleteVoiceConnectorTerminationCredentials(args: DeleteVoiceConnectorTerminationCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceConnectorTerminationCredentialsCommandOutput>;
|
|
328
245
|
deleteVoiceConnectorTerminationCredentials(args: DeleteVoiceConnectorTerminationCredentialsCommandInput, cb: (err: any, data?: DeleteVoiceConnectorTerminationCredentialsCommandOutput) => void): void;
|
|
329
246
|
deleteVoiceConnectorTerminationCredentials(args: DeleteVoiceConnectorTerminationCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceConnectorTerminationCredentialsCommandOutput) => void): void;
|
|
330
247
|
/**
|
|
331
|
-
* @
|
|
332
|
-
* <p>Deletes a voice profile, including its voice print and enrollment data. WARNING: This action is not reversible.</p>
|
|
248
|
+
* @see {@link DeleteVoiceProfileCommand}
|
|
333
249
|
*/
|
|
334
250
|
deleteVoiceProfile(args: DeleteVoiceProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceProfileCommandOutput>;
|
|
335
251
|
deleteVoiceProfile(args: DeleteVoiceProfileCommandInput, cb: (err: any, data?: DeleteVoiceProfileCommandOutput) => void): void;
|
|
336
252
|
deleteVoiceProfile(args: DeleteVoiceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceProfileCommandOutput) => void): void;
|
|
337
253
|
/**
|
|
338
|
-
* @
|
|
339
|
-
* <p>Deletes all voice profiles in the domain. WARNING: This action is not reversible.</p>
|
|
254
|
+
* @see {@link DeleteVoiceProfileDomainCommand}
|
|
340
255
|
*/
|
|
341
256
|
deleteVoiceProfileDomain(args: DeleteVoiceProfileDomainCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceProfileDomainCommandOutput>;
|
|
342
257
|
deleteVoiceProfileDomain(args: DeleteVoiceProfileDomainCommandInput, cb: (err: any, data?: DeleteVoiceProfileDomainCommandOutput) => void): void;
|
|
343
258
|
deleteVoiceProfileDomain(args: DeleteVoiceProfileDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceProfileDomainCommandOutput) => void): void;
|
|
344
259
|
/**
|
|
345
|
-
* @
|
|
346
|
-
* <p>Disassociates the specified phone numbers from the specified
|
|
347
|
-
* Amazon Chime SDK Voice Connector.</p>
|
|
260
|
+
* @see {@link DisassociatePhoneNumbersFromVoiceConnectorCommand}
|
|
348
261
|
*/
|
|
349
262
|
disassociatePhoneNumbersFromVoiceConnector(args: DisassociatePhoneNumbersFromVoiceConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DisassociatePhoneNumbersFromVoiceConnectorCommandOutput>;
|
|
350
263
|
disassociatePhoneNumbersFromVoiceConnector(args: DisassociatePhoneNumbersFromVoiceConnectorCommandInput, cb: (err: any, data?: DisassociatePhoneNumbersFromVoiceConnectorCommandOutput) => void): void;
|
|
351
264
|
disassociatePhoneNumbersFromVoiceConnector(args: DisassociatePhoneNumbersFromVoiceConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociatePhoneNumbersFromVoiceConnectorCommandOutput) => void): void;
|
|
352
265
|
/**
|
|
353
|
-
* @
|
|
354
|
-
* <p>Disassociates the specified phone numbers from the specified Amazon Chime SDK Voice
|
|
355
|
-
* Connector group.</p>
|
|
266
|
+
* @see {@link DisassociatePhoneNumbersFromVoiceConnectorGroupCommand}
|
|
356
267
|
*/
|
|
357
268
|
disassociatePhoneNumbersFromVoiceConnectorGroup(args: DisassociatePhoneNumbersFromVoiceConnectorGroupCommandInput, options?: __HttpHandlerOptions): Promise<DisassociatePhoneNumbersFromVoiceConnectorGroupCommandOutput>;
|
|
358
269
|
disassociatePhoneNumbersFromVoiceConnectorGroup(args: DisassociatePhoneNumbersFromVoiceConnectorGroupCommandInput, cb: (err: any, data?: DisassociatePhoneNumbersFromVoiceConnectorGroupCommandOutput) => void): void;
|
|
359
270
|
disassociatePhoneNumbersFromVoiceConnectorGroup(args: DisassociatePhoneNumbersFromVoiceConnectorGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociatePhoneNumbersFromVoiceConnectorGroupCommandOutput) => void): void;
|
|
360
271
|
/**
|
|
361
|
-
* @
|
|
362
|
-
* <p>Retrieves the global settings for the Amazon Chime SDK Voice Connectors in an AWS account.</p>
|
|
272
|
+
* @see {@link GetGlobalSettingsCommand}
|
|
363
273
|
*/
|
|
364
274
|
getGlobalSettings(args: GetGlobalSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetGlobalSettingsCommandOutput>;
|
|
365
275
|
getGlobalSettings(args: GetGlobalSettingsCommandInput, cb: (err: any, data?: GetGlobalSettingsCommandOutput) => void): void;
|
|
366
276
|
getGlobalSettings(args: GetGlobalSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGlobalSettingsCommandOutput) => void): void;
|
|
367
277
|
/**
|
|
368
|
-
* @
|
|
369
|
-
* <p>Retrieves details for the specified phone number ID, such as associations,
|
|
370
|
-
* capabilities, and product type.</p>
|
|
278
|
+
* @see {@link GetPhoneNumberCommand}
|
|
371
279
|
*/
|
|
372
280
|
getPhoneNumber(args: GetPhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<GetPhoneNumberCommandOutput>;
|
|
373
281
|
getPhoneNumber(args: GetPhoneNumberCommandInput, cb: (err: any, data?: GetPhoneNumberCommandOutput) => void): void;
|
|
374
282
|
getPhoneNumber(args: GetPhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPhoneNumberCommandOutput) => void): void;
|
|
375
283
|
/**
|
|
376
|
-
* @
|
|
377
|
-
* <p>Retrieves details for the specified phone number order, such as the order
|
|
378
|
-
* creation timestamp, phone numbers in E.164 format, product type, and
|
|
379
|
-
* order status.</p>
|
|
284
|
+
* @see {@link GetPhoneNumberOrderCommand}
|
|
380
285
|
*/
|
|
381
286
|
getPhoneNumberOrder(args: GetPhoneNumberOrderCommandInput, options?: __HttpHandlerOptions): Promise<GetPhoneNumberOrderCommandOutput>;
|
|
382
287
|
getPhoneNumberOrder(args: GetPhoneNumberOrderCommandInput, cb: (err: any, data?: GetPhoneNumberOrderCommandOutput) => void): void;
|
|
383
288
|
getPhoneNumberOrder(args: GetPhoneNumberOrderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPhoneNumberOrderCommandOutput) => void): void;
|
|
384
289
|
/**
|
|
385
|
-
* @
|
|
386
|
-
* <p>Retrieves the phone number settings for the administrator's AWS account,
|
|
387
|
-
* such as the default outbound calling name.</p>
|
|
290
|
+
* @see {@link GetPhoneNumberSettingsCommand}
|
|
388
291
|
*/
|
|
389
292
|
getPhoneNumberSettings(args: GetPhoneNumberSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetPhoneNumberSettingsCommandOutput>;
|
|
390
293
|
getPhoneNumberSettings(args: GetPhoneNumberSettingsCommandInput, cb: (err: any, data?: GetPhoneNumberSettingsCommandOutput) => void): void;
|
|
391
294
|
getPhoneNumberSettings(args: GetPhoneNumberSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPhoneNumberSettingsCommandOutput) => void): void;
|
|
392
295
|
/**
|
|
393
|
-
* @
|
|
394
|
-
* <p>Retrieves the specified proxy session details for the specified Amazon Chime SDK Voice Connector.</p>
|
|
296
|
+
* @see {@link GetProxySessionCommand}
|
|
395
297
|
*/
|
|
396
298
|
getProxySession(args: GetProxySessionCommandInput, options?: __HttpHandlerOptions): Promise<GetProxySessionCommandOutput>;
|
|
397
299
|
getProxySession(args: GetProxySessionCommandInput, cb: (err: any, data?: GetProxySessionCommandOutput) => void): void;
|
|
398
300
|
getProxySession(args: GetProxySessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProxySessionCommandOutput) => void): void;
|
|
399
301
|
/**
|
|
400
|
-
* @
|
|
401
|
-
* <p>Retrieves the information for a SIP media application, including name,
|
|
402
|
-
* AWS Region, and endpoints.</p>
|
|
302
|
+
* @see {@link GetSipMediaApplicationCommand}
|
|
403
303
|
*/
|
|
404
304
|
getSipMediaApplication(args: GetSipMediaApplicationCommandInput, options?: __HttpHandlerOptions): Promise<GetSipMediaApplicationCommandOutput>;
|
|
405
305
|
getSipMediaApplication(args: GetSipMediaApplicationCommandInput, cb: (err: any, data?: GetSipMediaApplicationCommandOutput) => void): void;
|
|
406
306
|
getSipMediaApplication(args: GetSipMediaApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSipMediaApplicationCommandOutput) => void): void;
|
|
407
307
|
/**
|
|
408
|
-
* @
|
|
409
|
-
* <p>Gets the Alexa Skill configuration for the SIP media application.</p>
|
|
308
|
+
* @see {@link GetSipMediaApplicationAlexaSkillConfigurationCommand}
|
|
410
309
|
*/
|
|
411
310
|
getSipMediaApplicationAlexaSkillConfiguration(args: GetSipMediaApplicationAlexaSkillConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetSipMediaApplicationAlexaSkillConfigurationCommandOutput>;
|
|
412
311
|
getSipMediaApplicationAlexaSkillConfiguration(args: GetSipMediaApplicationAlexaSkillConfigurationCommandInput, cb: (err: any, data?: GetSipMediaApplicationAlexaSkillConfigurationCommandOutput) => void): void;
|
|
413
312
|
getSipMediaApplicationAlexaSkillConfiguration(args: GetSipMediaApplicationAlexaSkillConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSipMediaApplicationAlexaSkillConfigurationCommandOutput) => void): void;
|
|
414
313
|
/**
|
|
415
|
-
* @
|
|
416
|
-
* <p>Retrieves the logging configuration for the specified SIP media application.</p>
|
|
314
|
+
* @see {@link GetSipMediaApplicationLoggingConfigurationCommand}
|
|
417
315
|
*/
|
|
418
316
|
getSipMediaApplicationLoggingConfiguration(args: GetSipMediaApplicationLoggingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetSipMediaApplicationLoggingConfigurationCommandOutput>;
|
|
419
317
|
getSipMediaApplicationLoggingConfiguration(args: GetSipMediaApplicationLoggingConfigurationCommandInput, cb: (err: any, data?: GetSipMediaApplicationLoggingConfigurationCommandOutput) => void): void;
|
|
420
318
|
getSipMediaApplicationLoggingConfiguration(args: GetSipMediaApplicationLoggingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSipMediaApplicationLoggingConfigurationCommandOutput) => void): void;
|
|
421
319
|
/**
|
|
422
|
-
* @
|
|
423
|
-
* <p>Retrieves the details of a SIP rule, such as the rule ID, name, triggers, and
|
|
424
|
-
* target endpoints.</p>
|
|
320
|
+
* @see {@link GetSipRuleCommand}
|
|
425
321
|
*/
|
|
426
322
|
getSipRule(args: GetSipRuleCommandInput, options?: __HttpHandlerOptions): Promise<GetSipRuleCommandOutput>;
|
|
427
323
|
getSipRule(args: GetSipRuleCommandInput, cb: (err: any, data?: GetSipRuleCommandOutput) => void): void;
|
|
428
324
|
getSipRule(args: GetSipRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSipRuleCommandOutput) => void): void;
|
|
429
325
|
/**
|
|
430
|
-
* @
|
|
431
|
-
* <p>Retrieves the details of the specified speaker search task.</p>
|
|
326
|
+
* @see {@link GetSpeakerSearchTaskCommand}
|
|
432
327
|
*/
|
|
433
328
|
getSpeakerSearchTask(args: GetSpeakerSearchTaskCommandInput, options?: __HttpHandlerOptions): Promise<GetSpeakerSearchTaskCommandOutput>;
|
|
434
329
|
getSpeakerSearchTask(args: GetSpeakerSearchTaskCommandInput, cb: (err: any, data?: GetSpeakerSearchTaskCommandOutput) => void): void;
|
|
435
330
|
getSpeakerSearchTask(args: GetSpeakerSearchTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSpeakerSearchTaskCommandOutput) => void): void;
|
|
436
331
|
/**
|
|
437
|
-
* @
|
|
438
|
-
* <p>Retrieves details for the specified Amazon Chime SDK Voice Connector, such as
|
|
439
|
-
* timestamps,name, outbound host, and encryption requirements.</p>
|
|
332
|
+
* @see {@link GetVoiceConnectorCommand}
|
|
440
333
|
*/
|
|
441
334
|
getVoiceConnector(args: GetVoiceConnectorCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorCommandOutput>;
|
|
442
335
|
getVoiceConnector(args: GetVoiceConnectorCommandInput, cb: (err: any, data?: GetVoiceConnectorCommandOutput) => void): void;
|
|
443
336
|
getVoiceConnector(args: GetVoiceConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorCommandOutput) => void): void;
|
|
444
337
|
/**
|
|
445
|
-
* @
|
|
446
|
-
* <p>Retrieves the emergency calling configuration details for the specified Voice Connector.</p>
|
|
338
|
+
* @see {@link GetVoiceConnectorEmergencyCallingConfigurationCommand}
|
|
447
339
|
*/
|
|
448
340
|
getVoiceConnectorEmergencyCallingConfiguration(args: GetVoiceConnectorEmergencyCallingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorEmergencyCallingConfigurationCommandOutput>;
|
|
449
341
|
getVoiceConnectorEmergencyCallingConfiguration(args: GetVoiceConnectorEmergencyCallingConfigurationCommandInput, cb: (err: any, data?: GetVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
450
342
|
getVoiceConnectorEmergencyCallingConfiguration(args: GetVoiceConnectorEmergencyCallingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
451
343
|
/**
|
|
452
|
-
* @
|
|
453
|
-
* <p>Retrieves details for the specified Amazon Chime SDK Voice Connector group,
|
|
454
|
-
* such as timestamps,name, and associated <code>VoiceConnectorItems</code>.</p>
|
|
344
|
+
* @see {@link GetVoiceConnectorGroupCommand}
|
|
455
345
|
*/
|
|
456
346
|
getVoiceConnectorGroup(args: GetVoiceConnectorGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorGroupCommandOutput>;
|
|
457
347
|
getVoiceConnectorGroup(args: GetVoiceConnectorGroupCommandInput, cb: (err: any, data?: GetVoiceConnectorGroupCommandOutput) => void): void;
|
|
458
348
|
getVoiceConnectorGroup(args: GetVoiceConnectorGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorGroupCommandOutput) => void): void;
|
|
459
349
|
/**
|
|
460
|
-
* @
|
|
461
|
-
* <p>Retrieves the logging configuration settings for the specified Voice Connector.
|
|
462
|
-
* Shows whether SIP message logs are enabled for sending to Amazon CloudWatch Logs.</p>
|
|
350
|
+
* @see {@link GetVoiceConnectorLoggingConfigurationCommand}
|
|
463
351
|
*/
|
|
464
352
|
getVoiceConnectorLoggingConfiguration(args: GetVoiceConnectorLoggingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorLoggingConfigurationCommandOutput>;
|
|
465
353
|
getVoiceConnectorLoggingConfiguration(args: GetVoiceConnectorLoggingConfigurationCommandInput, cb: (err: any, data?: GetVoiceConnectorLoggingConfigurationCommandOutput) => void): void;
|
|
466
354
|
getVoiceConnectorLoggingConfiguration(args: GetVoiceConnectorLoggingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorLoggingConfigurationCommandOutput) => void): void;
|
|
467
355
|
/**
|
|
468
|
-
* @
|
|
469
|
-
* <p>Retrieves the origination settings for the specified Voice Connector.</p>
|
|
356
|
+
* @see {@link GetVoiceConnectorOriginationCommand}
|
|
470
357
|
*/
|
|
471
358
|
getVoiceConnectorOrigination(args: GetVoiceConnectorOriginationCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorOriginationCommandOutput>;
|
|
472
359
|
getVoiceConnectorOrigination(args: GetVoiceConnectorOriginationCommandInput, cb: (err: any, data?: GetVoiceConnectorOriginationCommandOutput) => void): void;
|
|
473
360
|
getVoiceConnectorOrigination(args: GetVoiceConnectorOriginationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorOriginationCommandOutput) => void): void;
|
|
474
361
|
/**
|
|
475
|
-
* @
|
|
476
|
-
* <p>Retrieves the proxy configuration details for the specified Amazon Chime SDK Voice
|
|
477
|
-
* Connector.</p>
|
|
362
|
+
* @see {@link GetVoiceConnectorProxyCommand}
|
|
478
363
|
*/
|
|
479
364
|
getVoiceConnectorProxy(args: GetVoiceConnectorProxyCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorProxyCommandOutput>;
|
|
480
365
|
getVoiceConnectorProxy(args: GetVoiceConnectorProxyCommandInput, cb: (err: any, data?: GetVoiceConnectorProxyCommandOutput) => void): void;
|
|
481
366
|
getVoiceConnectorProxy(args: GetVoiceConnectorProxyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorProxyCommandOutput) => void): void;
|
|
482
367
|
/**
|
|
483
|
-
* @
|
|
484
|
-
* <p>Retrieves the streaming configuration details for the specified Amazon Chime SDK
|
|
485
|
-
* Voice Connector. Shows whether media streaming is enabled for sending to Amazon
|
|
486
|
-
* Kinesis. It also shows the retention period, in hours, for the Amazon Kinesis data.</p>
|
|
368
|
+
* @see {@link GetVoiceConnectorStreamingConfigurationCommand}
|
|
487
369
|
*/
|
|
488
370
|
getVoiceConnectorStreamingConfiguration(args: GetVoiceConnectorStreamingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorStreamingConfigurationCommandOutput>;
|
|
489
371
|
getVoiceConnectorStreamingConfiguration(args: GetVoiceConnectorStreamingConfigurationCommandInput, cb: (err: any, data?: GetVoiceConnectorStreamingConfigurationCommandOutput) => void): void;
|
|
490
372
|
getVoiceConnectorStreamingConfiguration(args: GetVoiceConnectorStreamingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorStreamingConfigurationCommandOutput) => void): void;
|
|
491
373
|
/**
|
|
492
|
-
* @
|
|
493
|
-
* <p>Retrieves the termination setting details for the specified Voice Connector.</p>
|
|
374
|
+
* @see {@link GetVoiceConnectorTerminationCommand}
|
|
494
375
|
*/
|
|
495
376
|
getVoiceConnectorTermination(args: GetVoiceConnectorTerminationCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorTerminationCommandOutput>;
|
|
496
377
|
getVoiceConnectorTermination(args: GetVoiceConnectorTerminationCommandInput, cb: (err: any, data?: GetVoiceConnectorTerminationCommandOutput) => void): void;
|
|
497
378
|
getVoiceConnectorTermination(args: GetVoiceConnectorTerminationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorTerminationCommandOutput) => void): void;
|
|
498
379
|
/**
|
|
499
|
-
* @
|
|
500
|
-
* <p>Retrieves information about the last time a <code>SIP OPTIONS</code> ping
|
|
501
|
-
* was received from your SIP infrastructure for the specified Amazon Chime SDK Voice
|
|
502
|
-
* Connector.</p>
|
|
380
|
+
* @see {@link GetVoiceConnectorTerminationHealthCommand}
|
|
503
381
|
*/
|
|
504
382
|
getVoiceConnectorTerminationHealth(args: GetVoiceConnectorTerminationHealthCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorTerminationHealthCommandOutput>;
|
|
505
383
|
getVoiceConnectorTerminationHealth(args: GetVoiceConnectorTerminationHealthCommandInput, cb: (err: any, data?: GetVoiceConnectorTerminationHealthCommandOutput) => void): void;
|
|
506
384
|
getVoiceConnectorTerminationHealth(args: GetVoiceConnectorTerminationHealthCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorTerminationHealthCommandOutput) => void): void;
|
|
507
385
|
/**
|
|
508
|
-
* @
|
|
509
|
-
* <p>Retrieves the details of the specified voice profile.</p>
|
|
386
|
+
* @see {@link GetVoiceProfileCommand}
|
|
510
387
|
*/
|
|
511
388
|
getVoiceProfile(args: GetVoiceProfileCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceProfileCommandOutput>;
|
|
512
389
|
getVoiceProfile(args: GetVoiceProfileCommandInput, cb: (err: any, data?: GetVoiceProfileCommandOutput) => void): void;
|
|
513
390
|
getVoiceProfile(args: GetVoiceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceProfileCommandOutput) => void): void;
|
|
514
391
|
/**
|
|
515
|
-
* @
|
|
516
|
-
* <p>Retrieves the details of the specified voice profile domain.</p>
|
|
392
|
+
* @see {@link GetVoiceProfileDomainCommand}
|
|
517
393
|
*/
|
|
518
394
|
getVoiceProfileDomain(args: GetVoiceProfileDomainCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceProfileDomainCommandOutput>;
|
|
519
395
|
getVoiceProfileDomain(args: GetVoiceProfileDomainCommandInput, cb: (err: any, data?: GetVoiceProfileDomainCommandOutput) => void): void;
|
|
520
396
|
getVoiceProfileDomain(args: GetVoiceProfileDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceProfileDomainCommandOutput) => void): void;
|
|
521
397
|
/**
|
|
522
|
-
* @
|
|
523
|
-
* <p>Retrieves the details of a voice tone analysis task.</p>
|
|
398
|
+
* @see {@link GetVoiceToneAnalysisTaskCommand}
|
|
524
399
|
*/
|
|
525
400
|
getVoiceToneAnalysisTask(args: GetVoiceToneAnalysisTaskCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceToneAnalysisTaskCommandOutput>;
|
|
526
401
|
getVoiceToneAnalysisTask(args: GetVoiceToneAnalysisTaskCommandInput, cb: (err: any, data?: GetVoiceToneAnalysisTaskCommandOutput) => void): void;
|
|
527
402
|
getVoiceToneAnalysisTask(args: GetVoiceToneAnalysisTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceToneAnalysisTaskCommandOutput) => void): void;
|
|
528
403
|
/**
|
|
529
|
-
* @
|
|
530
|
-
* <p>Lists the available AWS Regions in which you can create an Amazon Chime SDK Voice Connector.</p>
|
|
404
|
+
* @see {@link ListAvailableVoiceConnectorRegionsCommand}
|
|
531
405
|
*/
|
|
532
406
|
listAvailableVoiceConnectorRegions(args: ListAvailableVoiceConnectorRegionsCommandInput, options?: __HttpHandlerOptions): Promise<ListAvailableVoiceConnectorRegionsCommandOutput>;
|
|
533
407
|
listAvailableVoiceConnectorRegions(args: ListAvailableVoiceConnectorRegionsCommandInput, cb: (err: any, data?: ListAvailableVoiceConnectorRegionsCommandOutput) => void): void;
|
|
534
408
|
listAvailableVoiceConnectorRegions(args: ListAvailableVoiceConnectorRegionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAvailableVoiceConnectorRegionsCommandOutput) => void): void;
|
|
535
409
|
/**
|
|
536
|
-
* @
|
|
537
|
-
* <p>Lists the phone numbers for an administrator's Amazon Chime SDK account.</p>
|
|
410
|
+
* @see {@link ListPhoneNumberOrdersCommand}
|
|
538
411
|
*/
|
|
539
412
|
listPhoneNumberOrders(args: ListPhoneNumberOrdersCommandInput, options?: __HttpHandlerOptions): Promise<ListPhoneNumberOrdersCommandOutput>;
|
|
540
413
|
listPhoneNumberOrders(args: ListPhoneNumberOrdersCommandInput, cb: (err: any, data?: ListPhoneNumberOrdersCommandOutput) => void): void;
|
|
541
414
|
listPhoneNumberOrders(args: ListPhoneNumberOrdersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPhoneNumberOrdersCommandOutput) => void): void;
|
|
542
415
|
/**
|
|
543
|
-
* @
|
|
544
|
-
* <p>Lists the phone numbers for the specified Amazon Chime SDK account,
|
|
545
|
-
* Amazon Chime SDK user, Amazon Chime SDK Voice Connector, or Amazon Chime SDK Voice
|
|
546
|
-
* Connector group.</p>
|
|
416
|
+
* @see {@link ListPhoneNumbersCommand}
|
|
547
417
|
*/
|
|
548
418
|
listPhoneNumbers(args: ListPhoneNumbersCommandInput, options?: __HttpHandlerOptions): Promise<ListPhoneNumbersCommandOutput>;
|
|
549
419
|
listPhoneNumbers(args: ListPhoneNumbersCommandInput, cb: (err: any, data?: ListPhoneNumbersCommandOutput) => void): void;
|
|
550
420
|
listPhoneNumbers(args: ListPhoneNumbersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPhoneNumbersCommandOutput) => void): void;
|
|
551
421
|
/**
|
|
552
|
-
* @
|
|
553
|
-
* <p>Lists the proxy sessions for the specified Amazon Chime SDK Voice Connector.</p>
|
|
422
|
+
* @see {@link ListProxySessionsCommand}
|
|
554
423
|
*/
|
|
555
424
|
listProxySessions(args: ListProxySessionsCommandInput, options?: __HttpHandlerOptions): Promise<ListProxySessionsCommandOutput>;
|
|
556
425
|
listProxySessions(args: ListProxySessionsCommandInput, cb: (err: any, data?: ListProxySessionsCommandOutput) => void): void;
|
|
557
426
|
listProxySessions(args: ListProxySessionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProxySessionsCommandOutput) => void): void;
|
|
558
427
|
/**
|
|
559
|
-
* @
|
|
560
|
-
* <p>Lists the SIP media applications under the administrator's AWS account.</p>
|
|
428
|
+
* @see {@link ListSipMediaApplicationsCommand}
|
|
561
429
|
*/
|
|
562
430
|
listSipMediaApplications(args: ListSipMediaApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListSipMediaApplicationsCommandOutput>;
|
|
563
431
|
listSipMediaApplications(args: ListSipMediaApplicationsCommandInput, cb: (err: any, data?: ListSipMediaApplicationsCommandOutput) => void): void;
|
|
564
432
|
listSipMediaApplications(args: ListSipMediaApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSipMediaApplicationsCommandOutput) => void): void;
|
|
565
433
|
/**
|
|
566
|
-
* @
|
|
567
|
-
* <p>Lists the SIP rules under the administrator's AWS account.</p>
|
|
434
|
+
* @see {@link ListSipRulesCommand}
|
|
568
435
|
*/
|
|
569
436
|
listSipRules(args: ListSipRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListSipRulesCommandOutput>;
|
|
570
437
|
listSipRules(args: ListSipRulesCommandInput, cb: (err: any, data?: ListSipRulesCommandOutput) => void): void;
|
|
571
438
|
listSipRules(args: ListSipRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSipRulesCommandOutput) => void): void;
|
|
572
439
|
/**
|
|
573
|
-
* @
|
|
574
|
-
* <p>Lists the countries that you can order phone numbers from.</p>
|
|
440
|
+
* @see {@link ListSupportedPhoneNumberCountriesCommand}
|
|
575
441
|
*/
|
|
576
442
|
listSupportedPhoneNumberCountries(args: ListSupportedPhoneNumberCountriesCommandInput, options?: __HttpHandlerOptions): Promise<ListSupportedPhoneNumberCountriesCommandOutput>;
|
|
577
443
|
listSupportedPhoneNumberCountries(args: ListSupportedPhoneNumberCountriesCommandInput, cb: (err: any, data?: ListSupportedPhoneNumberCountriesCommandOutput) => void): void;
|
|
578
444
|
listSupportedPhoneNumberCountries(args: ListSupportedPhoneNumberCountriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSupportedPhoneNumberCountriesCommandOutput) => void): void;
|
|
579
445
|
/**
|
|
580
|
-
* @
|
|
581
|
-
* <p>Returns a list of the tags in a given resource.</p>
|
|
446
|
+
* @see {@link ListTagsForResourceCommand}
|
|
582
447
|
*/
|
|
583
448
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
584
449
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
585
450
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
586
451
|
/**
|
|
587
|
-
* @
|
|
588
|
-
* <p>Lists the Amazon Chime SDK Voice Connector groups in the administrator's AWS
|
|
589
|
-
* account.</p>
|
|
452
|
+
* @see {@link ListVoiceConnectorGroupsCommand}
|
|
590
453
|
*/
|
|
591
454
|
listVoiceConnectorGroups(args: ListVoiceConnectorGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListVoiceConnectorGroupsCommandOutput>;
|
|
592
455
|
listVoiceConnectorGroups(args: ListVoiceConnectorGroupsCommandInput, cb: (err: any, data?: ListVoiceConnectorGroupsCommandOutput) => void): void;
|
|
593
456
|
listVoiceConnectorGroups(args: ListVoiceConnectorGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVoiceConnectorGroupsCommandOutput) => void): void;
|
|
594
457
|
/**
|
|
595
|
-
* @
|
|
596
|
-
* <p>Lists the Amazon Chime SDK Voice Connectors in the administrators
|
|
597
|
-
* AWS account.</p>
|
|
458
|
+
* @see {@link ListVoiceConnectorsCommand}
|
|
598
459
|
*/
|
|
599
460
|
listVoiceConnectors(args: ListVoiceConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<ListVoiceConnectorsCommandOutput>;
|
|
600
461
|
listVoiceConnectors(args: ListVoiceConnectorsCommandInput, cb: (err: any, data?: ListVoiceConnectorsCommandOutput) => void): void;
|
|
601
462
|
listVoiceConnectors(args: ListVoiceConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVoiceConnectorsCommandOutput) => void): void;
|
|
602
463
|
/**
|
|
603
|
-
* @
|
|
604
|
-
* <p>Lists the SIP credentials for the specified Amazon Chime SDK Voice Connector.</p>
|
|
464
|
+
* @see {@link ListVoiceConnectorTerminationCredentialsCommand}
|
|
605
465
|
*/
|
|
606
466
|
listVoiceConnectorTerminationCredentials(args: ListVoiceConnectorTerminationCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<ListVoiceConnectorTerminationCredentialsCommandOutput>;
|
|
607
467
|
listVoiceConnectorTerminationCredentials(args: ListVoiceConnectorTerminationCredentialsCommandInput, cb: (err: any, data?: ListVoiceConnectorTerminationCredentialsCommandOutput) => void): void;
|
|
608
468
|
listVoiceConnectorTerminationCredentials(args: ListVoiceConnectorTerminationCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVoiceConnectorTerminationCredentialsCommandOutput) => void): void;
|
|
609
469
|
/**
|
|
610
|
-
* @
|
|
611
|
-
* <p>Lists the specified voice profile domains in the administrator's AWS account.
|
|
612
|
-
* </p>
|
|
470
|
+
* @see {@link ListVoiceProfileDomainsCommand}
|
|
613
471
|
*/
|
|
614
472
|
listVoiceProfileDomains(args: ListVoiceProfileDomainsCommandInput, options?: __HttpHandlerOptions): Promise<ListVoiceProfileDomainsCommandOutput>;
|
|
615
473
|
listVoiceProfileDomains(args: ListVoiceProfileDomainsCommandInput, cb: (err: any, data?: ListVoiceProfileDomainsCommandOutput) => void): void;
|
|
616
474
|
listVoiceProfileDomains(args: ListVoiceProfileDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVoiceProfileDomainsCommandOutput) => void): void;
|
|
617
475
|
/**
|
|
618
|
-
* @
|
|
619
|
-
* <p>Lists the voice profiles in a voice profile domain.</p>
|
|
476
|
+
* @see {@link ListVoiceProfilesCommand}
|
|
620
477
|
*/
|
|
621
478
|
listVoiceProfiles(args: ListVoiceProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListVoiceProfilesCommandOutput>;
|
|
622
479
|
listVoiceProfiles(args: ListVoiceProfilesCommandInput, cb: (err: any, data?: ListVoiceProfilesCommandOutput) => void): void;
|
|
623
480
|
listVoiceProfiles(args: ListVoiceProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVoiceProfilesCommandOutput) => void): void;
|
|
624
481
|
/**
|
|
625
|
-
* @
|
|
626
|
-
* <p>Updates the Alexa Skill configuration for the SIP media application.</p>
|
|
482
|
+
* @see {@link PutSipMediaApplicationAlexaSkillConfigurationCommand}
|
|
627
483
|
*/
|
|
628
484
|
putSipMediaApplicationAlexaSkillConfiguration(args: PutSipMediaApplicationAlexaSkillConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutSipMediaApplicationAlexaSkillConfigurationCommandOutput>;
|
|
629
485
|
putSipMediaApplicationAlexaSkillConfiguration(args: PutSipMediaApplicationAlexaSkillConfigurationCommandInput, cb: (err: any, data?: PutSipMediaApplicationAlexaSkillConfigurationCommandOutput) => void): void;
|
|
630
486
|
putSipMediaApplicationAlexaSkillConfiguration(args: PutSipMediaApplicationAlexaSkillConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutSipMediaApplicationAlexaSkillConfigurationCommandOutput) => void): void;
|
|
631
487
|
/**
|
|
632
|
-
* @
|
|
633
|
-
* <p>Updates the logging configuration for the specified SIP media application.</p>
|
|
488
|
+
* @see {@link PutSipMediaApplicationLoggingConfigurationCommand}
|
|
634
489
|
*/
|
|
635
490
|
putSipMediaApplicationLoggingConfiguration(args: PutSipMediaApplicationLoggingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutSipMediaApplicationLoggingConfigurationCommandOutput>;
|
|
636
491
|
putSipMediaApplicationLoggingConfiguration(args: PutSipMediaApplicationLoggingConfigurationCommandInput, cb: (err: any, data?: PutSipMediaApplicationLoggingConfigurationCommandOutput) => void): void;
|
|
637
492
|
putSipMediaApplicationLoggingConfiguration(args: PutSipMediaApplicationLoggingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutSipMediaApplicationLoggingConfigurationCommandOutput) => void): void;
|
|
638
493
|
/**
|
|
639
|
-
* @
|
|
640
|
-
* <p>Updates a Voice Connector's emergency calling configuration.</p>
|
|
494
|
+
* @see {@link PutVoiceConnectorEmergencyCallingConfigurationCommand}
|
|
641
495
|
*/
|
|
642
496
|
putVoiceConnectorEmergencyCallingConfiguration(args: PutVoiceConnectorEmergencyCallingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutVoiceConnectorEmergencyCallingConfigurationCommandOutput>;
|
|
643
497
|
putVoiceConnectorEmergencyCallingConfiguration(args: PutVoiceConnectorEmergencyCallingConfigurationCommandInput, cb: (err: any, data?: PutVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
644
498
|
putVoiceConnectorEmergencyCallingConfiguration(args: PutVoiceConnectorEmergencyCallingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
645
499
|
/**
|
|
646
|
-
* @
|
|
647
|
-
* <p>Updates a Voice Connector's logging configuration.</p>
|
|
500
|
+
* @see {@link PutVoiceConnectorLoggingConfigurationCommand}
|
|
648
501
|
*/
|
|
649
502
|
putVoiceConnectorLoggingConfiguration(args: PutVoiceConnectorLoggingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutVoiceConnectorLoggingConfigurationCommandOutput>;
|
|
650
503
|
putVoiceConnectorLoggingConfiguration(args: PutVoiceConnectorLoggingConfigurationCommandInput, cb: (err: any, data?: PutVoiceConnectorLoggingConfigurationCommandOutput) => void): void;
|
|
651
504
|
putVoiceConnectorLoggingConfiguration(args: PutVoiceConnectorLoggingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutVoiceConnectorLoggingConfigurationCommandOutput) => void): void;
|
|
652
505
|
/**
|
|
653
|
-
* @
|
|
654
|
-
* <p>Updates a Voice Connector's origination settings.</p>
|
|
506
|
+
* @see {@link PutVoiceConnectorOriginationCommand}
|
|
655
507
|
*/
|
|
656
508
|
putVoiceConnectorOrigination(args: PutVoiceConnectorOriginationCommandInput, options?: __HttpHandlerOptions): Promise<PutVoiceConnectorOriginationCommandOutput>;
|
|
657
509
|
putVoiceConnectorOrigination(args: PutVoiceConnectorOriginationCommandInput, cb: (err: any, data?: PutVoiceConnectorOriginationCommandOutput) => void): void;
|
|
658
510
|
putVoiceConnectorOrigination(args: PutVoiceConnectorOriginationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutVoiceConnectorOriginationCommandOutput) => void): void;
|
|
659
511
|
/**
|
|
660
|
-
* @
|
|
661
|
-
* <p>Puts the specified proxy configuration to the specified Amazon Chime SDK Voice Connector.</p>
|
|
512
|
+
* @see {@link PutVoiceConnectorProxyCommand}
|
|
662
513
|
*/
|
|
663
514
|
putVoiceConnectorProxy(args: PutVoiceConnectorProxyCommandInput, options?: __HttpHandlerOptions): Promise<PutVoiceConnectorProxyCommandOutput>;
|
|
664
515
|
putVoiceConnectorProxy(args: PutVoiceConnectorProxyCommandInput, cb: (err: any, data?: PutVoiceConnectorProxyCommandOutput) => void): void;
|
|
665
516
|
putVoiceConnectorProxy(args: PutVoiceConnectorProxyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutVoiceConnectorProxyCommandOutput) => void): void;
|
|
666
517
|
/**
|
|
667
|
-
* @
|
|
668
|
-
* <p>Updates a Voice Connector's streaming configuration settings.</p>
|
|
518
|
+
* @see {@link PutVoiceConnectorStreamingConfigurationCommand}
|
|
669
519
|
*/
|
|
670
520
|
putVoiceConnectorStreamingConfiguration(args: PutVoiceConnectorStreamingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutVoiceConnectorStreamingConfigurationCommandOutput>;
|
|
671
521
|
putVoiceConnectorStreamingConfiguration(args: PutVoiceConnectorStreamingConfigurationCommandInput, cb: (err: any, data?: PutVoiceConnectorStreamingConfigurationCommandOutput) => void): void;
|
|
672
522
|
putVoiceConnectorStreamingConfiguration(args: PutVoiceConnectorStreamingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutVoiceConnectorStreamingConfigurationCommandOutput) => void): void;
|
|
673
523
|
/**
|
|
674
|
-
* @
|
|
675
|
-
* <p>Updates a Voice Connector's termination settings.</p>
|
|
524
|
+
* @see {@link PutVoiceConnectorTerminationCommand}
|
|
676
525
|
*/
|
|
677
526
|
putVoiceConnectorTermination(args: PutVoiceConnectorTerminationCommandInput, options?: __HttpHandlerOptions): Promise<PutVoiceConnectorTerminationCommandOutput>;
|
|
678
527
|
putVoiceConnectorTermination(args: PutVoiceConnectorTerminationCommandInput, cb: (err: any, data?: PutVoiceConnectorTerminationCommandOutput) => void): void;
|
|
679
528
|
putVoiceConnectorTermination(args: PutVoiceConnectorTerminationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutVoiceConnectorTerminationCommandOutput) => void): void;
|
|
680
529
|
/**
|
|
681
|
-
* @
|
|
682
|
-
* <p>Updates a Voice Connector's termination credentials.</p>
|
|
530
|
+
* @see {@link PutVoiceConnectorTerminationCredentialsCommand}
|
|
683
531
|
*/
|
|
684
532
|
putVoiceConnectorTerminationCredentials(args: PutVoiceConnectorTerminationCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<PutVoiceConnectorTerminationCredentialsCommandOutput>;
|
|
685
533
|
putVoiceConnectorTerminationCredentials(args: PutVoiceConnectorTerminationCredentialsCommandInput, cb: (err: any, data?: PutVoiceConnectorTerminationCredentialsCommandOutput) => void): void;
|
|
686
534
|
putVoiceConnectorTerminationCredentials(args: PutVoiceConnectorTerminationCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutVoiceConnectorTerminationCredentialsCommandOutput) => void): void;
|
|
687
535
|
/**
|
|
688
|
-
* @
|
|
689
|
-
* <p>Restores a deleted phone number.</p>
|
|
536
|
+
* @see {@link RestorePhoneNumberCommand}
|
|
690
537
|
*/
|
|
691
538
|
restorePhoneNumber(args: RestorePhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<RestorePhoneNumberCommandOutput>;
|
|
692
539
|
restorePhoneNumber(args: RestorePhoneNumberCommandInput, cb: (err: any, data?: RestorePhoneNumberCommandOutput) => void): void;
|
|
693
540
|
restorePhoneNumber(args: RestorePhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestorePhoneNumberCommandOutput) => void): void;
|
|
694
541
|
/**
|
|
695
|
-
* @
|
|
696
|
-
* <p>Searches the provisioned phone numbers in an organization.</p>
|
|
542
|
+
* @see {@link SearchAvailablePhoneNumbersCommand}
|
|
697
543
|
*/
|
|
698
544
|
searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, options?: __HttpHandlerOptions): Promise<SearchAvailablePhoneNumbersCommandOutput>;
|
|
699
545
|
searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, cb: (err: any, data?: SearchAvailablePhoneNumbersCommandOutput) => void): void;
|
|
700
546
|
searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchAvailablePhoneNumbersCommandOutput) => void): void;
|
|
701
547
|
/**
|
|
702
|
-
* @
|
|
703
|
-
* <p>Starts a speaker search task.</p>
|
|
704
|
-
* <important>
|
|
705
|
-
* <p>Before starting any speaker search tasks, you must provide all notices and obtain all consents from the speaker as required under applicable privacy and biometrics laws, and as required under the
|
|
706
|
-
* <a href="https://aws.amazon.com/service-terms/">AWS service terms</a> for the Amazon Chime SDK.</p>
|
|
707
|
-
* </important>
|
|
548
|
+
* @see {@link StartSpeakerSearchTaskCommand}
|
|
708
549
|
*/
|
|
709
550
|
startSpeakerSearchTask(args: StartSpeakerSearchTaskCommandInput, options?: __HttpHandlerOptions): Promise<StartSpeakerSearchTaskCommandOutput>;
|
|
710
551
|
startSpeakerSearchTask(args: StartSpeakerSearchTaskCommandInput, cb: (err: any, data?: StartSpeakerSearchTaskCommandOutput) => void): void;
|
|
711
552
|
startSpeakerSearchTask(args: StartSpeakerSearchTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartSpeakerSearchTaskCommandOutput) => void): void;
|
|
712
553
|
/**
|
|
713
|
-
* @
|
|
714
|
-
* <p>Starts a voice tone analysis task. For more information about voice tone analysis, see
|
|
715
|
-
* <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/pstn-voice-analytics.html">Using Amazon Chime SDK voice analytics</a>
|
|
716
|
-
* in the <i>Amazon Chime SDK Developer Guide</i>.</p>
|
|
717
|
-
* <important>
|
|
718
|
-
* <p>Before starting any voice tone analysis tasks, you must provide all notices and obtain all consents from the speaker as required under applicable privacy and biometrics laws, and as required under the
|
|
719
|
-
* <a href="https://aws.amazon.com/service-terms/">AWS service terms</a> for the Amazon Chime SDK.</p>
|
|
720
|
-
* </important>
|
|
554
|
+
* @see {@link StartVoiceToneAnalysisTaskCommand}
|
|
721
555
|
*/
|
|
722
556
|
startVoiceToneAnalysisTask(args: StartVoiceToneAnalysisTaskCommandInput, options?: __HttpHandlerOptions): Promise<StartVoiceToneAnalysisTaskCommandOutput>;
|
|
723
557
|
startVoiceToneAnalysisTask(args: StartVoiceToneAnalysisTaskCommandInput, cb: (err: any, data?: StartVoiceToneAnalysisTaskCommandOutput) => void): void;
|
|
724
558
|
startVoiceToneAnalysisTask(args: StartVoiceToneAnalysisTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartVoiceToneAnalysisTaskCommandOutput) => void): void;
|
|
725
559
|
/**
|
|
726
|
-
* @
|
|
727
|
-
* <p>Stops a speaker search task.</p>
|
|
560
|
+
* @see {@link StopSpeakerSearchTaskCommand}
|
|
728
561
|
*/
|
|
729
562
|
stopSpeakerSearchTask(args: StopSpeakerSearchTaskCommandInput, options?: __HttpHandlerOptions): Promise<StopSpeakerSearchTaskCommandOutput>;
|
|
730
563
|
stopSpeakerSearchTask(args: StopSpeakerSearchTaskCommandInput, cb: (err: any, data?: StopSpeakerSearchTaskCommandOutput) => void): void;
|
|
731
564
|
stopSpeakerSearchTask(args: StopSpeakerSearchTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopSpeakerSearchTaskCommandOutput) => void): void;
|
|
732
565
|
/**
|
|
733
|
-
* @
|
|
734
|
-
* <p>Stops a voice tone analysis task.</p>
|
|
566
|
+
* @see {@link StopVoiceToneAnalysisTaskCommand}
|
|
735
567
|
*/
|
|
736
568
|
stopVoiceToneAnalysisTask(args: StopVoiceToneAnalysisTaskCommandInput, options?: __HttpHandlerOptions): Promise<StopVoiceToneAnalysisTaskCommandOutput>;
|
|
737
569
|
stopVoiceToneAnalysisTask(args: StopVoiceToneAnalysisTaskCommandInput, cb: (err: any, data?: StopVoiceToneAnalysisTaskCommandOutput) => void): void;
|
|
738
570
|
stopVoiceToneAnalysisTask(args: StopVoiceToneAnalysisTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopVoiceToneAnalysisTaskCommandOutput) => void): void;
|
|
739
571
|
/**
|
|
740
|
-
* @
|
|
741
|
-
* <p>Adds a tag to the specified resource.</p>
|
|
572
|
+
* @see {@link TagResourceCommand}
|
|
742
573
|
*/
|
|
743
574
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
744
575
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
745
576
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
746
577
|
/**
|
|
747
|
-
* @
|
|
748
|
-
* <p>Removes tags from a resource.</p>
|
|
578
|
+
* @see {@link UntagResourceCommand}
|
|
749
579
|
*/
|
|
750
580
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
751
581
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
752
582
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
753
583
|
/**
|
|
754
|
-
* @
|
|
755
|
-
* <p>Updates global settings for the Amazon Chime SDK Voice Connectors in an AWS account.</p>
|
|
584
|
+
* @see {@link UpdateGlobalSettingsCommand}
|
|
756
585
|
*/
|
|
757
586
|
updateGlobalSettings(args: UpdateGlobalSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGlobalSettingsCommandOutput>;
|
|
758
587
|
updateGlobalSettings(args: UpdateGlobalSettingsCommandInput, cb: (err: any, data?: UpdateGlobalSettingsCommandOutput) => void): void;
|
|
759
588
|
updateGlobalSettings(args: UpdateGlobalSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGlobalSettingsCommandOutput) => void): void;
|
|
760
589
|
/**
|
|
761
|
-
* @
|
|
762
|
-
* <p>Updates phone number details, such as product type or calling name, for the
|
|
763
|
-
* specified phone number ID. You can update one phone number detail at a time. For
|
|
764
|
-
* example, you can update either the product type or the calling name in one action.</p>
|
|
765
|
-
* <p>For numbers outside the U.S., you must use the Amazon Chime SDK SIP Media
|
|
766
|
-
* Application Dial-In product type.</p>
|
|
767
|
-
* <p>Updates to outbound calling names can take 72 hours to complete. Pending
|
|
768
|
-
* updates to outbound calling names must be complete before you can request another
|
|
769
|
-
* update.</p>
|
|
590
|
+
* @see {@link UpdatePhoneNumberCommand}
|
|
770
591
|
*/
|
|
771
592
|
updatePhoneNumber(args: UpdatePhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePhoneNumberCommandOutput>;
|
|
772
593
|
updatePhoneNumber(args: UpdatePhoneNumberCommandInput, cb: (err: any, data?: UpdatePhoneNumberCommandOutput) => void): void;
|
|
773
594
|
updatePhoneNumber(args: UpdatePhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePhoneNumberCommandOutput) => void): void;
|
|
774
595
|
/**
|
|
775
|
-
* @
|
|
776
|
-
* <p>Updates the phone number settings for the administrator's AWS account, such
|
|
777
|
-
* as the default outbound calling name. You can update the default outbound calling
|
|
778
|
-
* name once every seven days. Outbound calling names can take up to 72 hours to
|
|
779
|
-
* update.</p>
|
|
596
|
+
* @see {@link UpdatePhoneNumberSettingsCommand}
|
|
780
597
|
*/
|
|
781
598
|
updatePhoneNumberSettings(args: UpdatePhoneNumberSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePhoneNumberSettingsCommandOutput>;
|
|
782
599
|
updatePhoneNumberSettings(args: UpdatePhoneNumberSettingsCommandInput, cb: (err: any, data?: UpdatePhoneNumberSettingsCommandOutput) => void): void;
|
|
783
600
|
updatePhoneNumberSettings(args: UpdatePhoneNumberSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePhoneNumberSettingsCommandOutput) => void): void;
|
|
784
601
|
/**
|
|
785
|
-
* @
|
|
786
|
-
* <p>Updates the specified proxy session details, such as voice or SMS capabilities.</p>
|
|
602
|
+
* @see {@link UpdateProxySessionCommand}
|
|
787
603
|
*/
|
|
788
604
|
updateProxySession(args: UpdateProxySessionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProxySessionCommandOutput>;
|
|
789
605
|
updateProxySession(args: UpdateProxySessionCommandInput, cb: (err: any, data?: UpdateProxySessionCommandOutput) => void): void;
|
|
790
606
|
updateProxySession(args: UpdateProxySessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProxySessionCommandOutput) => void): void;
|
|
791
607
|
/**
|
|
792
|
-
* @
|
|
793
|
-
* <p>Updates the details of the specified SIP media application.</p>
|
|
608
|
+
* @see {@link UpdateSipMediaApplicationCommand}
|
|
794
609
|
*/
|
|
795
610
|
updateSipMediaApplication(args: UpdateSipMediaApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSipMediaApplicationCommandOutput>;
|
|
796
611
|
updateSipMediaApplication(args: UpdateSipMediaApplicationCommandInput, cb: (err: any, data?: UpdateSipMediaApplicationCommandOutput) => void): void;
|
|
797
612
|
updateSipMediaApplication(args: UpdateSipMediaApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSipMediaApplicationCommandOutput) => void): void;
|
|
798
613
|
/**
|
|
799
|
-
* @
|
|
800
|
-
* <p>Invokes the AWS Lambda function associated with the SIP media application and
|
|
801
|
-
* transaction ID in an update request. The Lambda function can then return a new set
|
|
802
|
-
* of actions.</p>
|
|
614
|
+
* @see {@link UpdateSipMediaApplicationCallCommand}
|
|
803
615
|
*/
|
|
804
616
|
updateSipMediaApplicationCall(args: UpdateSipMediaApplicationCallCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSipMediaApplicationCallCommandOutput>;
|
|
805
617
|
updateSipMediaApplicationCall(args: UpdateSipMediaApplicationCallCommandInput, cb: (err: any, data?: UpdateSipMediaApplicationCallCommandOutput) => void): void;
|
|
806
618
|
updateSipMediaApplicationCall(args: UpdateSipMediaApplicationCallCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSipMediaApplicationCallCommandOutput) => void): void;
|
|
807
619
|
/**
|
|
808
|
-
* @
|
|
809
|
-
* <p>Updates the details of the specified SIP rule.</p>
|
|
620
|
+
* @see {@link UpdateSipRuleCommand}
|
|
810
621
|
*/
|
|
811
622
|
updateSipRule(args: UpdateSipRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSipRuleCommandOutput>;
|
|
812
623
|
updateSipRule(args: UpdateSipRuleCommandInput, cb: (err: any, data?: UpdateSipRuleCommandOutput) => void): void;
|
|
813
624
|
updateSipRule(args: UpdateSipRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSipRuleCommandOutput) => void): void;
|
|
814
625
|
/**
|
|
815
|
-
* @
|
|
816
|
-
* <p>Updates the details for the specified Amazon Chime SDK Voice Connector.</p>
|
|
626
|
+
* @see {@link UpdateVoiceConnectorCommand}
|
|
817
627
|
*/
|
|
818
628
|
updateVoiceConnector(args: UpdateVoiceConnectorCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVoiceConnectorCommandOutput>;
|
|
819
629
|
updateVoiceConnector(args: UpdateVoiceConnectorCommandInput, cb: (err: any, data?: UpdateVoiceConnectorCommandOutput) => void): void;
|
|
820
630
|
updateVoiceConnector(args: UpdateVoiceConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateVoiceConnectorCommandOutput) => void): void;
|
|
821
631
|
/**
|
|
822
|
-
* @
|
|
823
|
-
* <p>Updates the settings for the specified Amazon Chime SDK Voice Connector group.</p>
|
|
632
|
+
* @see {@link UpdateVoiceConnectorGroupCommand}
|
|
824
633
|
*/
|
|
825
634
|
updateVoiceConnectorGroup(args: UpdateVoiceConnectorGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVoiceConnectorGroupCommandOutput>;
|
|
826
635
|
updateVoiceConnectorGroup(args: UpdateVoiceConnectorGroupCommandInput, cb: (err: any, data?: UpdateVoiceConnectorGroupCommandOutput) => void): void;
|
|
827
636
|
updateVoiceConnectorGroup(args: UpdateVoiceConnectorGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateVoiceConnectorGroupCommandOutput) => void): void;
|
|
828
637
|
/**
|
|
829
|
-
* @
|
|
830
|
-
* <p>Updates the specified voice profile’s voice print and refreshes its expiration timestamp.</p>
|
|
831
|
-
* <important>
|
|
832
|
-
* <p>As a condition of using this feature, you acknowledge that the collection, use, storage, and retention of
|
|
833
|
-
* your caller’s biometric identifiers and biometric information (“biometric data”) in the form of a digital voiceprint
|
|
834
|
-
* requires the caller’s informed consent via a written release. Such consent is required under various state laws,
|
|
835
|
-
* including biometrics laws in Illinois, Texas, Washington and other state privacy laws.</p>
|
|
836
|
-
* <p>You must provide a written release to each caller through a process that clearly reflects each caller’s informed
|
|
837
|
-
* consent before using Amazon Chime SDK Voice Insights service, as required under the terms of your agreement
|
|
838
|
-
* with AWS governing your use of the service.</p>
|
|
839
|
-
* </important>
|
|
638
|
+
* @see {@link UpdateVoiceProfileCommand}
|
|
840
639
|
*/
|
|
841
640
|
updateVoiceProfile(args: UpdateVoiceProfileCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVoiceProfileCommandOutput>;
|
|
842
641
|
updateVoiceProfile(args: UpdateVoiceProfileCommandInput, cb: (err: any, data?: UpdateVoiceProfileCommandOutput) => void): void;
|
|
843
642
|
updateVoiceProfile(args: UpdateVoiceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateVoiceProfileCommandOutput) => void): void;
|
|
844
643
|
/**
|
|
845
|
-
* @
|
|
846
|
-
* <p>Updates the settings for the specified voice profile domain.</p>
|
|
644
|
+
* @see {@link UpdateVoiceProfileDomainCommand}
|
|
847
645
|
*/
|
|
848
646
|
updateVoiceProfileDomain(args: UpdateVoiceProfileDomainCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVoiceProfileDomainCommandOutput>;
|
|
849
647
|
updateVoiceProfileDomain(args: UpdateVoiceProfileDomainCommandInput, cb: (err: any, data?: UpdateVoiceProfileDomainCommandOutput) => void): void;
|
|
850
648
|
updateVoiceProfileDomain(args: UpdateVoiceProfileDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateVoiceProfileDomainCommandOutput) => void): void;
|
|
851
649
|
/**
|
|
852
|
-
* @
|
|
853
|
-
* <p>Validates an address to be used for 911 calls made with Amazon Chime SDK Voice
|
|
854
|
-
* Connectors. You can use validated addresses in a Presence Information Data Format
|
|
855
|
-
* Location Object file that you include in SIP requests. That helps ensure that addresses
|
|
856
|
-
* are routed to the appropriate Public Safety Answering Point.</p>
|
|
650
|
+
* @see {@link ValidateE911AddressCommand}
|
|
857
651
|
*/
|
|
858
652
|
validateE911Address(args: ValidateE911AddressCommandInput, options?: __HttpHandlerOptions): Promise<ValidateE911AddressCommandOutput>;
|
|
859
653
|
validateE911Address(args: ValidateE911AddressCommandInput, cb: (err: any, data?: ValidateE911AddressCommandOutput) => void): void;
|
|
860
654
|
validateE911Address(args: ValidateE911AddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ValidateE911AddressCommandOutput) => void): void;
|
|
861
655
|
}
|
|
656
|
+
/**
|
|
657
|
+
* @public
|
|
658
|
+
* <p>The Amazon Chime SDK telephony APIs in this section enable developers to create PSTN calling solutions that use Amazon Chime SDK Voice Connectors, and Amazon Chime SDK SIP media applications. Developers can
|
|
659
|
+
* also order and manage phone numbers, create and manage Voice Connectors and SIP media applications, and run voice analytics.</p>
|
|
660
|
+
*/
|
|
661
|
+
export declare class ChimeSDKVoice extends ChimeSDKVoiceClient implements ChimeSDKVoice {
|
|
662
|
+
}
|