aws-sdk 2.1343.0 → 2.1344.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -1
- package/README.md +1 -1
- package/apis/athena-2017-05-18.min.json +6 -0
- package/apis/connect-2017-08-08.min.json +2 -1
- package/apis/iotwireless-2020-11-22.min.json +516 -130
- package/apis/medialive-2017-10-14.min.json +16 -4
- package/apis/securityhub-2018-10-26.min.json +346 -251
- package/apis/servicecatalog-appregistry-2020-06-24.min.json +12 -9
- package/apis/voice-id-2021-09-27.min.json +379 -93
- package/apis/voice-id-2021-09-27.paginators.json +12 -0
- package/clients/athena.d.ts +40 -32
- package/clients/chimesdkvoice.d.ts +1623 -183
- package/clients/connect.d.ts +8 -4
- package/clients/connectparticipant.d.ts +3 -3
- package/clients/iotwireless.d.ts +456 -2
- package/clients/medialive.d.ts +17 -1
- package/clients/sagemaker.d.ts +17 -17
- package/clients/securityhub.d.ts +199 -10
- package/clients/servicecatalogappregistry.d.ts +36 -23
- package/clients/voiceid.d.ts +400 -59
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +9 -9
- package/dist/aws-sdk.js +11 -4
- package/dist/aws-sdk.min.js +87 -87
- package/lib/core.js +1 -1
- package/package.json +1 -1
|
@@ -12,749 +12,779 @@ declare class ChimeSDKVoice extends Service {
|
|
|
12
12
|
constructor(options?: ChimeSDKVoice.Types.ClientConfiguration)
|
|
13
13
|
config: Config & ChimeSDKVoice.Types.ClientConfiguration;
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
15
|
+
* Associates phone numbers with the specified Amazon Chime SDK Voice Connector.
|
|
16
16
|
*/
|
|
17
17
|
associatePhoneNumbersWithVoiceConnector(params: ChimeSDKVoice.Types.AssociatePhoneNumbersWithVoiceConnectorRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.AssociatePhoneNumbersWithVoiceConnectorResponse) => void): Request<ChimeSDKVoice.Types.AssociatePhoneNumbersWithVoiceConnectorResponse, AWSError>;
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Associates phone numbers with the specified Amazon Chime SDK Voice Connector.
|
|
20
20
|
*/
|
|
21
21
|
associatePhoneNumbersWithVoiceConnector(callback?: (err: AWSError, data: ChimeSDKVoice.Types.AssociatePhoneNumbersWithVoiceConnectorResponse) => void): Request<ChimeSDKVoice.Types.AssociatePhoneNumbersWithVoiceConnectorResponse, AWSError>;
|
|
22
22
|
/**
|
|
23
|
-
*
|
|
23
|
+
* Associates phone numbers with the specified Amazon Chime SDK Voice Connector group.
|
|
24
24
|
*/
|
|
25
25
|
associatePhoneNumbersWithVoiceConnectorGroup(params: ChimeSDKVoice.Types.AssociatePhoneNumbersWithVoiceConnectorGroupRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.AssociatePhoneNumbersWithVoiceConnectorGroupResponse) => void): Request<ChimeSDKVoice.Types.AssociatePhoneNumbersWithVoiceConnectorGroupResponse, AWSError>;
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
27
|
+
* Associates phone numbers with the specified Amazon Chime SDK Voice Connector group.
|
|
28
28
|
*/
|
|
29
29
|
associatePhoneNumbersWithVoiceConnectorGroup(callback?: (err: AWSError, data: ChimeSDKVoice.Types.AssociatePhoneNumbersWithVoiceConnectorGroupResponse) => void): Request<ChimeSDKVoice.Types.AssociatePhoneNumbersWithVoiceConnectorGroupResponse, AWSError>;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* Moves phone numbers into the Deletion queue. Phone numbers must be disassociated from any users or Amazon Chime SDK Voice Connectors before they can be deleted. Phone numbers remain in the Deletion queue for 7 days before they are deleted permanently.
|
|
32
32
|
*/
|
|
33
33
|
batchDeletePhoneNumber(params: ChimeSDKVoice.Types.BatchDeletePhoneNumberRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.BatchDeletePhoneNumberResponse) => void): Request<ChimeSDKVoice.Types.BatchDeletePhoneNumberResponse, AWSError>;
|
|
34
34
|
/**
|
|
35
|
-
*
|
|
35
|
+
* Moves phone numbers into the Deletion queue. Phone numbers must be disassociated from any users or Amazon Chime SDK Voice Connectors before they can be deleted. Phone numbers remain in the Deletion queue for 7 days before they are deleted permanently.
|
|
36
36
|
*/
|
|
37
37
|
batchDeletePhoneNumber(callback?: (err: AWSError, data: ChimeSDKVoice.Types.BatchDeletePhoneNumberResponse) => void): Request<ChimeSDKVoice.Types.BatchDeletePhoneNumberResponse, AWSError>;
|
|
38
38
|
/**
|
|
39
|
-
*
|
|
39
|
+
* Updates one or more phone numbers.
|
|
40
40
|
*/
|
|
41
41
|
batchUpdatePhoneNumber(params: ChimeSDKVoice.Types.BatchUpdatePhoneNumberRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.BatchUpdatePhoneNumberResponse) => void): Request<ChimeSDKVoice.Types.BatchUpdatePhoneNumberResponse, AWSError>;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* Updates one or more phone numbers.
|
|
44
44
|
*/
|
|
45
45
|
batchUpdatePhoneNumber(callback?: (err: AWSError, data: ChimeSDKVoice.Types.BatchUpdatePhoneNumberResponse) => void): Request<ChimeSDKVoice.Types.BatchUpdatePhoneNumberResponse, AWSError>;
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
47
|
+
* 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.
|
|
48
48
|
*/
|
|
49
49
|
createPhoneNumberOrder(params: ChimeSDKVoice.Types.CreatePhoneNumberOrderRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.CreatePhoneNumberOrderResponse) => void): Request<ChimeSDKVoice.Types.CreatePhoneNumberOrderResponse, AWSError>;
|
|
50
50
|
/**
|
|
51
|
-
*
|
|
51
|
+
* 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.
|
|
52
52
|
*/
|
|
53
53
|
createPhoneNumberOrder(callback?: (err: AWSError, data: ChimeSDKVoice.Types.CreatePhoneNumberOrderResponse) => void): Request<ChimeSDKVoice.Types.CreatePhoneNumberOrderResponse, AWSError>;
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
55
|
+
* Creates a proxy session for the specified Amazon Chime SDK Voice Connector for the specified participant phone numbers.
|
|
56
56
|
*/
|
|
57
57
|
createProxySession(params: ChimeSDKVoice.Types.CreateProxySessionRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.CreateProxySessionResponse) => void): Request<ChimeSDKVoice.Types.CreateProxySessionResponse, AWSError>;
|
|
58
58
|
/**
|
|
59
|
-
*
|
|
59
|
+
* Creates a proxy session for the specified Amazon Chime SDK Voice Connector for the specified participant phone numbers.
|
|
60
60
|
*/
|
|
61
61
|
createProxySession(callback?: (err: AWSError, data: ChimeSDKVoice.Types.CreateProxySessionResponse) => void): Request<ChimeSDKVoice.Types.CreateProxySessionResponse, AWSError>;
|
|
62
62
|
/**
|
|
63
|
-
*
|
|
63
|
+
* Creates a SIP media application. For more information about SIP media applications, see Managing SIP media applications and rules in the Amazon Chime SDK Administrator Guide.
|
|
64
64
|
*/
|
|
65
65
|
createSipMediaApplication(params: ChimeSDKVoice.Types.CreateSipMediaApplicationRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.CreateSipMediaApplicationResponse) => void): Request<ChimeSDKVoice.Types.CreateSipMediaApplicationResponse, AWSError>;
|
|
66
66
|
/**
|
|
67
|
-
*
|
|
67
|
+
* Creates a SIP media application. For more information about SIP media applications, see Managing SIP media applications and rules in the Amazon Chime SDK Administrator Guide.
|
|
68
68
|
*/
|
|
69
69
|
createSipMediaApplication(callback?: (err: AWSError, data: ChimeSDKVoice.Types.CreateSipMediaApplicationResponse) => void): Request<ChimeSDKVoice.Types.CreateSipMediaApplicationResponse, AWSError>;
|
|
70
70
|
/**
|
|
71
|
-
*
|
|
71
|
+
* Creates an outbound call to a phone number from the phone number specified in the request, and it invokes the endpoint of the specified sipMediaApplicationId.
|
|
72
72
|
*/
|
|
73
73
|
createSipMediaApplicationCall(params: ChimeSDKVoice.Types.CreateSipMediaApplicationCallRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.CreateSipMediaApplicationCallResponse) => void): Request<ChimeSDKVoice.Types.CreateSipMediaApplicationCallResponse, AWSError>;
|
|
74
74
|
/**
|
|
75
|
-
*
|
|
75
|
+
* Creates an outbound call to a phone number from the phone number specified in the request, and it invokes the endpoint of the specified sipMediaApplicationId.
|
|
76
76
|
*/
|
|
77
77
|
createSipMediaApplicationCall(callback?: (err: AWSError, data: ChimeSDKVoice.Types.CreateSipMediaApplicationCallResponse) => void): Request<ChimeSDKVoice.Types.CreateSipMediaApplicationCallResponse, AWSError>;
|
|
78
78
|
/**
|
|
79
|
-
*
|
|
79
|
+
* 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 Managing SIP media applications and rules in the Amazon Chime SDK Administrator Guide.
|
|
80
80
|
*/
|
|
81
81
|
createSipRule(params: ChimeSDKVoice.Types.CreateSipRuleRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.CreateSipRuleResponse) => void): Request<ChimeSDKVoice.Types.CreateSipRuleResponse, AWSError>;
|
|
82
82
|
/**
|
|
83
|
-
*
|
|
83
|
+
* 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 Managing SIP media applications and rules in the Amazon Chime SDK Administrator Guide.
|
|
84
84
|
*/
|
|
85
85
|
createSipRule(callback?: (err: AWSError, data: ChimeSDKVoice.Types.CreateSipRuleResponse) => void): Request<ChimeSDKVoice.Types.CreateSipRuleResponse, AWSError>;
|
|
86
86
|
/**
|
|
87
|
-
*
|
|
87
|
+
* Creates an Amazon Chime SDK Voice Connector. For more information about Voice Connectors, see Managing Amazon Chime SDK Voice Connector groups in the Amazon Chime SDK Administrator Guide.
|
|
88
88
|
*/
|
|
89
89
|
createVoiceConnector(params: ChimeSDKVoice.Types.CreateVoiceConnectorRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.CreateVoiceConnectorResponse) => void): Request<ChimeSDKVoice.Types.CreateVoiceConnectorResponse, AWSError>;
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* Creates an Amazon Chime SDK Voice Connector. For more information about Voice Connectors, see Managing Amazon Chime SDK Voice Connector groups in the Amazon Chime SDK Administrator Guide.
|
|
92
92
|
*/
|
|
93
93
|
createVoiceConnector(callback?: (err: AWSError, data: ChimeSDKVoice.Types.CreateVoiceConnectorResponse) => void): Request<ChimeSDKVoice.Types.CreateVoiceConnectorResponse, AWSError>;
|
|
94
94
|
/**
|
|
95
|
-
*
|
|
95
|
+
* Creates an Amazon Chime SDK Voice Connector group under the administrator's AWS account. You can associate Amazon Chime SDK Voice Connectors with the Voice Connector group by including VoiceConnectorItems in the request. You can include Voice Connectors from different AWS Regions in your group. This creates a fault tolerant mechanism for fallback in case of availability events.
|
|
96
96
|
*/
|
|
97
97
|
createVoiceConnectorGroup(params: ChimeSDKVoice.Types.CreateVoiceConnectorGroupRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.CreateVoiceConnectorGroupResponse) => void): Request<ChimeSDKVoice.Types.CreateVoiceConnectorGroupResponse, AWSError>;
|
|
98
98
|
/**
|
|
99
|
-
*
|
|
99
|
+
* Creates an Amazon Chime SDK Voice Connector group under the administrator's AWS account. You can associate Amazon Chime SDK Voice Connectors with the Voice Connector group by including VoiceConnectorItems in the request. You can include Voice Connectors from different AWS Regions in your group. This creates a fault tolerant mechanism for fallback in case of availability events.
|
|
100
100
|
*/
|
|
101
101
|
createVoiceConnectorGroup(callback?: (err: AWSError, data: ChimeSDKVoice.Types.CreateVoiceConnectorGroupResponse) => void): Request<ChimeSDKVoice.Types.CreateVoiceConnectorGroupResponse, AWSError>;
|
|
102
102
|
/**
|
|
103
|
-
*
|
|
103
|
+
* Creates a voice profile, which consists of an enrolled user and their latest voice print. 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 AWS service terms for the Amazon Chime SDK. For more information about voice profiles and voice analytics, see Using Amazon Chime SDK Voice Analytics in the Amazon Chime SDK Developer Guide.
|
|
104
104
|
*/
|
|
105
105
|
createVoiceProfile(params: ChimeSDKVoice.Types.CreateVoiceProfileRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.CreateVoiceProfileResponse) => void): Request<ChimeSDKVoice.Types.CreateVoiceProfileResponse, AWSError>;
|
|
106
106
|
/**
|
|
107
|
-
*
|
|
107
|
+
* Creates a voice profile, which consists of an enrolled user and their latest voice print. 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 AWS service terms for the Amazon Chime SDK. For more information about voice profiles and voice analytics, see Using Amazon Chime SDK Voice Analytics in the Amazon Chime SDK Developer Guide.
|
|
108
108
|
*/
|
|
109
109
|
createVoiceProfile(callback?: (err: AWSError, data: ChimeSDKVoice.Types.CreateVoiceProfileResponse) => void): Request<ChimeSDKVoice.Types.CreateVoiceProfileResponse, AWSError>;
|
|
110
110
|
/**
|
|
111
|
-
*
|
|
111
|
+
* Creates a voice profile domain, a collection of voice profiles, their voice prints, and encrypted enrollment audio. 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 AWS service terms for the Amazon Chime SDK. For more information about voice profile domains, see Using Amazon Chime SDK Voice Analytics in the Amazon Chime SDK Developer Guide.
|
|
112
112
|
*/
|
|
113
113
|
createVoiceProfileDomain(params: ChimeSDKVoice.Types.CreateVoiceProfileDomainRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.CreateVoiceProfileDomainResponse) => void): Request<ChimeSDKVoice.Types.CreateVoiceProfileDomainResponse, AWSError>;
|
|
114
114
|
/**
|
|
115
|
-
*
|
|
115
|
+
* Creates a voice profile domain, a collection of voice profiles, their voice prints, and encrypted enrollment audio. 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 AWS service terms for the Amazon Chime SDK. For more information about voice profile domains, see Using Amazon Chime SDK Voice Analytics in the Amazon Chime SDK Developer Guide.
|
|
116
116
|
*/
|
|
117
117
|
createVoiceProfileDomain(callback?: (err: AWSError, data: ChimeSDKVoice.Types.CreateVoiceProfileDomainResponse) => void): Request<ChimeSDKVoice.Types.CreateVoiceProfileDomainResponse, AWSError>;
|
|
118
118
|
/**
|
|
119
|
-
*
|
|
119
|
+
* Moves the specified phone number into the Deletion queue. A phone number must be disassociated from any users or Amazon Chime SDK Voice Connectors before it can be deleted. Deleted phone numbers remain in the Deletion queue queue for 7 days before they are deleted permanently.
|
|
120
120
|
*/
|
|
121
121
|
deletePhoneNumber(params: ChimeSDKVoice.Types.DeletePhoneNumberRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
122
122
|
/**
|
|
123
|
-
*
|
|
123
|
+
* Moves the specified phone number into the Deletion queue. A phone number must be disassociated from any users or Amazon Chime SDK Voice Connectors before it can be deleted. Deleted phone numbers remain in the Deletion queue queue for 7 days before they are deleted permanently.
|
|
124
124
|
*/
|
|
125
125
|
deletePhoneNumber(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
126
126
|
/**
|
|
127
|
-
*
|
|
127
|
+
* Deletes the specified proxy session from the specified Amazon Chime SDK Voice Connector.
|
|
128
128
|
*/
|
|
129
129
|
deleteProxySession(params: ChimeSDKVoice.Types.DeleteProxySessionRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
130
130
|
/**
|
|
131
|
-
*
|
|
131
|
+
* Deletes the specified proxy session from the specified Amazon Chime SDK Voice Connector.
|
|
132
132
|
*/
|
|
133
133
|
deleteProxySession(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
134
134
|
/**
|
|
135
|
-
*
|
|
135
|
+
* Deletes a SIP media application.
|
|
136
136
|
*/
|
|
137
137
|
deleteSipMediaApplication(params: ChimeSDKVoice.Types.DeleteSipMediaApplicationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
138
138
|
/**
|
|
139
|
-
*
|
|
139
|
+
* Deletes a SIP media application.
|
|
140
140
|
*/
|
|
141
141
|
deleteSipMediaApplication(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
142
142
|
/**
|
|
143
|
-
*
|
|
143
|
+
* Deletes a SIP rule.
|
|
144
144
|
*/
|
|
145
145
|
deleteSipRule(params: ChimeSDKVoice.Types.DeleteSipRuleRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
146
146
|
/**
|
|
147
|
-
*
|
|
147
|
+
* Deletes a SIP rule.
|
|
148
148
|
*/
|
|
149
149
|
deleteSipRule(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Deletes an Amazon Chime SDK Voice Connector. Any phone numbers associated with the Amazon Chime SDK Voice Connector must be disassociated from it before it can be deleted.
|
|
152
152
|
*/
|
|
153
153
|
deleteVoiceConnector(params: ChimeSDKVoice.Types.DeleteVoiceConnectorRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
154
154
|
/**
|
|
155
|
-
*
|
|
155
|
+
* Deletes an Amazon Chime SDK Voice Connector. Any phone numbers associated with the Amazon Chime SDK Voice Connector must be disassociated from it before it can be deleted.
|
|
156
156
|
*/
|
|
157
157
|
deleteVoiceConnector(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
158
158
|
/**
|
|
159
|
-
*
|
|
159
|
+
* Deletes the emergency calling details from the specified Amazon Chime SDK Voice Connector.
|
|
160
160
|
*/
|
|
161
161
|
deleteVoiceConnectorEmergencyCallingConfiguration(params: ChimeSDKVoice.Types.DeleteVoiceConnectorEmergencyCallingConfigurationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
162
162
|
/**
|
|
163
|
-
*
|
|
163
|
+
* Deletes the emergency calling details from the specified Amazon Chime SDK Voice Connector.
|
|
164
164
|
*/
|
|
165
165
|
deleteVoiceConnectorEmergencyCallingConfiguration(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
166
166
|
/**
|
|
167
|
-
*
|
|
167
|
+
* Deletes an Amazon Chime SDK Voice Connector group. Any VoiceConnectorItems and phone numbers associated with the group must be removed before it can be deleted.
|
|
168
168
|
*/
|
|
169
169
|
deleteVoiceConnectorGroup(params: ChimeSDKVoice.Types.DeleteVoiceConnectorGroupRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
170
170
|
/**
|
|
171
|
-
*
|
|
171
|
+
* Deletes an Amazon Chime SDK Voice Connector group. Any VoiceConnectorItems and phone numbers associated with the group must be removed before it can be deleted.
|
|
172
172
|
*/
|
|
173
173
|
deleteVoiceConnectorGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
174
174
|
/**
|
|
175
|
-
*
|
|
175
|
+
* Deletes the origination settings for the specified Amazon Chime SDK Voice Connector. If emergency calling is configured for the Voice Connector, it must be deleted prior to deleting the origination settings.
|
|
176
176
|
*/
|
|
177
177
|
deleteVoiceConnectorOrigination(params: ChimeSDKVoice.Types.DeleteVoiceConnectorOriginationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
178
178
|
/**
|
|
179
|
-
*
|
|
179
|
+
* Deletes the origination settings for the specified Amazon Chime SDK Voice Connector. If emergency calling is configured for the Voice Connector, it must be deleted prior to deleting the origination settings.
|
|
180
180
|
*/
|
|
181
181
|
deleteVoiceConnectorOrigination(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
182
182
|
/**
|
|
183
|
-
*
|
|
183
|
+
* Deletes the proxy configuration from the specified Amazon Chime SDK Voice Connector.
|
|
184
184
|
*/
|
|
185
185
|
deleteVoiceConnectorProxy(params: ChimeSDKVoice.Types.DeleteVoiceConnectorProxyRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
186
186
|
/**
|
|
187
|
-
*
|
|
187
|
+
* Deletes the proxy configuration from the specified Amazon Chime SDK Voice Connector.
|
|
188
188
|
*/
|
|
189
189
|
deleteVoiceConnectorProxy(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
190
190
|
/**
|
|
191
|
-
*
|
|
191
|
+
* Deletes a Voice Connector's streaming configuration.
|
|
192
192
|
*/
|
|
193
193
|
deleteVoiceConnectorStreamingConfiguration(params: ChimeSDKVoice.Types.DeleteVoiceConnectorStreamingConfigurationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
194
194
|
/**
|
|
195
|
-
*
|
|
195
|
+
* Deletes a Voice Connector's streaming configuration.
|
|
196
196
|
*/
|
|
197
197
|
deleteVoiceConnectorStreamingConfiguration(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
198
198
|
/**
|
|
199
|
-
*
|
|
199
|
+
* Deletes the termination settings for the specified Amazon Chime SDK Voice Connector. If emergency calling is configured for the Voice Connector, it must be deleted prior to deleting the termination settings.
|
|
200
200
|
*/
|
|
201
201
|
deleteVoiceConnectorTermination(params: ChimeSDKVoice.Types.DeleteVoiceConnectorTerminationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
202
202
|
/**
|
|
203
|
-
*
|
|
203
|
+
* Deletes the termination settings for the specified Amazon Chime SDK Voice Connector. If emergency calling is configured for the Voice Connector, it must be deleted prior to deleting the termination settings.
|
|
204
204
|
*/
|
|
205
205
|
deleteVoiceConnectorTermination(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
206
206
|
/**
|
|
207
|
-
*
|
|
207
|
+
* Deletes the specified SIP credentials used by your equipment to authenticate during call termination.
|
|
208
208
|
*/
|
|
209
209
|
deleteVoiceConnectorTerminationCredentials(params: ChimeSDKVoice.Types.DeleteVoiceConnectorTerminationCredentialsRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
210
210
|
/**
|
|
211
|
-
*
|
|
211
|
+
* Deletes the specified SIP credentials used by your equipment to authenticate during call termination.
|
|
212
212
|
*/
|
|
213
213
|
deleteVoiceConnectorTerminationCredentials(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
214
214
|
/**
|
|
215
|
-
*
|
|
215
|
+
* Deletes a voice profile, including its voice print and enrollment data. WARNING: This action is not reversible.
|
|
216
216
|
*/
|
|
217
217
|
deleteVoiceProfile(params: ChimeSDKVoice.Types.DeleteVoiceProfileRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
218
218
|
/**
|
|
219
|
-
*
|
|
219
|
+
* Deletes a voice profile, including its voice print and enrollment data. WARNING: This action is not reversible.
|
|
220
220
|
*/
|
|
221
221
|
deleteVoiceProfile(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
222
222
|
/**
|
|
223
|
-
*
|
|
223
|
+
* Deletes all voice profiles in the domain. WARNING: This action is not reversible.
|
|
224
224
|
*/
|
|
225
225
|
deleteVoiceProfileDomain(params: ChimeSDKVoice.Types.DeleteVoiceProfileDomainRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
226
226
|
/**
|
|
227
|
-
*
|
|
227
|
+
* Deletes all voice profiles in the domain. WARNING: This action is not reversible.
|
|
228
228
|
*/
|
|
229
229
|
deleteVoiceProfileDomain(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
230
230
|
/**
|
|
231
|
-
*
|
|
231
|
+
* Disassociates the specified phone numbers from the specified Amazon Chime SDK Voice Connector.
|
|
232
232
|
*/
|
|
233
233
|
disassociatePhoneNumbersFromVoiceConnector(params: ChimeSDKVoice.Types.DisassociatePhoneNumbersFromVoiceConnectorRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.DisassociatePhoneNumbersFromVoiceConnectorResponse) => void): Request<ChimeSDKVoice.Types.DisassociatePhoneNumbersFromVoiceConnectorResponse, AWSError>;
|
|
234
234
|
/**
|
|
235
|
-
*
|
|
235
|
+
* Disassociates the specified phone numbers from the specified Amazon Chime SDK Voice Connector.
|
|
236
236
|
*/
|
|
237
237
|
disassociatePhoneNumbersFromVoiceConnector(callback?: (err: AWSError, data: ChimeSDKVoice.Types.DisassociatePhoneNumbersFromVoiceConnectorResponse) => void): Request<ChimeSDKVoice.Types.DisassociatePhoneNumbersFromVoiceConnectorResponse, AWSError>;
|
|
238
238
|
/**
|
|
239
|
-
*
|
|
239
|
+
* Disassociates the specified phone numbers from the specified Amazon Chime SDK Voice Connector group.
|
|
240
240
|
*/
|
|
241
241
|
disassociatePhoneNumbersFromVoiceConnectorGroup(params: ChimeSDKVoice.Types.DisassociatePhoneNumbersFromVoiceConnectorGroupRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.DisassociatePhoneNumbersFromVoiceConnectorGroupResponse) => void): Request<ChimeSDKVoice.Types.DisassociatePhoneNumbersFromVoiceConnectorGroupResponse, AWSError>;
|
|
242
242
|
/**
|
|
243
|
-
*
|
|
243
|
+
* Disassociates the specified phone numbers from the specified Amazon Chime SDK Voice Connector group.
|
|
244
244
|
*/
|
|
245
245
|
disassociatePhoneNumbersFromVoiceConnectorGroup(callback?: (err: AWSError, data: ChimeSDKVoice.Types.DisassociatePhoneNumbersFromVoiceConnectorGroupResponse) => void): Request<ChimeSDKVoice.Types.DisassociatePhoneNumbersFromVoiceConnectorGroupResponse, AWSError>;
|
|
246
246
|
/**
|
|
247
|
-
*
|
|
247
|
+
* Retrieves the global settings for the Amazon Chime SDK Voice Connectors in an AWS account.
|
|
248
248
|
*/
|
|
249
249
|
getGlobalSettings(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetGlobalSettingsResponse) => void): Request<ChimeSDKVoice.Types.GetGlobalSettingsResponse, AWSError>;
|
|
250
250
|
/**
|
|
251
|
-
*
|
|
251
|
+
* Retrieves details for the specified phone number ID, such as associations, capabilities, and product type.
|
|
252
252
|
*/
|
|
253
253
|
getPhoneNumber(params: ChimeSDKVoice.Types.GetPhoneNumberRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetPhoneNumberResponse) => void): Request<ChimeSDKVoice.Types.GetPhoneNumberResponse, AWSError>;
|
|
254
254
|
/**
|
|
255
|
-
*
|
|
255
|
+
* Retrieves details for the specified phone number ID, such as associations, capabilities, and product type.
|
|
256
256
|
*/
|
|
257
257
|
getPhoneNumber(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetPhoneNumberResponse) => void): Request<ChimeSDKVoice.Types.GetPhoneNumberResponse, AWSError>;
|
|
258
258
|
/**
|
|
259
|
-
*
|
|
259
|
+
* Retrieves details for the specified phone number order, such as the order creation timestamp, phone numbers in E.164 format, product type, and order status.
|
|
260
260
|
*/
|
|
261
261
|
getPhoneNumberOrder(params: ChimeSDKVoice.Types.GetPhoneNumberOrderRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetPhoneNumberOrderResponse) => void): Request<ChimeSDKVoice.Types.GetPhoneNumberOrderResponse, AWSError>;
|
|
262
262
|
/**
|
|
263
|
-
*
|
|
263
|
+
* Retrieves details for the specified phone number order, such as the order creation timestamp, phone numbers in E.164 format, product type, and order status.
|
|
264
264
|
*/
|
|
265
265
|
getPhoneNumberOrder(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetPhoneNumberOrderResponse) => void): Request<ChimeSDKVoice.Types.GetPhoneNumberOrderResponse, AWSError>;
|
|
266
266
|
/**
|
|
267
|
-
*
|
|
267
|
+
* Retrieves the phone number settings for the administrator's AWS account, such as the default outbound calling name.
|
|
268
268
|
*/
|
|
269
269
|
getPhoneNumberSettings(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetPhoneNumberSettingsResponse) => void): Request<ChimeSDKVoice.Types.GetPhoneNumberSettingsResponse, AWSError>;
|
|
270
270
|
/**
|
|
271
|
-
*
|
|
271
|
+
* Retrieves the specified proxy session details for the specified Amazon Chime SDK Voice Connector.
|
|
272
272
|
*/
|
|
273
273
|
getProxySession(params: ChimeSDKVoice.Types.GetProxySessionRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetProxySessionResponse) => void): Request<ChimeSDKVoice.Types.GetProxySessionResponse, AWSError>;
|
|
274
274
|
/**
|
|
275
|
-
*
|
|
275
|
+
* Retrieves the specified proxy session details for the specified Amazon Chime SDK Voice Connector.
|
|
276
276
|
*/
|
|
277
277
|
getProxySession(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetProxySessionResponse) => void): Request<ChimeSDKVoice.Types.GetProxySessionResponse, AWSError>;
|
|
278
278
|
/**
|
|
279
|
-
*
|
|
279
|
+
* Retrieves the information for a SIP media application, including name, AWS Region, and endpoints.
|
|
280
280
|
*/
|
|
281
281
|
getSipMediaApplication(params: ChimeSDKVoice.Types.GetSipMediaApplicationRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetSipMediaApplicationResponse) => void): Request<ChimeSDKVoice.Types.GetSipMediaApplicationResponse, AWSError>;
|
|
282
282
|
/**
|
|
283
|
-
*
|
|
283
|
+
* Retrieves the information for a SIP media application, including name, AWS Region, and endpoints.
|
|
284
284
|
*/
|
|
285
285
|
getSipMediaApplication(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetSipMediaApplicationResponse) => void): Request<ChimeSDKVoice.Types.GetSipMediaApplicationResponse, AWSError>;
|
|
286
286
|
/**
|
|
287
|
-
*
|
|
287
|
+
* Gets the Alexa Skill configuration for the SIP media application.
|
|
288
288
|
*/
|
|
289
289
|
getSipMediaApplicationAlexaSkillConfiguration(params: ChimeSDKVoice.Types.GetSipMediaApplicationAlexaSkillConfigurationRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetSipMediaApplicationAlexaSkillConfigurationResponse) => void): Request<ChimeSDKVoice.Types.GetSipMediaApplicationAlexaSkillConfigurationResponse, AWSError>;
|
|
290
290
|
/**
|
|
291
|
-
*
|
|
291
|
+
* Gets the Alexa Skill configuration for the SIP media application.
|
|
292
292
|
*/
|
|
293
293
|
getSipMediaApplicationAlexaSkillConfiguration(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetSipMediaApplicationAlexaSkillConfigurationResponse) => void): Request<ChimeSDKVoice.Types.GetSipMediaApplicationAlexaSkillConfigurationResponse, AWSError>;
|
|
294
294
|
/**
|
|
295
|
-
*
|
|
295
|
+
* Retrieves the logging configuration for the specified SIP media application.
|
|
296
296
|
*/
|
|
297
297
|
getSipMediaApplicationLoggingConfiguration(params: ChimeSDKVoice.Types.GetSipMediaApplicationLoggingConfigurationRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetSipMediaApplicationLoggingConfigurationResponse) => void): Request<ChimeSDKVoice.Types.GetSipMediaApplicationLoggingConfigurationResponse, AWSError>;
|
|
298
298
|
/**
|
|
299
|
-
*
|
|
299
|
+
* Retrieves the logging configuration for the specified SIP media application.
|
|
300
300
|
*/
|
|
301
301
|
getSipMediaApplicationLoggingConfiguration(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetSipMediaApplicationLoggingConfigurationResponse) => void): Request<ChimeSDKVoice.Types.GetSipMediaApplicationLoggingConfigurationResponse, AWSError>;
|
|
302
302
|
/**
|
|
303
|
-
*
|
|
303
|
+
* Retrieves the details of a SIP rule, such as the rule ID, name, triggers, and target endpoints.
|
|
304
304
|
*/
|
|
305
305
|
getSipRule(params: ChimeSDKVoice.Types.GetSipRuleRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetSipRuleResponse) => void): Request<ChimeSDKVoice.Types.GetSipRuleResponse, AWSError>;
|
|
306
306
|
/**
|
|
307
|
-
*
|
|
307
|
+
* Retrieves the details of a SIP rule, such as the rule ID, name, triggers, and target endpoints.
|
|
308
308
|
*/
|
|
309
309
|
getSipRule(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetSipRuleResponse) => void): Request<ChimeSDKVoice.Types.GetSipRuleResponse, AWSError>;
|
|
310
310
|
/**
|
|
311
|
-
*
|
|
311
|
+
* Retrieves the details of the specified speaker search task.
|
|
312
312
|
*/
|
|
313
313
|
getSpeakerSearchTask(params: ChimeSDKVoice.Types.GetSpeakerSearchTaskRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetSpeakerSearchTaskResponse) => void): Request<ChimeSDKVoice.Types.GetSpeakerSearchTaskResponse, AWSError>;
|
|
314
314
|
/**
|
|
315
|
-
*
|
|
315
|
+
* Retrieves the details of the specified speaker search task.
|
|
316
316
|
*/
|
|
317
317
|
getSpeakerSearchTask(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetSpeakerSearchTaskResponse) => void): Request<ChimeSDKVoice.Types.GetSpeakerSearchTaskResponse, AWSError>;
|
|
318
318
|
/**
|
|
319
|
-
*
|
|
319
|
+
* Retrieves details for the specified Amazon Chime SDK Voice Connector, such as timestamps,name, outbound host, and encryption requirements.
|
|
320
320
|
*/
|
|
321
321
|
getVoiceConnector(params: ChimeSDKVoice.Types.GetVoiceConnectorRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceConnectorResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceConnectorResponse, AWSError>;
|
|
322
322
|
/**
|
|
323
|
-
*
|
|
323
|
+
* Retrieves details for the specified Amazon Chime SDK Voice Connector, such as timestamps,name, outbound host, and encryption requirements.
|
|
324
324
|
*/
|
|
325
325
|
getVoiceConnector(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceConnectorResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceConnectorResponse, AWSError>;
|
|
326
326
|
/**
|
|
327
|
-
*
|
|
327
|
+
* Retrieves the emergency calling configuration details for the specified Voice Connector.
|
|
328
328
|
*/
|
|
329
329
|
getVoiceConnectorEmergencyCallingConfiguration(params: ChimeSDKVoice.Types.GetVoiceConnectorEmergencyCallingConfigurationRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceConnectorEmergencyCallingConfigurationResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceConnectorEmergencyCallingConfigurationResponse, AWSError>;
|
|
330
330
|
/**
|
|
331
|
-
*
|
|
331
|
+
* Retrieves the emergency calling configuration details for the specified Voice Connector.
|
|
332
332
|
*/
|
|
333
333
|
getVoiceConnectorEmergencyCallingConfiguration(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceConnectorEmergencyCallingConfigurationResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceConnectorEmergencyCallingConfigurationResponse, AWSError>;
|
|
334
334
|
/**
|
|
335
|
-
*
|
|
335
|
+
* Retrieves details for the specified Amazon Chime SDK Voice Connector group, such as timestamps,name, and associated VoiceConnectorItems.
|
|
336
336
|
*/
|
|
337
337
|
getVoiceConnectorGroup(params: ChimeSDKVoice.Types.GetVoiceConnectorGroupRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceConnectorGroupResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceConnectorGroupResponse, AWSError>;
|
|
338
338
|
/**
|
|
339
|
-
*
|
|
339
|
+
* Retrieves details for the specified Amazon Chime SDK Voice Connector group, such as timestamps,name, and associated VoiceConnectorItems.
|
|
340
340
|
*/
|
|
341
341
|
getVoiceConnectorGroup(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceConnectorGroupResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceConnectorGroupResponse, AWSError>;
|
|
342
342
|
/**
|
|
343
|
-
*
|
|
343
|
+
* Retrieves the logging configuration settings for the specified Voice Connector. Shows whether SIP message logs are enabled for sending to Amazon CloudWatch Logs.
|
|
344
344
|
*/
|
|
345
345
|
getVoiceConnectorLoggingConfiguration(params: ChimeSDKVoice.Types.GetVoiceConnectorLoggingConfigurationRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceConnectorLoggingConfigurationResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceConnectorLoggingConfigurationResponse, AWSError>;
|
|
346
346
|
/**
|
|
347
|
-
*
|
|
347
|
+
* Retrieves the logging configuration settings for the specified Voice Connector. Shows whether SIP message logs are enabled for sending to Amazon CloudWatch Logs.
|
|
348
348
|
*/
|
|
349
349
|
getVoiceConnectorLoggingConfiguration(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceConnectorLoggingConfigurationResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceConnectorLoggingConfigurationResponse, AWSError>;
|
|
350
350
|
/**
|
|
351
|
-
*
|
|
351
|
+
* Retrieves the origination settings for the specified Voice Connector.
|
|
352
352
|
*/
|
|
353
353
|
getVoiceConnectorOrigination(params: ChimeSDKVoice.Types.GetVoiceConnectorOriginationRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceConnectorOriginationResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceConnectorOriginationResponse, AWSError>;
|
|
354
354
|
/**
|
|
355
|
-
*
|
|
355
|
+
* Retrieves the origination settings for the specified Voice Connector.
|
|
356
356
|
*/
|
|
357
357
|
getVoiceConnectorOrigination(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceConnectorOriginationResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceConnectorOriginationResponse, AWSError>;
|
|
358
358
|
/**
|
|
359
|
-
*
|
|
359
|
+
* Retrieves the proxy configuration details for the specified Amazon Chime SDK Voice Connector.
|
|
360
360
|
*/
|
|
361
361
|
getVoiceConnectorProxy(params: ChimeSDKVoice.Types.GetVoiceConnectorProxyRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceConnectorProxyResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceConnectorProxyResponse, AWSError>;
|
|
362
362
|
/**
|
|
363
|
-
*
|
|
363
|
+
* Retrieves the proxy configuration details for the specified Amazon Chime SDK Voice Connector.
|
|
364
364
|
*/
|
|
365
365
|
getVoiceConnectorProxy(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceConnectorProxyResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceConnectorProxyResponse, AWSError>;
|
|
366
366
|
/**
|
|
367
|
-
*
|
|
367
|
+
* Retrieves the streaming configuration details for the specified Amazon Chime SDK Voice Connector. Shows whether media streaming is enabled for sending to Amazon Kinesis. It also shows the retention period, in hours, for the Amazon Kinesis data.
|
|
368
368
|
*/
|
|
369
369
|
getVoiceConnectorStreamingConfiguration(params: ChimeSDKVoice.Types.GetVoiceConnectorStreamingConfigurationRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceConnectorStreamingConfigurationResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceConnectorStreamingConfigurationResponse, AWSError>;
|
|
370
370
|
/**
|
|
371
|
-
*
|
|
371
|
+
* Retrieves the streaming configuration details for the specified Amazon Chime SDK Voice Connector. Shows whether media streaming is enabled for sending to Amazon Kinesis. It also shows the retention period, in hours, for the Amazon Kinesis data.
|
|
372
372
|
*/
|
|
373
373
|
getVoiceConnectorStreamingConfiguration(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceConnectorStreamingConfigurationResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceConnectorStreamingConfigurationResponse, AWSError>;
|
|
374
374
|
/**
|
|
375
|
-
*
|
|
375
|
+
* Retrieves the termination setting details for the specified Voice Connector.
|
|
376
376
|
*/
|
|
377
377
|
getVoiceConnectorTermination(params: ChimeSDKVoice.Types.GetVoiceConnectorTerminationRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceConnectorTerminationResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceConnectorTerminationResponse, AWSError>;
|
|
378
378
|
/**
|
|
379
|
-
*
|
|
379
|
+
* Retrieves the termination setting details for the specified Voice Connector.
|
|
380
380
|
*/
|
|
381
381
|
getVoiceConnectorTermination(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceConnectorTerminationResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceConnectorTerminationResponse, AWSError>;
|
|
382
382
|
/**
|
|
383
|
-
*
|
|
383
|
+
* Retrieves information about the last time a SIP OPTIONS ping was received from your SIP infrastructure for the specified Amazon Chime SDK Voice Connector.
|
|
384
384
|
*/
|
|
385
385
|
getVoiceConnectorTerminationHealth(params: ChimeSDKVoice.Types.GetVoiceConnectorTerminationHealthRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceConnectorTerminationHealthResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceConnectorTerminationHealthResponse, AWSError>;
|
|
386
386
|
/**
|
|
387
|
-
*
|
|
387
|
+
* Retrieves information about the last time a SIP OPTIONS ping was received from your SIP infrastructure for the specified Amazon Chime SDK Voice Connector.
|
|
388
388
|
*/
|
|
389
389
|
getVoiceConnectorTerminationHealth(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceConnectorTerminationHealthResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceConnectorTerminationHealthResponse, AWSError>;
|
|
390
390
|
/**
|
|
391
|
-
*
|
|
391
|
+
* Retrieves the details of the specified voice profile.
|
|
392
392
|
*/
|
|
393
393
|
getVoiceProfile(params: ChimeSDKVoice.Types.GetVoiceProfileRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceProfileResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceProfileResponse, AWSError>;
|
|
394
394
|
/**
|
|
395
|
-
*
|
|
395
|
+
* Retrieves the details of the specified voice profile.
|
|
396
396
|
*/
|
|
397
397
|
getVoiceProfile(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceProfileResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceProfileResponse, AWSError>;
|
|
398
398
|
/**
|
|
399
|
-
*
|
|
399
|
+
* Retrieves the details of the specified voice profile domain.
|
|
400
400
|
*/
|
|
401
401
|
getVoiceProfileDomain(params: ChimeSDKVoice.Types.GetVoiceProfileDomainRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceProfileDomainResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceProfileDomainResponse, AWSError>;
|
|
402
402
|
/**
|
|
403
|
-
*
|
|
403
|
+
* Retrieves the details of the specified voice profile domain.
|
|
404
404
|
*/
|
|
405
405
|
getVoiceProfileDomain(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceProfileDomainResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceProfileDomainResponse, AWSError>;
|
|
406
406
|
/**
|
|
407
|
-
*
|
|
407
|
+
* Retrieves the details of a voice tone analysis task.
|
|
408
408
|
*/
|
|
409
409
|
getVoiceToneAnalysisTask(params: ChimeSDKVoice.Types.GetVoiceToneAnalysisTaskRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceToneAnalysisTaskResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceToneAnalysisTaskResponse, AWSError>;
|
|
410
410
|
/**
|
|
411
|
-
*
|
|
411
|
+
* Retrieves the details of a voice tone analysis task.
|
|
412
412
|
*/
|
|
413
413
|
getVoiceToneAnalysisTask(callback?: (err: AWSError, data: ChimeSDKVoice.Types.GetVoiceToneAnalysisTaskResponse) => void): Request<ChimeSDKVoice.Types.GetVoiceToneAnalysisTaskResponse, AWSError>;
|
|
414
414
|
/**
|
|
415
|
-
*
|
|
415
|
+
* Lists the available AWS Regions in which you can create an Amazon Chime SDK Voice Connector.
|
|
416
416
|
*/
|
|
417
417
|
listAvailableVoiceConnectorRegions(callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListAvailableVoiceConnectorRegionsResponse) => void): Request<ChimeSDKVoice.Types.ListAvailableVoiceConnectorRegionsResponse, AWSError>;
|
|
418
418
|
/**
|
|
419
|
-
*
|
|
419
|
+
* Lists the phone numbers for an administrator's Amazon Chime SDK account.
|
|
420
420
|
*/
|
|
421
421
|
listPhoneNumberOrders(params: ChimeSDKVoice.Types.ListPhoneNumberOrdersRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListPhoneNumberOrdersResponse) => void): Request<ChimeSDKVoice.Types.ListPhoneNumberOrdersResponse, AWSError>;
|
|
422
422
|
/**
|
|
423
|
-
*
|
|
423
|
+
* Lists the phone numbers for an administrator's Amazon Chime SDK account.
|
|
424
424
|
*/
|
|
425
425
|
listPhoneNumberOrders(callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListPhoneNumberOrdersResponse) => void): Request<ChimeSDKVoice.Types.ListPhoneNumberOrdersResponse, AWSError>;
|
|
426
426
|
/**
|
|
427
|
-
*
|
|
427
|
+
* Lists the phone numbers for the specified Amazon Chime SDK account, Amazon Chime SDK user, Amazon Chime SDK Voice Connector, or Amazon Chime SDK Voice Connector group.
|
|
428
428
|
*/
|
|
429
429
|
listPhoneNumbers(params: ChimeSDKVoice.Types.ListPhoneNumbersRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListPhoneNumbersResponse) => void): Request<ChimeSDKVoice.Types.ListPhoneNumbersResponse, AWSError>;
|
|
430
430
|
/**
|
|
431
|
-
*
|
|
431
|
+
* Lists the phone numbers for the specified Amazon Chime SDK account, Amazon Chime SDK user, Amazon Chime SDK Voice Connector, or Amazon Chime SDK Voice Connector group.
|
|
432
432
|
*/
|
|
433
433
|
listPhoneNumbers(callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListPhoneNumbersResponse) => void): Request<ChimeSDKVoice.Types.ListPhoneNumbersResponse, AWSError>;
|
|
434
434
|
/**
|
|
435
|
-
*
|
|
435
|
+
* Lists the proxy sessions for the specified Amazon Chime SDK Voice Connector.
|
|
436
436
|
*/
|
|
437
437
|
listProxySessions(params: ChimeSDKVoice.Types.ListProxySessionsRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListProxySessionsResponse) => void): Request<ChimeSDKVoice.Types.ListProxySessionsResponse, AWSError>;
|
|
438
438
|
/**
|
|
439
|
-
*
|
|
439
|
+
* Lists the proxy sessions for the specified Amazon Chime SDK Voice Connector.
|
|
440
440
|
*/
|
|
441
441
|
listProxySessions(callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListProxySessionsResponse) => void): Request<ChimeSDKVoice.Types.ListProxySessionsResponse, AWSError>;
|
|
442
442
|
/**
|
|
443
|
-
*
|
|
443
|
+
* Lists the SIP media applications under the administrator's AWS account.
|
|
444
444
|
*/
|
|
445
445
|
listSipMediaApplications(params: ChimeSDKVoice.Types.ListSipMediaApplicationsRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListSipMediaApplicationsResponse) => void): Request<ChimeSDKVoice.Types.ListSipMediaApplicationsResponse, AWSError>;
|
|
446
446
|
/**
|
|
447
|
-
*
|
|
447
|
+
* Lists the SIP media applications under the administrator's AWS account.
|
|
448
448
|
*/
|
|
449
449
|
listSipMediaApplications(callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListSipMediaApplicationsResponse) => void): Request<ChimeSDKVoice.Types.ListSipMediaApplicationsResponse, AWSError>;
|
|
450
450
|
/**
|
|
451
|
-
*
|
|
451
|
+
* Lists the SIP rules under the administrator's AWS account.
|
|
452
452
|
*/
|
|
453
453
|
listSipRules(params: ChimeSDKVoice.Types.ListSipRulesRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListSipRulesResponse) => void): Request<ChimeSDKVoice.Types.ListSipRulesResponse, AWSError>;
|
|
454
454
|
/**
|
|
455
|
-
*
|
|
455
|
+
* Lists the SIP rules under the administrator's AWS account.
|
|
456
456
|
*/
|
|
457
457
|
listSipRules(callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListSipRulesResponse) => void): Request<ChimeSDKVoice.Types.ListSipRulesResponse, AWSError>;
|
|
458
458
|
/**
|
|
459
|
-
*
|
|
459
|
+
* Lists the countries that you can order phone numbers from.
|
|
460
460
|
*/
|
|
461
461
|
listSupportedPhoneNumberCountries(params: ChimeSDKVoice.Types.ListSupportedPhoneNumberCountriesRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListSupportedPhoneNumberCountriesResponse) => void): Request<ChimeSDKVoice.Types.ListSupportedPhoneNumberCountriesResponse, AWSError>;
|
|
462
462
|
/**
|
|
463
|
-
*
|
|
463
|
+
* Lists the countries that you can order phone numbers from.
|
|
464
464
|
*/
|
|
465
465
|
listSupportedPhoneNumberCountries(callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListSupportedPhoneNumberCountriesResponse) => void): Request<ChimeSDKVoice.Types.ListSupportedPhoneNumberCountriesResponse, AWSError>;
|
|
466
466
|
/**
|
|
467
|
-
*
|
|
467
|
+
* Returns a list of the tags in a given resource.
|
|
468
468
|
*/
|
|
469
469
|
listTagsForResource(params: ChimeSDKVoice.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListTagsForResourceResponse) => void): Request<ChimeSDKVoice.Types.ListTagsForResourceResponse, AWSError>;
|
|
470
470
|
/**
|
|
471
|
-
*
|
|
471
|
+
* Returns a list of the tags in a given resource.
|
|
472
472
|
*/
|
|
473
473
|
listTagsForResource(callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListTagsForResourceResponse) => void): Request<ChimeSDKVoice.Types.ListTagsForResourceResponse, AWSError>;
|
|
474
474
|
/**
|
|
475
|
-
*
|
|
475
|
+
* Lists the Amazon Chime SDK Voice Connector groups in the administrator's AWS account.
|
|
476
476
|
*/
|
|
477
477
|
listVoiceConnectorGroups(params: ChimeSDKVoice.Types.ListVoiceConnectorGroupsRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListVoiceConnectorGroupsResponse) => void): Request<ChimeSDKVoice.Types.ListVoiceConnectorGroupsResponse, AWSError>;
|
|
478
478
|
/**
|
|
479
|
-
*
|
|
479
|
+
* Lists the Amazon Chime SDK Voice Connector groups in the administrator's AWS account.
|
|
480
480
|
*/
|
|
481
481
|
listVoiceConnectorGroups(callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListVoiceConnectorGroupsResponse) => void): Request<ChimeSDKVoice.Types.ListVoiceConnectorGroupsResponse, AWSError>;
|
|
482
482
|
/**
|
|
483
|
-
*
|
|
483
|
+
* Lists the SIP credentials for the specified Amazon Chime SDK Voice Connector.
|
|
484
484
|
*/
|
|
485
485
|
listVoiceConnectorTerminationCredentials(params: ChimeSDKVoice.Types.ListVoiceConnectorTerminationCredentialsRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListVoiceConnectorTerminationCredentialsResponse) => void): Request<ChimeSDKVoice.Types.ListVoiceConnectorTerminationCredentialsResponse, AWSError>;
|
|
486
486
|
/**
|
|
487
|
-
*
|
|
487
|
+
* Lists the SIP credentials for the specified Amazon Chime SDK Voice Connector.
|
|
488
488
|
*/
|
|
489
489
|
listVoiceConnectorTerminationCredentials(callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListVoiceConnectorTerminationCredentialsResponse) => void): Request<ChimeSDKVoice.Types.ListVoiceConnectorTerminationCredentialsResponse, AWSError>;
|
|
490
490
|
/**
|
|
491
|
-
*
|
|
491
|
+
* Lists the Amazon Chime SDK Voice Connectors in the administrators AWS account.
|
|
492
492
|
*/
|
|
493
493
|
listVoiceConnectors(params: ChimeSDKVoice.Types.ListVoiceConnectorsRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListVoiceConnectorsResponse) => void): Request<ChimeSDKVoice.Types.ListVoiceConnectorsResponse, AWSError>;
|
|
494
494
|
/**
|
|
495
|
-
*
|
|
495
|
+
* Lists the Amazon Chime SDK Voice Connectors in the administrators AWS account.
|
|
496
496
|
*/
|
|
497
497
|
listVoiceConnectors(callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListVoiceConnectorsResponse) => void): Request<ChimeSDKVoice.Types.ListVoiceConnectorsResponse, AWSError>;
|
|
498
498
|
/**
|
|
499
|
-
*
|
|
499
|
+
* Lists the specified voice profile domains in the administrator's AWS account.
|
|
500
500
|
*/
|
|
501
501
|
listVoiceProfileDomains(params: ChimeSDKVoice.Types.ListVoiceProfileDomainsRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListVoiceProfileDomainsResponse) => void): Request<ChimeSDKVoice.Types.ListVoiceProfileDomainsResponse, AWSError>;
|
|
502
502
|
/**
|
|
503
|
-
*
|
|
503
|
+
* Lists the specified voice profile domains in the administrator's AWS account.
|
|
504
504
|
*/
|
|
505
505
|
listVoiceProfileDomains(callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListVoiceProfileDomainsResponse) => void): Request<ChimeSDKVoice.Types.ListVoiceProfileDomainsResponse, AWSError>;
|
|
506
506
|
/**
|
|
507
|
-
*
|
|
507
|
+
* Lists the voice profiles in a voice profile domain.
|
|
508
508
|
*/
|
|
509
509
|
listVoiceProfiles(params: ChimeSDKVoice.Types.ListVoiceProfilesRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListVoiceProfilesResponse) => void): Request<ChimeSDKVoice.Types.ListVoiceProfilesResponse, AWSError>;
|
|
510
510
|
/**
|
|
511
|
-
*
|
|
511
|
+
* Lists the voice profiles in a voice profile domain.
|
|
512
512
|
*/
|
|
513
513
|
listVoiceProfiles(callback?: (err: AWSError, data: ChimeSDKVoice.Types.ListVoiceProfilesResponse) => void): Request<ChimeSDKVoice.Types.ListVoiceProfilesResponse, AWSError>;
|
|
514
514
|
/**
|
|
515
|
-
*
|
|
515
|
+
* Updates the Alexa Skill configuration for the SIP media application.
|
|
516
516
|
*/
|
|
517
517
|
putSipMediaApplicationAlexaSkillConfiguration(params: ChimeSDKVoice.Types.PutSipMediaApplicationAlexaSkillConfigurationRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.PutSipMediaApplicationAlexaSkillConfigurationResponse) => void): Request<ChimeSDKVoice.Types.PutSipMediaApplicationAlexaSkillConfigurationResponse, AWSError>;
|
|
518
518
|
/**
|
|
519
|
-
*
|
|
519
|
+
* Updates the Alexa Skill configuration for the SIP media application.
|
|
520
520
|
*/
|
|
521
521
|
putSipMediaApplicationAlexaSkillConfiguration(callback?: (err: AWSError, data: ChimeSDKVoice.Types.PutSipMediaApplicationAlexaSkillConfigurationResponse) => void): Request<ChimeSDKVoice.Types.PutSipMediaApplicationAlexaSkillConfigurationResponse, AWSError>;
|
|
522
522
|
/**
|
|
523
|
-
*
|
|
523
|
+
* Updates the logging configuration for the specified SIP media application.
|
|
524
524
|
*/
|
|
525
525
|
putSipMediaApplicationLoggingConfiguration(params: ChimeSDKVoice.Types.PutSipMediaApplicationLoggingConfigurationRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.PutSipMediaApplicationLoggingConfigurationResponse) => void): Request<ChimeSDKVoice.Types.PutSipMediaApplicationLoggingConfigurationResponse, AWSError>;
|
|
526
526
|
/**
|
|
527
|
-
*
|
|
527
|
+
* Updates the logging configuration for the specified SIP media application.
|
|
528
528
|
*/
|
|
529
529
|
putSipMediaApplicationLoggingConfiguration(callback?: (err: AWSError, data: ChimeSDKVoice.Types.PutSipMediaApplicationLoggingConfigurationResponse) => void): Request<ChimeSDKVoice.Types.PutSipMediaApplicationLoggingConfigurationResponse, AWSError>;
|
|
530
530
|
/**
|
|
531
|
-
*
|
|
531
|
+
* Updates a Voice Connector's emergency calling configuration.
|
|
532
532
|
*/
|
|
533
533
|
putVoiceConnectorEmergencyCallingConfiguration(params: ChimeSDKVoice.Types.PutVoiceConnectorEmergencyCallingConfigurationRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.PutVoiceConnectorEmergencyCallingConfigurationResponse) => void): Request<ChimeSDKVoice.Types.PutVoiceConnectorEmergencyCallingConfigurationResponse, AWSError>;
|
|
534
534
|
/**
|
|
535
|
-
*
|
|
535
|
+
* Updates a Voice Connector's emergency calling configuration.
|
|
536
536
|
*/
|
|
537
537
|
putVoiceConnectorEmergencyCallingConfiguration(callback?: (err: AWSError, data: ChimeSDKVoice.Types.PutVoiceConnectorEmergencyCallingConfigurationResponse) => void): Request<ChimeSDKVoice.Types.PutVoiceConnectorEmergencyCallingConfigurationResponse, AWSError>;
|
|
538
538
|
/**
|
|
539
|
-
*
|
|
539
|
+
* Updates a Voice Connector's logging configuration.
|
|
540
540
|
*/
|
|
541
541
|
putVoiceConnectorLoggingConfiguration(params: ChimeSDKVoice.Types.PutVoiceConnectorLoggingConfigurationRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.PutVoiceConnectorLoggingConfigurationResponse) => void): Request<ChimeSDKVoice.Types.PutVoiceConnectorLoggingConfigurationResponse, AWSError>;
|
|
542
542
|
/**
|
|
543
|
-
*
|
|
543
|
+
* Updates a Voice Connector's logging configuration.
|
|
544
544
|
*/
|
|
545
545
|
putVoiceConnectorLoggingConfiguration(callback?: (err: AWSError, data: ChimeSDKVoice.Types.PutVoiceConnectorLoggingConfigurationResponse) => void): Request<ChimeSDKVoice.Types.PutVoiceConnectorLoggingConfigurationResponse, AWSError>;
|
|
546
546
|
/**
|
|
547
|
-
*
|
|
547
|
+
* Updates a Voice Connector's origination settings.
|
|
548
548
|
*/
|
|
549
549
|
putVoiceConnectorOrigination(params: ChimeSDKVoice.Types.PutVoiceConnectorOriginationRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.PutVoiceConnectorOriginationResponse) => void): Request<ChimeSDKVoice.Types.PutVoiceConnectorOriginationResponse, AWSError>;
|
|
550
550
|
/**
|
|
551
|
-
*
|
|
551
|
+
* Updates a Voice Connector's origination settings.
|
|
552
552
|
*/
|
|
553
553
|
putVoiceConnectorOrigination(callback?: (err: AWSError, data: ChimeSDKVoice.Types.PutVoiceConnectorOriginationResponse) => void): Request<ChimeSDKVoice.Types.PutVoiceConnectorOriginationResponse, AWSError>;
|
|
554
554
|
/**
|
|
555
|
-
*
|
|
555
|
+
* Puts the specified proxy configuration to the specified Amazon Chime SDK Voice Connector.
|
|
556
556
|
*/
|
|
557
557
|
putVoiceConnectorProxy(params: ChimeSDKVoice.Types.PutVoiceConnectorProxyRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.PutVoiceConnectorProxyResponse) => void): Request<ChimeSDKVoice.Types.PutVoiceConnectorProxyResponse, AWSError>;
|
|
558
558
|
/**
|
|
559
|
-
*
|
|
559
|
+
* Puts the specified proxy configuration to the specified Amazon Chime SDK Voice Connector.
|
|
560
560
|
*/
|
|
561
561
|
putVoiceConnectorProxy(callback?: (err: AWSError, data: ChimeSDKVoice.Types.PutVoiceConnectorProxyResponse) => void): Request<ChimeSDKVoice.Types.PutVoiceConnectorProxyResponse, AWSError>;
|
|
562
562
|
/**
|
|
563
|
-
*
|
|
563
|
+
* Updates a Voice Connector's streaming configuration settings.
|
|
564
564
|
*/
|
|
565
565
|
putVoiceConnectorStreamingConfiguration(params: ChimeSDKVoice.Types.PutVoiceConnectorStreamingConfigurationRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.PutVoiceConnectorStreamingConfigurationResponse) => void): Request<ChimeSDKVoice.Types.PutVoiceConnectorStreamingConfigurationResponse, AWSError>;
|
|
566
566
|
/**
|
|
567
|
-
*
|
|
567
|
+
* Updates a Voice Connector's streaming configuration settings.
|
|
568
568
|
*/
|
|
569
569
|
putVoiceConnectorStreamingConfiguration(callback?: (err: AWSError, data: ChimeSDKVoice.Types.PutVoiceConnectorStreamingConfigurationResponse) => void): Request<ChimeSDKVoice.Types.PutVoiceConnectorStreamingConfigurationResponse, AWSError>;
|
|
570
570
|
/**
|
|
571
|
-
*
|
|
571
|
+
* Updates a Voice Connector's termination settings.
|
|
572
572
|
*/
|
|
573
573
|
putVoiceConnectorTermination(params: ChimeSDKVoice.Types.PutVoiceConnectorTerminationRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.PutVoiceConnectorTerminationResponse) => void): Request<ChimeSDKVoice.Types.PutVoiceConnectorTerminationResponse, AWSError>;
|
|
574
574
|
/**
|
|
575
|
-
*
|
|
575
|
+
* Updates a Voice Connector's termination settings.
|
|
576
576
|
*/
|
|
577
577
|
putVoiceConnectorTermination(callback?: (err: AWSError, data: ChimeSDKVoice.Types.PutVoiceConnectorTerminationResponse) => void): Request<ChimeSDKVoice.Types.PutVoiceConnectorTerminationResponse, AWSError>;
|
|
578
578
|
/**
|
|
579
|
-
*
|
|
579
|
+
* Updates a Voice Connector's termination credentials.
|
|
580
580
|
*/
|
|
581
581
|
putVoiceConnectorTerminationCredentials(params: ChimeSDKVoice.Types.PutVoiceConnectorTerminationCredentialsRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
582
582
|
/**
|
|
583
|
-
*
|
|
583
|
+
* Updates a Voice Connector's termination credentials.
|
|
584
584
|
*/
|
|
585
585
|
putVoiceConnectorTerminationCredentials(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
586
586
|
/**
|
|
587
|
-
*
|
|
587
|
+
* Restores a deleted phone number.
|
|
588
588
|
*/
|
|
589
589
|
restorePhoneNumber(params: ChimeSDKVoice.Types.RestorePhoneNumberRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.RestorePhoneNumberResponse) => void): Request<ChimeSDKVoice.Types.RestorePhoneNumberResponse, AWSError>;
|
|
590
590
|
/**
|
|
591
|
-
*
|
|
591
|
+
* Restores a deleted phone number.
|
|
592
592
|
*/
|
|
593
593
|
restorePhoneNumber(callback?: (err: AWSError, data: ChimeSDKVoice.Types.RestorePhoneNumberResponse) => void): Request<ChimeSDKVoice.Types.RestorePhoneNumberResponse, AWSError>;
|
|
594
594
|
/**
|
|
595
|
-
*
|
|
595
|
+
* Searches the provisioned phone numbers in an organization.
|
|
596
596
|
*/
|
|
597
597
|
searchAvailablePhoneNumbers(params: ChimeSDKVoice.Types.SearchAvailablePhoneNumbersRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.SearchAvailablePhoneNumbersResponse) => void): Request<ChimeSDKVoice.Types.SearchAvailablePhoneNumbersResponse, AWSError>;
|
|
598
598
|
/**
|
|
599
|
-
*
|
|
599
|
+
* Searches the provisioned phone numbers in an organization.
|
|
600
600
|
*/
|
|
601
601
|
searchAvailablePhoneNumbers(callback?: (err: AWSError, data: ChimeSDKVoice.Types.SearchAvailablePhoneNumbersResponse) => void): Request<ChimeSDKVoice.Types.SearchAvailablePhoneNumbersResponse, AWSError>;
|
|
602
602
|
/**
|
|
603
|
-
*
|
|
603
|
+
* Starts a speaker search task. 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 AWS service terms for the Amazon Chime SDK.
|
|
604
604
|
*/
|
|
605
605
|
startSpeakerSearchTask(params: ChimeSDKVoice.Types.StartSpeakerSearchTaskRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.StartSpeakerSearchTaskResponse) => void): Request<ChimeSDKVoice.Types.StartSpeakerSearchTaskResponse, AWSError>;
|
|
606
606
|
/**
|
|
607
|
-
*
|
|
607
|
+
* Starts a speaker search task. 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 AWS service terms for the Amazon Chime SDK.
|
|
608
608
|
*/
|
|
609
609
|
startSpeakerSearchTask(callback?: (err: AWSError, data: ChimeSDKVoice.Types.StartSpeakerSearchTaskResponse) => void): Request<ChimeSDKVoice.Types.StartSpeakerSearchTaskResponse, AWSError>;
|
|
610
610
|
/**
|
|
611
|
-
*
|
|
611
|
+
* Starts a voice tone analysis task. For more information about voice tone analysis, see Using Amazon Chime SDK voice analytics in the Amazon Chime SDK Developer Guide. 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 AWS service terms for the Amazon Chime SDK.
|
|
612
612
|
*/
|
|
613
613
|
startVoiceToneAnalysisTask(params: ChimeSDKVoice.Types.StartVoiceToneAnalysisTaskRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.StartVoiceToneAnalysisTaskResponse) => void): Request<ChimeSDKVoice.Types.StartVoiceToneAnalysisTaskResponse, AWSError>;
|
|
614
614
|
/**
|
|
615
|
-
*
|
|
615
|
+
* Starts a voice tone analysis task. For more information about voice tone analysis, see Using Amazon Chime SDK voice analytics in the Amazon Chime SDK Developer Guide. 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 AWS service terms for the Amazon Chime SDK.
|
|
616
616
|
*/
|
|
617
617
|
startVoiceToneAnalysisTask(callback?: (err: AWSError, data: ChimeSDKVoice.Types.StartVoiceToneAnalysisTaskResponse) => void): Request<ChimeSDKVoice.Types.StartVoiceToneAnalysisTaskResponse, AWSError>;
|
|
618
618
|
/**
|
|
619
|
-
*
|
|
619
|
+
* Stops a speaker search task.
|
|
620
620
|
*/
|
|
621
621
|
stopSpeakerSearchTask(params: ChimeSDKVoice.Types.StopSpeakerSearchTaskRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
622
622
|
/**
|
|
623
|
-
*
|
|
623
|
+
* Stops a speaker search task.
|
|
624
624
|
*/
|
|
625
625
|
stopSpeakerSearchTask(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
626
626
|
/**
|
|
627
|
-
*
|
|
627
|
+
* Stops a voice tone analysis task.
|
|
628
628
|
*/
|
|
629
629
|
stopVoiceToneAnalysisTask(params: ChimeSDKVoice.Types.StopVoiceToneAnalysisTaskRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
630
630
|
/**
|
|
631
|
-
*
|
|
631
|
+
* Stops a voice tone analysis task.
|
|
632
632
|
*/
|
|
633
633
|
stopVoiceToneAnalysisTask(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
634
634
|
/**
|
|
635
|
-
*
|
|
635
|
+
* Adds a tag to the specified resource.
|
|
636
636
|
*/
|
|
637
637
|
tagResource(params: ChimeSDKVoice.Types.TagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
638
638
|
/**
|
|
639
|
-
*
|
|
639
|
+
* Adds a tag to the specified resource.
|
|
640
640
|
*/
|
|
641
641
|
tagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
642
642
|
/**
|
|
643
|
-
*
|
|
643
|
+
* Removes tags from a resource.
|
|
644
644
|
*/
|
|
645
645
|
untagResource(params: ChimeSDKVoice.Types.UntagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
646
646
|
/**
|
|
647
|
-
*
|
|
647
|
+
* Removes tags from a resource.
|
|
648
648
|
*/
|
|
649
649
|
untagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
650
650
|
/**
|
|
651
|
-
*
|
|
651
|
+
* Updates global settings for the Amazon Chime SDK Voice Connectors in an AWS account.
|
|
652
652
|
*/
|
|
653
653
|
updateGlobalSettings(params: ChimeSDKVoice.Types.UpdateGlobalSettingsRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
654
654
|
/**
|
|
655
|
-
*
|
|
655
|
+
* Updates global settings for the Amazon Chime SDK Voice Connectors in an AWS account.
|
|
656
656
|
*/
|
|
657
657
|
updateGlobalSettings(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
658
658
|
/**
|
|
659
|
-
*
|
|
659
|
+
* Updates phone number details, such as product type or calling name, for the specified phone number ID. You can update one phone number detail at a time. For example, you can update either the product type or the calling name in one action. For numbers outside the U.S., you must use the Amazon Chime SDK SIP Media Application Dial-In product type. Updates to outbound calling names can take 72 hours to complete. Pending updates to outbound calling names must be complete before you can request another update.
|
|
660
660
|
*/
|
|
661
661
|
updatePhoneNumber(params: ChimeSDKVoice.Types.UpdatePhoneNumberRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.UpdatePhoneNumberResponse) => void): Request<ChimeSDKVoice.Types.UpdatePhoneNumberResponse, AWSError>;
|
|
662
662
|
/**
|
|
663
|
-
*
|
|
663
|
+
* Updates phone number details, such as product type or calling name, for the specified phone number ID. You can update one phone number detail at a time. For example, you can update either the product type or the calling name in one action. For numbers outside the U.S., you must use the Amazon Chime SDK SIP Media Application Dial-In product type. Updates to outbound calling names can take 72 hours to complete. Pending updates to outbound calling names must be complete before you can request another update.
|
|
664
664
|
*/
|
|
665
665
|
updatePhoneNumber(callback?: (err: AWSError, data: ChimeSDKVoice.Types.UpdatePhoneNumberResponse) => void): Request<ChimeSDKVoice.Types.UpdatePhoneNumberResponse, AWSError>;
|
|
666
666
|
/**
|
|
667
|
-
*
|
|
667
|
+
* Updates the phone number settings for the administrator's AWS account, such as the default outbound calling name. You can update the default outbound calling name once every seven days. Outbound calling names can take up to 72 hours to update.
|
|
668
668
|
*/
|
|
669
669
|
updatePhoneNumberSettings(params: ChimeSDKVoice.Types.UpdatePhoneNumberSettingsRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
670
670
|
/**
|
|
671
|
-
*
|
|
671
|
+
* Updates the phone number settings for the administrator's AWS account, such as the default outbound calling name. You can update the default outbound calling name once every seven days. Outbound calling names can take up to 72 hours to update.
|
|
672
672
|
*/
|
|
673
673
|
updatePhoneNumberSettings(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
674
674
|
/**
|
|
675
|
-
*
|
|
675
|
+
* Updates the specified proxy session details, such as voice or SMS capabilities.
|
|
676
676
|
*/
|
|
677
677
|
updateProxySession(params: ChimeSDKVoice.Types.UpdateProxySessionRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.UpdateProxySessionResponse) => void): Request<ChimeSDKVoice.Types.UpdateProxySessionResponse, AWSError>;
|
|
678
678
|
/**
|
|
679
|
-
*
|
|
679
|
+
* Updates the specified proxy session details, such as voice or SMS capabilities.
|
|
680
680
|
*/
|
|
681
681
|
updateProxySession(callback?: (err: AWSError, data: ChimeSDKVoice.Types.UpdateProxySessionResponse) => void): Request<ChimeSDKVoice.Types.UpdateProxySessionResponse, AWSError>;
|
|
682
682
|
/**
|
|
683
|
-
*
|
|
683
|
+
* Updates the details of the specified SIP media application.
|
|
684
684
|
*/
|
|
685
685
|
updateSipMediaApplication(params: ChimeSDKVoice.Types.UpdateSipMediaApplicationRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.UpdateSipMediaApplicationResponse) => void): Request<ChimeSDKVoice.Types.UpdateSipMediaApplicationResponse, AWSError>;
|
|
686
686
|
/**
|
|
687
|
-
*
|
|
687
|
+
* Updates the details of the specified SIP media application.
|
|
688
688
|
*/
|
|
689
689
|
updateSipMediaApplication(callback?: (err: AWSError, data: ChimeSDKVoice.Types.UpdateSipMediaApplicationResponse) => void): Request<ChimeSDKVoice.Types.UpdateSipMediaApplicationResponse, AWSError>;
|
|
690
690
|
/**
|
|
691
|
-
*
|
|
691
|
+
* Invokes the AWS Lambda function associated with the SIP media application and transaction ID in an update request. The Lambda function can then return a new set of actions.
|
|
692
692
|
*/
|
|
693
693
|
updateSipMediaApplicationCall(params: ChimeSDKVoice.Types.UpdateSipMediaApplicationCallRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.UpdateSipMediaApplicationCallResponse) => void): Request<ChimeSDKVoice.Types.UpdateSipMediaApplicationCallResponse, AWSError>;
|
|
694
694
|
/**
|
|
695
|
-
*
|
|
695
|
+
* Invokes the AWS Lambda function associated with the SIP media application and transaction ID in an update request. The Lambda function can then return a new set of actions.
|
|
696
696
|
*/
|
|
697
697
|
updateSipMediaApplicationCall(callback?: (err: AWSError, data: ChimeSDKVoice.Types.UpdateSipMediaApplicationCallResponse) => void): Request<ChimeSDKVoice.Types.UpdateSipMediaApplicationCallResponse, AWSError>;
|
|
698
698
|
/**
|
|
699
|
-
*
|
|
699
|
+
* Updates the details of the specified SIP rule.
|
|
700
700
|
*/
|
|
701
701
|
updateSipRule(params: ChimeSDKVoice.Types.UpdateSipRuleRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.UpdateSipRuleResponse) => void): Request<ChimeSDKVoice.Types.UpdateSipRuleResponse, AWSError>;
|
|
702
702
|
/**
|
|
703
|
-
*
|
|
703
|
+
* Updates the details of the specified SIP rule.
|
|
704
704
|
*/
|
|
705
705
|
updateSipRule(callback?: (err: AWSError, data: ChimeSDKVoice.Types.UpdateSipRuleResponse) => void): Request<ChimeSDKVoice.Types.UpdateSipRuleResponse, AWSError>;
|
|
706
706
|
/**
|
|
707
|
-
*
|
|
707
|
+
* Updates the details for the specified Amazon Chime SDK Voice Connector.
|
|
708
708
|
*/
|
|
709
709
|
updateVoiceConnector(params: ChimeSDKVoice.Types.UpdateVoiceConnectorRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.UpdateVoiceConnectorResponse) => void): Request<ChimeSDKVoice.Types.UpdateVoiceConnectorResponse, AWSError>;
|
|
710
710
|
/**
|
|
711
|
-
*
|
|
711
|
+
* Updates the details for the specified Amazon Chime SDK Voice Connector.
|
|
712
712
|
*/
|
|
713
713
|
updateVoiceConnector(callback?: (err: AWSError, data: ChimeSDKVoice.Types.UpdateVoiceConnectorResponse) => void): Request<ChimeSDKVoice.Types.UpdateVoiceConnectorResponse, AWSError>;
|
|
714
714
|
/**
|
|
715
|
-
*
|
|
715
|
+
* Updates the settings for the specified Amazon Chime SDK Voice Connector group.
|
|
716
716
|
*/
|
|
717
717
|
updateVoiceConnectorGroup(params: ChimeSDKVoice.Types.UpdateVoiceConnectorGroupRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.UpdateVoiceConnectorGroupResponse) => void): Request<ChimeSDKVoice.Types.UpdateVoiceConnectorGroupResponse, AWSError>;
|
|
718
718
|
/**
|
|
719
|
-
*
|
|
719
|
+
* Updates the settings for the specified Amazon Chime SDK Voice Connector group.
|
|
720
720
|
*/
|
|
721
721
|
updateVoiceConnectorGroup(callback?: (err: AWSError, data: ChimeSDKVoice.Types.UpdateVoiceConnectorGroupResponse) => void): Request<ChimeSDKVoice.Types.UpdateVoiceConnectorGroupResponse, AWSError>;
|
|
722
722
|
/**
|
|
723
|
-
*
|
|
723
|
+
* Updates the specified voice profile’s voice print and refreshes its expiration timestamp. As a condition of using this feature, you acknowledge that the collection, use, storage, and retention of your caller’s biometric identifiers and biometric information (“biometric data”) in the form of a digital voiceprint requires the caller’s informed consent via a written release. Such consent is required under various state laws, including biometrics laws in Illinois, Texas, Washington and other state privacy laws. You must provide a written release to each caller through a process that clearly reflects each caller’s informed consent before using Amazon Chime SDK Voice Insights service, as required under the terms of your agreement with AWS governing your use of the service.
|
|
724
724
|
*/
|
|
725
725
|
updateVoiceProfile(params: ChimeSDKVoice.Types.UpdateVoiceProfileRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.UpdateVoiceProfileResponse) => void): Request<ChimeSDKVoice.Types.UpdateVoiceProfileResponse, AWSError>;
|
|
726
726
|
/**
|
|
727
|
-
*
|
|
727
|
+
* Updates the specified voice profile’s voice print and refreshes its expiration timestamp. As a condition of using this feature, you acknowledge that the collection, use, storage, and retention of your caller’s biometric identifiers and biometric information (“biometric data”) in the form of a digital voiceprint requires the caller’s informed consent via a written release. Such consent is required under various state laws, including biometrics laws in Illinois, Texas, Washington and other state privacy laws. You must provide a written release to each caller through a process that clearly reflects each caller’s informed consent before using Amazon Chime SDK Voice Insights service, as required under the terms of your agreement with AWS governing your use of the service.
|
|
728
728
|
*/
|
|
729
729
|
updateVoiceProfile(callback?: (err: AWSError, data: ChimeSDKVoice.Types.UpdateVoiceProfileResponse) => void): Request<ChimeSDKVoice.Types.UpdateVoiceProfileResponse, AWSError>;
|
|
730
730
|
/**
|
|
731
|
-
*
|
|
731
|
+
* Updates the settings for the specified voice profile domain.
|
|
732
732
|
*/
|
|
733
733
|
updateVoiceProfileDomain(params: ChimeSDKVoice.Types.UpdateVoiceProfileDomainRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.UpdateVoiceProfileDomainResponse) => void): Request<ChimeSDKVoice.Types.UpdateVoiceProfileDomainResponse, AWSError>;
|
|
734
734
|
/**
|
|
735
|
-
*
|
|
735
|
+
* Updates the settings for the specified voice profile domain.
|
|
736
736
|
*/
|
|
737
737
|
updateVoiceProfileDomain(callback?: (err: AWSError, data: ChimeSDKVoice.Types.UpdateVoiceProfileDomainResponse) => void): Request<ChimeSDKVoice.Types.UpdateVoiceProfileDomainResponse, AWSError>;
|
|
738
738
|
/**
|
|
739
|
-
*
|
|
739
|
+
* Validates an address to be used for 911 calls made with Amazon Chime SDK Voice Connectors. You can use validated addresses in a Presence Information Data Format Location Object file that you include in SIP requests. That helps ensure that addresses are routed to the appropriate Public Safety Answering Point.
|
|
740
740
|
*/
|
|
741
741
|
validateE911Address(params: ChimeSDKVoice.Types.ValidateE911AddressRequest, callback?: (err: AWSError, data: ChimeSDKVoice.Types.ValidateE911AddressResponse) => void): Request<ChimeSDKVoice.Types.ValidateE911AddressResponse, AWSError>;
|
|
742
742
|
/**
|
|
743
|
-
*
|
|
743
|
+
* Validates an address to be used for 911 calls made with Amazon Chime SDK Voice Connectors. You can use validated addresses in a Presence Information Data Format Location Object file that you include in SIP requests. That helps ensure that addresses are routed to the appropriate Public Safety Answering Point.
|
|
744
744
|
*/
|
|
745
745
|
validateE911Address(callback?: (err: AWSError, data: ChimeSDKVoice.Types.ValidateE911AddressResponse) => void): Request<ChimeSDKVoice.Types.ValidateE911AddressResponse, AWSError>;
|
|
746
746
|
}
|
|
747
747
|
declare namespace ChimeSDKVoice {
|
|
748
748
|
export interface Address {
|
|
749
|
+
/**
|
|
750
|
+
* The address street, such as 8th Avenue.
|
|
751
|
+
*/
|
|
749
752
|
streetName?: SensitiveNonEmptyString;
|
|
753
|
+
/**
|
|
754
|
+
* The address suffix, such as the N in 8th Avenue N.
|
|
755
|
+
*/
|
|
750
756
|
streetSuffix?: SensitiveNonEmptyString;
|
|
757
|
+
/**
|
|
758
|
+
* An address suffix location, such as the S. Unit A in Central Park S. Unit A.
|
|
759
|
+
*/
|
|
751
760
|
postDirectional?: SensitiveNonEmptyString;
|
|
761
|
+
/**
|
|
762
|
+
* An address prefix location, such as the N in N. Third St.
|
|
763
|
+
*/
|
|
752
764
|
preDirectional?: SensitiveNonEmptyString;
|
|
765
|
+
/**
|
|
766
|
+
* The numeric portion of an address.
|
|
767
|
+
*/
|
|
753
768
|
streetNumber?: SensitiveNonEmptyString;
|
|
769
|
+
/**
|
|
770
|
+
* The city of an address.
|
|
771
|
+
*/
|
|
754
772
|
city?: SensitiveNonEmptyString;
|
|
773
|
+
/**
|
|
774
|
+
* The state of an address.
|
|
775
|
+
*/
|
|
755
776
|
state?: SensitiveNonEmptyString;
|
|
777
|
+
/**
|
|
778
|
+
* The postal code of an address.
|
|
779
|
+
*/
|
|
756
780
|
postalCode?: SensitiveNonEmptyString;
|
|
781
|
+
/**
|
|
782
|
+
* The zip + 4 or postal code + 4 of an address.
|
|
783
|
+
*/
|
|
757
784
|
postalCodePlus4?: SensitiveNonEmptyString;
|
|
785
|
+
/**
|
|
786
|
+
* The country of an address.
|
|
787
|
+
*/
|
|
758
788
|
country?: SensitiveNonEmptyString;
|
|
759
789
|
}
|
|
760
790
|
export type AlexaSkillId = string;
|
|
@@ -764,37 +794,82 @@ declare namespace ChimeSDKVoice {
|
|
|
764
794
|
export type AreaCode = string;
|
|
765
795
|
export type Arn = string;
|
|
766
796
|
export interface AssociatePhoneNumbersWithVoiceConnectorGroupRequest {
|
|
797
|
+
/**
|
|
798
|
+
* The Amazon Chime SDK Voice Connector group ID.
|
|
799
|
+
*/
|
|
767
800
|
VoiceConnectorGroupId: NonEmptyString;
|
|
801
|
+
/**
|
|
802
|
+
* List of phone numbers, in E.164 format.
|
|
803
|
+
*/
|
|
768
804
|
E164PhoneNumbers: E164PhoneNumberList;
|
|
805
|
+
/**
|
|
806
|
+
* If true, associates the provided phone numbers with the provided Amazon Chime SDK Voice Connector Group and removes any previously existing associations. If false, does not associate any phone numbers that have previously existing associations.
|
|
807
|
+
*/
|
|
769
808
|
ForceAssociate?: NullableBoolean;
|
|
770
809
|
}
|
|
771
810
|
export interface AssociatePhoneNumbersWithVoiceConnectorGroupResponse {
|
|
811
|
+
/**
|
|
812
|
+
* If the action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.
|
|
813
|
+
*/
|
|
772
814
|
PhoneNumberErrors?: PhoneNumberErrorList;
|
|
773
815
|
}
|
|
774
816
|
export interface AssociatePhoneNumbersWithVoiceConnectorRequest {
|
|
817
|
+
/**
|
|
818
|
+
* The Voice Connector ID.
|
|
819
|
+
*/
|
|
775
820
|
VoiceConnectorId: NonEmptyString;
|
|
821
|
+
/**
|
|
822
|
+
* List of phone numbers, in E.164 format.
|
|
823
|
+
*/
|
|
776
824
|
E164PhoneNumbers: E164PhoneNumberList;
|
|
825
|
+
/**
|
|
826
|
+
* If true, associates the provided phone numbers with the provided Amazon Chime SDK Voice Connector and removes any previously existing associations. If false, does not associate any phone numbers that have previously existing associations.
|
|
827
|
+
*/
|
|
777
828
|
ForceAssociate?: NullableBoolean;
|
|
778
829
|
}
|
|
779
830
|
export interface AssociatePhoneNumbersWithVoiceConnectorResponse {
|
|
831
|
+
/**
|
|
832
|
+
* If the action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.
|
|
833
|
+
*/
|
|
780
834
|
PhoneNumberErrors?: PhoneNumberErrorList;
|
|
781
835
|
}
|
|
782
836
|
export interface BatchDeletePhoneNumberRequest {
|
|
837
|
+
/**
|
|
838
|
+
* List of phone number IDs.
|
|
839
|
+
*/
|
|
783
840
|
PhoneNumberIds: NonEmptyStringList;
|
|
784
841
|
}
|
|
785
842
|
export interface BatchDeletePhoneNumberResponse {
|
|
843
|
+
/**
|
|
844
|
+
* If the action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.
|
|
845
|
+
*/
|
|
786
846
|
PhoneNumberErrors?: PhoneNumberErrorList;
|
|
787
847
|
}
|
|
788
848
|
export interface BatchUpdatePhoneNumberRequest {
|
|
849
|
+
/**
|
|
850
|
+
* Lists the phone numbers in the update request.
|
|
851
|
+
*/
|
|
789
852
|
UpdatePhoneNumberRequestItems: UpdatePhoneNumberRequestItemList;
|
|
790
853
|
}
|
|
791
854
|
export interface BatchUpdatePhoneNumberResponse {
|
|
855
|
+
/**
|
|
856
|
+
* A list of failed phone numbers and their error messages.
|
|
857
|
+
*/
|
|
792
858
|
PhoneNumberErrors?: PhoneNumberErrorList;
|
|
793
859
|
}
|
|
794
860
|
export type Boolean = boolean;
|
|
795
861
|
export interface CallDetails {
|
|
862
|
+
/**
|
|
863
|
+
* The Voice Connector ID.
|
|
864
|
+
*/
|
|
796
865
|
VoiceConnectorId?: NonEmptyString128;
|
|
866
|
+
/**
|
|
867
|
+
* The transaction ID of a Voice Connector call.
|
|
868
|
+
*/
|
|
797
869
|
TransactionId?: NonEmptyString256;
|
|
870
|
+
/**
|
|
871
|
+
* Identifies a person as the caller or the callee.
|
|
872
|
+
*/
|
|
798
873
|
IsCaller?: Boolean;
|
|
799
874
|
}
|
|
800
875
|
export type CallingName = string;
|
|
@@ -802,12 +877,33 @@ declare namespace ChimeSDKVoice {
|
|
|
802
877
|
export type CallingRegion = string;
|
|
803
878
|
export type CallingRegionList = CallingRegion[];
|
|
804
879
|
export interface CandidateAddress {
|
|
880
|
+
/**
|
|
881
|
+
* The street information of the candidate address.
|
|
882
|
+
*/
|
|
805
883
|
streetInfo?: SensitiveNonEmptyString;
|
|
884
|
+
/**
|
|
885
|
+
* The numeric portion of the candidate address.
|
|
886
|
+
*/
|
|
806
887
|
streetNumber?: SensitiveNonEmptyString;
|
|
888
|
+
/**
|
|
889
|
+
* The city of the candidate address.
|
|
890
|
+
*/
|
|
807
891
|
city?: SensitiveNonEmptyString;
|
|
892
|
+
/**
|
|
893
|
+
* The state of the candidate address.
|
|
894
|
+
*/
|
|
808
895
|
state?: SensitiveNonEmptyString;
|
|
896
|
+
/**
|
|
897
|
+
* The postal code of the candidate address.
|
|
898
|
+
*/
|
|
809
899
|
postalCode?: SensitiveNonEmptyString;
|
|
900
|
+
/**
|
|
901
|
+
* The zip + 4 or postal code +4 of the candidate address.
|
|
902
|
+
*/
|
|
810
903
|
postalCodePlus4?: SensitiveNonEmptyString;
|
|
904
|
+
/**
|
|
905
|
+
* The country of the candidate address.
|
|
906
|
+
*/
|
|
811
907
|
country?: SensitiveNonEmptyString;
|
|
812
908
|
}
|
|
813
909
|
export type CandidateAddressList = CandidateAddress[];
|
|
@@ -819,295 +915,655 @@ declare namespace ChimeSDKVoice {
|
|
|
819
915
|
export type CountryList = Country[];
|
|
820
916
|
export type CpsLimit = number;
|
|
821
917
|
export interface CreatePhoneNumberOrderRequest {
|
|
918
|
+
/**
|
|
919
|
+
* The phone number product type.
|
|
920
|
+
*/
|
|
822
921
|
ProductType: PhoneNumberProductType;
|
|
922
|
+
/**
|
|
923
|
+
* List of phone numbers, in E.164 format.
|
|
924
|
+
*/
|
|
823
925
|
E164PhoneNumbers: E164PhoneNumberList;
|
|
824
926
|
}
|
|
825
927
|
export interface CreatePhoneNumberOrderResponse {
|
|
928
|
+
/**
|
|
929
|
+
* The phone number order details.
|
|
930
|
+
*/
|
|
826
931
|
PhoneNumberOrder?: PhoneNumberOrder;
|
|
827
932
|
}
|
|
828
933
|
export interface CreateProxySessionRequest {
|
|
934
|
+
/**
|
|
935
|
+
* The Voice Connector ID.
|
|
936
|
+
*/
|
|
829
937
|
VoiceConnectorId: NonEmptyString128;
|
|
938
|
+
/**
|
|
939
|
+
* The participant phone numbers.
|
|
940
|
+
*/
|
|
830
941
|
ParticipantPhoneNumbers: ParticipantPhoneNumberList;
|
|
942
|
+
/**
|
|
943
|
+
* The name of the proxy session.
|
|
944
|
+
*/
|
|
831
945
|
Name?: ProxySessionNameString;
|
|
946
|
+
/**
|
|
947
|
+
* The number of minutes allowed for the proxy session.
|
|
948
|
+
*/
|
|
832
949
|
ExpiryMinutes?: PositiveInteger;
|
|
950
|
+
/**
|
|
951
|
+
* The proxy session's capabilities.
|
|
952
|
+
*/
|
|
833
953
|
Capabilities: CapabilityList;
|
|
954
|
+
/**
|
|
955
|
+
* The preference for proxy phone number reuse, or stickiness, between the same participants across sessions.
|
|
956
|
+
*/
|
|
834
957
|
NumberSelectionBehavior?: NumberSelectionBehavior;
|
|
958
|
+
/**
|
|
959
|
+
* The preference for matching the country or area code of the proxy phone number with that of the first participant.
|
|
960
|
+
*/
|
|
835
961
|
GeoMatchLevel?: GeoMatchLevel;
|
|
962
|
+
/**
|
|
963
|
+
* The country and area code for the proxy phone number.
|
|
964
|
+
*/
|
|
836
965
|
GeoMatchParams?: GeoMatchParams;
|
|
837
966
|
}
|
|
838
967
|
export interface CreateProxySessionResponse {
|
|
968
|
+
/**
|
|
969
|
+
* The proxy session details.
|
|
970
|
+
*/
|
|
839
971
|
ProxySession?: ProxySession;
|
|
840
972
|
}
|
|
841
973
|
export interface CreateSipMediaApplicationCallRequest {
|
|
974
|
+
/**
|
|
975
|
+
* The phone number that a user calls from. This is a phone number in your Amazon Chime SDK phone number inventory.
|
|
976
|
+
*/
|
|
842
977
|
FromPhoneNumber: E164PhoneNumber;
|
|
978
|
+
/**
|
|
979
|
+
* The phone number that the service should call.
|
|
980
|
+
*/
|
|
843
981
|
ToPhoneNumber: E164PhoneNumber;
|
|
982
|
+
/**
|
|
983
|
+
* The ID of the SIP media application.
|
|
984
|
+
*/
|
|
844
985
|
SipMediaApplicationId: NonEmptyString;
|
|
986
|
+
/**
|
|
987
|
+
* The SIP headers added to an outbound call leg.
|
|
988
|
+
*/
|
|
845
989
|
SipHeaders?: SipHeadersMap;
|
|
990
|
+
/**
|
|
991
|
+
* Context passed to a CreateSipMediaApplication API call. For example, you could pass key-value pairs such as: "FirstName": "John", "LastName": "Doe"
|
|
992
|
+
*/
|
|
846
993
|
ArgumentsMap?: SMACreateCallArgumentsMap;
|
|
847
994
|
}
|
|
848
995
|
export interface CreateSipMediaApplicationCallResponse {
|
|
996
|
+
/**
|
|
997
|
+
* The actual call.
|
|
998
|
+
*/
|
|
849
999
|
SipMediaApplicationCall?: SipMediaApplicationCall;
|
|
850
1000
|
}
|
|
851
1001
|
export interface CreateSipMediaApplicationRequest {
|
|
1002
|
+
/**
|
|
1003
|
+
* The AWS Region assigned to the SIP media application.
|
|
1004
|
+
*/
|
|
852
1005
|
AwsRegion: String;
|
|
1006
|
+
/**
|
|
1007
|
+
* The SIP media application's name.
|
|
1008
|
+
*/
|
|
853
1009
|
Name: SipMediaApplicationName;
|
|
1010
|
+
/**
|
|
1011
|
+
* List of endpoints (Lambda ARNs) specified for the SIP media application.
|
|
1012
|
+
*/
|
|
854
1013
|
Endpoints: SipMediaApplicationEndpointList;
|
|
855
1014
|
}
|
|
856
1015
|
export interface CreateSipMediaApplicationResponse {
|
|
1016
|
+
/**
|
|
1017
|
+
* The SIP media application details.
|
|
1018
|
+
*/
|
|
857
1019
|
SipMediaApplication?: SipMediaApplication;
|
|
858
1020
|
}
|
|
859
1021
|
export interface CreateSipRuleRequest {
|
|
1022
|
+
/**
|
|
1023
|
+
* The name of the SIP rule.
|
|
1024
|
+
*/
|
|
860
1025
|
Name: SipRuleName;
|
|
1026
|
+
/**
|
|
1027
|
+
* The type of trigger assigned to the SIP rule in TriggerValue, currently RequestUriHostname or ToPhoneNumber.
|
|
1028
|
+
*/
|
|
861
1029
|
TriggerType: SipRuleTriggerType;
|
|
1030
|
+
/**
|
|
1031
|
+
* If TriggerType is RequestUriHostname, the value can be the outbound host name of a Voice Connector. If TriggerType is ToPhoneNumber, the value can be a customer-owned phone number in the E164 format. The SipMediaApplication specified in the SipRule is triggered if the request URI in an incoming SIP request matches the RequestUriHostname, or if the To header in the incoming SIP request matches the ToPhoneNumber value.
|
|
1032
|
+
*/
|
|
862
1033
|
TriggerValue: NonEmptyString;
|
|
1034
|
+
/**
|
|
1035
|
+
* Disables or enables a SIP rule. You must disable SIP rules before you can delete them.
|
|
1036
|
+
*/
|
|
863
1037
|
Disabled?: NullableBoolean;
|
|
1038
|
+
/**
|
|
1039
|
+
* List of SIP media applications, with priority and AWS Region. Only one SIP application per AWS Region can be used.
|
|
1040
|
+
*/
|
|
864
1041
|
TargetApplications?: SipRuleTargetApplicationList;
|
|
865
1042
|
}
|
|
866
1043
|
export interface CreateSipRuleResponse {
|
|
1044
|
+
/**
|
|
1045
|
+
* The SIP rule information, including the rule ID, triggers, and target applications.
|
|
1046
|
+
*/
|
|
867
1047
|
SipRule?: SipRule;
|
|
868
1048
|
}
|
|
869
1049
|
export interface CreateVoiceConnectorGroupRequest {
|
|
1050
|
+
/**
|
|
1051
|
+
* The name of the Voice Connector group.
|
|
1052
|
+
*/
|
|
870
1053
|
Name: VoiceConnectorGroupName;
|
|
1054
|
+
/**
|
|
1055
|
+
* Lists the Voice Connectors that inbound calls are routed to.
|
|
1056
|
+
*/
|
|
871
1057
|
VoiceConnectorItems?: VoiceConnectorItemList;
|
|
872
1058
|
}
|
|
873
1059
|
export interface CreateVoiceConnectorGroupResponse {
|
|
1060
|
+
/**
|
|
1061
|
+
* The details of the Voice Connector group.
|
|
1062
|
+
*/
|
|
874
1063
|
VoiceConnectorGroup?: VoiceConnectorGroup;
|
|
875
1064
|
}
|
|
876
1065
|
export interface CreateVoiceConnectorRequest {
|
|
1066
|
+
/**
|
|
1067
|
+
* The name of the Voice Connector.
|
|
1068
|
+
*/
|
|
877
1069
|
Name: VoiceConnectorName;
|
|
1070
|
+
/**
|
|
1071
|
+
* The AWS Region in which the Amazon Chime SDK Voice Connector is created. Default value: us-east-1 .
|
|
1072
|
+
*/
|
|
878
1073
|
AwsRegion?: VoiceConnectorAwsRegion;
|
|
1074
|
+
/**
|
|
1075
|
+
* Enables or disables encryption for the Voice Connector.
|
|
1076
|
+
*/
|
|
879
1077
|
RequireEncryption: Boolean;
|
|
880
1078
|
}
|
|
881
1079
|
export interface CreateVoiceConnectorResponse {
|
|
1080
|
+
/**
|
|
1081
|
+
* The details of the Voice Connector.
|
|
1082
|
+
*/
|
|
882
1083
|
VoiceConnector?: VoiceConnector;
|
|
883
1084
|
}
|
|
884
1085
|
export interface CreateVoiceProfileDomainRequest {
|
|
1086
|
+
/**
|
|
1087
|
+
* The name of the voice profile domain.
|
|
1088
|
+
*/
|
|
885
1089
|
Name: VoiceProfileDomainName;
|
|
1090
|
+
/**
|
|
1091
|
+
* A description of the voice profile domain.
|
|
1092
|
+
*/
|
|
886
1093
|
Description?: VoiceProfileDomainDescription;
|
|
1094
|
+
/**
|
|
1095
|
+
* The server-side encryption configuration for the request.
|
|
1096
|
+
*/
|
|
887
1097
|
ServerSideEncryptionConfiguration: ServerSideEncryptionConfiguration;
|
|
1098
|
+
/**
|
|
1099
|
+
* The unique identifier for the client request. Use a different token for different domain creation requests.
|
|
1100
|
+
*/
|
|
888
1101
|
ClientRequestToken?: ClientRequestId;
|
|
1102
|
+
/**
|
|
1103
|
+
* The tags assigned to the domain.
|
|
1104
|
+
*/
|
|
889
1105
|
Tags?: TagList;
|
|
890
1106
|
}
|
|
891
1107
|
export interface CreateVoiceProfileDomainResponse {
|
|
1108
|
+
/**
|
|
1109
|
+
* The requested voice profile domain.
|
|
1110
|
+
*/
|
|
892
1111
|
VoiceProfileDomain?: VoiceProfileDomain;
|
|
893
1112
|
}
|
|
894
1113
|
export interface CreateVoiceProfileRequest {
|
|
1114
|
+
/**
|
|
1115
|
+
* The ID of the speaker search task.
|
|
1116
|
+
*/
|
|
895
1117
|
SpeakerSearchTaskId: NonEmptyString256;
|
|
896
1118
|
}
|
|
897
1119
|
export interface CreateVoiceProfileResponse {
|
|
1120
|
+
/**
|
|
1121
|
+
* The requested voice profile.
|
|
1122
|
+
*/
|
|
898
1123
|
VoiceProfile?: VoiceProfile;
|
|
899
1124
|
}
|
|
900
1125
|
export interface Credential {
|
|
1126
|
+
/**
|
|
1127
|
+
* The RFC2617 compliant user name associated with the SIP credentials, in US-ASCII format.
|
|
1128
|
+
*/
|
|
901
1129
|
Username?: SensitiveString;
|
|
1130
|
+
/**
|
|
1131
|
+
* The RFC2617 compliant password associated with the SIP credentials, in US-ASCII format.
|
|
1132
|
+
*/
|
|
902
1133
|
Password?: SensitiveString;
|
|
903
1134
|
}
|
|
904
1135
|
export type CredentialList = Credential[];
|
|
905
1136
|
export interface DNISEmergencyCallingConfiguration {
|
|
1137
|
+
/**
|
|
1138
|
+
* The DNIS phone number that you route emergency calls to, in E.164 format.
|
|
1139
|
+
*/
|
|
906
1140
|
EmergencyPhoneNumber: E164PhoneNumber;
|
|
1141
|
+
/**
|
|
1142
|
+
* The DNIS phone number for routing test emergency calls to, in E.164 format.
|
|
1143
|
+
*/
|
|
907
1144
|
TestPhoneNumber?: E164PhoneNumber;
|
|
1145
|
+
/**
|
|
1146
|
+
* The country from which emergency calls are allowed, in ISO 3166-1 alpha-2 format.
|
|
1147
|
+
*/
|
|
908
1148
|
CallingCountry: Alpha2CountryCode;
|
|
909
1149
|
}
|
|
910
1150
|
export type DNISEmergencyCallingConfigurationList = DNISEmergencyCallingConfiguration[];
|
|
911
1151
|
export type DataRetentionInHours = number;
|
|
912
1152
|
export interface DeletePhoneNumberRequest {
|
|
1153
|
+
/**
|
|
1154
|
+
* The phone number ID.
|
|
1155
|
+
*/
|
|
913
1156
|
PhoneNumberId: SensitiveNonEmptyString;
|
|
914
1157
|
}
|
|
915
1158
|
export interface DeleteProxySessionRequest {
|
|
1159
|
+
/**
|
|
1160
|
+
* The Voice Connector ID.
|
|
1161
|
+
*/
|
|
916
1162
|
VoiceConnectorId: NonEmptyString128;
|
|
1163
|
+
/**
|
|
1164
|
+
* The proxy session ID.
|
|
1165
|
+
*/
|
|
917
1166
|
ProxySessionId: NonEmptyString128;
|
|
918
1167
|
}
|
|
919
1168
|
export interface DeleteSipMediaApplicationRequest {
|
|
1169
|
+
/**
|
|
1170
|
+
* The SIP media application ID.
|
|
1171
|
+
*/
|
|
920
1172
|
SipMediaApplicationId: NonEmptyString;
|
|
921
1173
|
}
|
|
922
1174
|
export interface DeleteSipRuleRequest {
|
|
1175
|
+
/**
|
|
1176
|
+
* The SIP rule ID.
|
|
1177
|
+
*/
|
|
923
1178
|
SipRuleId: NonEmptyString;
|
|
924
1179
|
}
|
|
925
1180
|
export interface DeleteVoiceConnectorEmergencyCallingConfigurationRequest {
|
|
1181
|
+
/**
|
|
1182
|
+
* The Voice Connector ID.
|
|
1183
|
+
*/
|
|
926
1184
|
VoiceConnectorId: NonEmptyString;
|
|
927
1185
|
}
|
|
928
1186
|
export interface DeleteVoiceConnectorGroupRequest {
|
|
1187
|
+
/**
|
|
1188
|
+
* The Voice Connector Group ID.
|
|
1189
|
+
*/
|
|
929
1190
|
VoiceConnectorGroupId: NonEmptyString;
|
|
930
1191
|
}
|
|
931
1192
|
export interface DeleteVoiceConnectorOriginationRequest {
|
|
1193
|
+
/**
|
|
1194
|
+
* The Voice Connector ID.
|
|
1195
|
+
*/
|
|
932
1196
|
VoiceConnectorId: NonEmptyString;
|
|
933
1197
|
}
|
|
934
1198
|
export interface DeleteVoiceConnectorProxyRequest {
|
|
1199
|
+
/**
|
|
1200
|
+
* The Voice Connector ID.
|
|
1201
|
+
*/
|
|
935
1202
|
VoiceConnectorId: NonEmptyString128;
|
|
936
1203
|
}
|
|
937
1204
|
export interface DeleteVoiceConnectorRequest {
|
|
1205
|
+
/**
|
|
1206
|
+
* The Voice Connector ID.
|
|
1207
|
+
*/
|
|
938
1208
|
VoiceConnectorId: NonEmptyString;
|
|
939
1209
|
}
|
|
940
1210
|
export interface DeleteVoiceConnectorStreamingConfigurationRequest {
|
|
1211
|
+
/**
|
|
1212
|
+
* The Voice Connector ID.
|
|
1213
|
+
*/
|
|
941
1214
|
VoiceConnectorId: NonEmptyString;
|
|
942
1215
|
}
|
|
943
1216
|
export interface DeleteVoiceConnectorTerminationCredentialsRequest {
|
|
1217
|
+
/**
|
|
1218
|
+
* The Voice Connector ID.
|
|
1219
|
+
*/
|
|
944
1220
|
VoiceConnectorId: NonEmptyString;
|
|
1221
|
+
/**
|
|
1222
|
+
* The RFC2617 compliant username associated with the SIP credentials, in US-ASCII format.
|
|
1223
|
+
*/
|
|
945
1224
|
Usernames: SensitiveStringList;
|
|
946
1225
|
}
|
|
947
1226
|
export interface DeleteVoiceConnectorTerminationRequest {
|
|
1227
|
+
/**
|
|
1228
|
+
* The Voice Connector ID.
|
|
1229
|
+
*/
|
|
948
1230
|
VoiceConnectorId: NonEmptyString;
|
|
949
1231
|
}
|
|
950
1232
|
export interface DeleteVoiceProfileDomainRequest {
|
|
1233
|
+
/**
|
|
1234
|
+
* The voice profile domain ID.
|
|
1235
|
+
*/
|
|
951
1236
|
VoiceProfileDomainId: NonEmptyString256;
|
|
952
1237
|
}
|
|
953
1238
|
export interface DeleteVoiceProfileRequest {
|
|
1239
|
+
/**
|
|
1240
|
+
* The voice profile ID.
|
|
1241
|
+
*/
|
|
954
1242
|
VoiceProfileId: NonEmptyString256;
|
|
955
1243
|
}
|
|
956
1244
|
export interface DisassociatePhoneNumbersFromVoiceConnectorGroupRequest {
|
|
1245
|
+
/**
|
|
1246
|
+
* The Voice Connector group ID.
|
|
1247
|
+
*/
|
|
957
1248
|
VoiceConnectorGroupId: NonEmptyString;
|
|
1249
|
+
/**
|
|
1250
|
+
* The list of phone numbers, in E.164 format.
|
|
1251
|
+
*/
|
|
958
1252
|
E164PhoneNumbers: E164PhoneNumberList;
|
|
959
1253
|
}
|
|
960
1254
|
export interface DisassociatePhoneNumbersFromVoiceConnectorGroupResponse {
|
|
1255
|
+
/**
|
|
1256
|
+
* If the action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.
|
|
1257
|
+
*/
|
|
961
1258
|
PhoneNumberErrors?: PhoneNumberErrorList;
|
|
962
1259
|
}
|
|
963
1260
|
export interface DisassociatePhoneNumbersFromVoiceConnectorRequest {
|
|
1261
|
+
/**
|
|
1262
|
+
* The Voice Connector ID.
|
|
1263
|
+
*/
|
|
964
1264
|
VoiceConnectorId: NonEmptyString;
|
|
1265
|
+
/**
|
|
1266
|
+
* List of phone numbers, in E.164 format.
|
|
1267
|
+
*/
|
|
965
1268
|
E164PhoneNumbers: E164PhoneNumberList;
|
|
966
1269
|
}
|
|
967
1270
|
export interface DisassociatePhoneNumbersFromVoiceConnectorResponse {
|
|
1271
|
+
/**
|
|
1272
|
+
* If the action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.
|
|
1273
|
+
*/
|
|
968
1274
|
PhoneNumberErrors?: PhoneNumberErrorList;
|
|
969
1275
|
}
|
|
970
1276
|
export type E164PhoneNumber = string;
|
|
971
1277
|
export type E164PhoneNumberList = E164PhoneNumber[];
|
|
972
1278
|
export interface EmergencyCallingConfiguration {
|
|
1279
|
+
/**
|
|
1280
|
+
* The Dialed Number Identification Service (DNIS) emergency calling configuration details.
|
|
1281
|
+
*/
|
|
973
1282
|
DNIS?: DNISEmergencyCallingConfigurationList;
|
|
974
1283
|
}
|
|
975
1284
|
export type ErrorCode = "BadRequest"|"Conflict"|"Forbidden"|"NotFound"|"PreconditionFailed"|"ResourceLimitExceeded"|"ServiceFailure"|"AccessDenied"|"ServiceUnavailable"|"Throttled"|"Throttling"|"Unauthorized"|"Unprocessable"|"VoiceConnectorGroupAssociationsExist"|"PhoneNumberAssociationsExist"|"Gone"|string;
|
|
976
1285
|
export type FunctionArn = string;
|
|
977
1286
|
export type GeoMatchLevel = "Country"|"AreaCode"|string;
|
|
978
1287
|
export interface GeoMatchParams {
|
|
1288
|
+
/**
|
|
1289
|
+
* The country.
|
|
1290
|
+
*/
|
|
979
1291
|
Country: Country;
|
|
1292
|
+
/**
|
|
1293
|
+
* The area code.
|
|
1294
|
+
*/
|
|
980
1295
|
AreaCode: AreaCode;
|
|
981
1296
|
}
|
|
982
1297
|
export interface GetGlobalSettingsResponse {
|
|
1298
|
+
/**
|
|
1299
|
+
* The Voice Connector settings.
|
|
1300
|
+
*/
|
|
983
1301
|
VoiceConnector?: VoiceConnectorSettings;
|
|
984
1302
|
}
|
|
985
1303
|
export interface GetPhoneNumberOrderRequest {
|
|
1304
|
+
/**
|
|
1305
|
+
* The ID of the phone number order .
|
|
1306
|
+
*/
|
|
986
1307
|
PhoneNumberOrderId: GuidString;
|
|
987
1308
|
}
|
|
988
1309
|
export interface GetPhoneNumberOrderResponse {
|
|
1310
|
+
/**
|
|
1311
|
+
* The phone number order details.
|
|
1312
|
+
*/
|
|
989
1313
|
PhoneNumberOrder?: PhoneNumberOrder;
|
|
990
1314
|
}
|
|
991
1315
|
export interface GetPhoneNumberRequest {
|
|
1316
|
+
/**
|
|
1317
|
+
* The phone number ID.
|
|
1318
|
+
*/
|
|
992
1319
|
PhoneNumberId: SensitiveNonEmptyString;
|
|
993
1320
|
}
|
|
994
1321
|
export interface GetPhoneNumberResponse {
|
|
1322
|
+
/**
|
|
1323
|
+
* The phone number details.
|
|
1324
|
+
*/
|
|
995
1325
|
PhoneNumber?: PhoneNumber;
|
|
996
1326
|
}
|
|
997
1327
|
export interface GetPhoneNumberSettingsResponse {
|
|
1328
|
+
/**
|
|
1329
|
+
* The default outbound calling name for the account.
|
|
1330
|
+
*/
|
|
998
1331
|
CallingName?: CallingName;
|
|
1332
|
+
/**
|
|
1333
|
+
* The updated outbound calling name timestamp, in ISO 8601 format.
|
|
1334
|
+
*/
|
|
999
1335
|
CallingNameUpdatedTimestamp?: Iso8601Timestamp;
|
|
1000
1336
|
}
|
|
1001
1337
|
export interface GetProxySessionRequest {
|
|
1338
|
+
/**
|
|
1339
|
+
* The Voice Connector ID.
|
|
1340
|
+
*/
|
|
1002
1341
|
VoiceConnectorId: NonEmptyString128;
|
|
1342
|
+
/**
|
|
1343
|
+
* The proxy session ID.
|
|
1344
|
+
*/
|
|
1003
1345
|
ProxySessionId: NonEmptyString128;
|
|
1004
1346
|
}
|
|
1005
1347
|
export interface GetProxySessionResponse {
|
|
1348
|
+
/**
|
|
1349
|
+
* The proxy session details.
|
|
1350
|
+
*/
|
|
1006
1351
|
ProxySession?: ProxySession;
|
|
1007
1352
|
}
|
|
1008
1353
|
export interface GetSipMediaApplicationAlexaSkillConfigurationRequest {
|
|
1354
|
+
/**
|
|
1355
|
+
* The SIP media application ID.
|
|
1356
|
+
*/
|
|
1009
1357
|
SipMediaApplicationId: NonEmptyString;
|
|
1010
1358
|
}
|
|
1011
1359
|
export interface GetSipMediaApplicationAlexaSkillConfigurationResponse {
|
|
1360
|
+
/**
|
|
1361
|
+
* Returns the Alexa Skill configuration.
|
|
1362
|
+
*/
|
|
1012
1363
|
SipMediaApplicationAlexaSkillConfiguration?: SipMediaApplicationAlexaSkillConfiguration;
|
|
1013
1364
|
}
|
|
1014
1365
|
export interface GetSipMediaApplicationLoggingConfigurationRequest {
|
|
1366
|
+
/**
|
|
1367
|
+
* The SIP media application ID.
|
|
1368
|
+
*/
|
|
1015
1369
|
SipMediaApplicationId: NonEmptyString;
|
|
1016
1370
|
}
|
|
1017
1371
|
export interface GetSipMediaApplicationLoggingConfigurationResponse {
|
|
1372
|
+
/**
|
|
1373
|
+
* The actual logging configuration.
|
|
1374
|
+
*/
|
|
1018
1375
|
SipMediaApplicationLoggingConfiguration?: SipMediaApplicationLoggingConfiguration;
|
|
1019
1376
|
}
|
|
1020
1377
|
export interface GetSipMediaApplicationRequest {
|
|
1378
|
+
/**
|
|
1379
|
+
* The SIP media application ID .
|
|
1380
|
+
*/
|
|
1021
1381
|
SipMediaApplicationId: NonEmptyString;
|
|
1022
1382
|
}
|
|
1023
1383
|
export interface GetSipMediaApplicationResponse {
|
|
1384
|
+
/**
|
|
1385
|
+
* The details of the SIP media application.
|
|
1386
|
+
*/
|
|
1024
1387
|
SipMediaApplication?: SipMediaApplication;
|
|
1025
1388
|
}
|
|
1026
1389
|
export interface GetSipRuleRequest {
|
|
1390
|
+
/**
|
|
1391
|
+
* The SIP rule ID.
|
|
1392
|
+
*/
|
|
1027
1393
|
SipRuleId: NonEmptyString;
|
|
1028
1394
|
}
|
|
1029
1395
|
export interface GetSipRuleResponse {
|
|
1396
|
+
/**
|
|
1397
|
+
* The SIP rule details.
|
|
1398
|
+
*/
|
|
1030
1399
|
SipRule?: SipRule;
|
|
1031
1400
|
}
|
|
1032
1401
|
export interface GetSpeakerSearchTaskRequest {
|
|
1402
|
+
/**
|
|
1403
|
+
* The Voice Connector ID.
|
|
1404
|
+
*/
|
|
1033
1405
|
VoiceConnectorId: NonEmptyString128;
|
|
1406
|
+
/**
|
|
1407
|
+
* The ID of the speaker search task.
|
|
1408
|
+
*/
|
|
1034
1409
|
SpeakerSearchTaskId: NonEmptyString256;
|
|
1035
1410
|
}
|
|
1036
1411
|
export interface GetSpeakerSearchTaskResponse {
|
|
1412
|
+
/**
|
|
1413
|
+
* The details of the speaker search task.
|
|
1414
|
+
*/
|
|
1037
1415
|
SpeakerSearchTask?: SpeakerSearchTask;
|
|
1038
1416
|
}
|
|
1039
1417
|
export interface GetVoiceConnectorEmergencyCallingConfigurationRequest {
|
|
1418
|
+
/**
|
|
1419
|
+
* The Voice Connector ID.
|
|
1420
|
+
*/
|
|
1040
1421
|
VoiceConnectorId: NonEmptyString;
|
|
1041
1422
|
}
|
|
1042
1423
|
export interface GetVoiceConnectorEmergencyCallingConfigurationResponse {
|
|
1424
|
+
/**
|
|
1425
|
+
* The details of the emergency calling configuration.
|
|
1426
|
+
*/
|
|
1043
1427
|
EmergencyCallingConfiguration?: EmergencyCallingConfiguration;
|
|
1044
1428
|
}
|
|
1045
1429
|
export interface GetVoiceConnectorGroupRequest {
|
|
1430
|
+
/**
|
|
1431
|
+
* The Voice Connector group ID.
|
|
1432
|
+
*/
|
|
1046
1433
|
VoiceConnectorGroupId: NonEmptyString;
|
|
1047
1434
|
}
|
|
1048
1435
|
export interface GetVoiceConnectorGroupResponse {
|
|
1436
|
+
/**
|
|
1437
|
+
* The details of the Voice Connector group.
|
|
1438
|
+
*/
|
|
1049
1439
|
VoiceConnectorGroup?: VoiceConnectorGroup;
|
|
1050
1440
|
}
|
|
1051
1441
|
export interface GetVoiceConnectorLoggingConfigurationRequest {
|
|
1442
|
+
/**
|
|
1443
|
+
* The Voice Connector ID.
|
|
1444
|
+
*/
|
|
1052
1445
|
VoiceConnectorId: NonEmptyString;
|
|
1053
1446
|
}
|
|
1054
1447
|
export interface GetVoiceConnectorLoggingConfigurationResponse {
|
|
1448
|
+
/**
|
|
1449
|
+
* The logging configuration details .
|
|
1450
|
+
*/
|
|
1055
1451
|
LoggingConfiguration?: LoggingConfiguration;
|
|
1056
1452
|
}
|
|
1057
1453
|
export interface GetVoiceConnectorOriginationRequest {
|
|
1454
|
+
/**
|
|
1455
|
+
* The Voice Connector ID.
|
|
1456
|
+
*/
|
|
1058
1457
|
VoiceConnectorId: NonEmptyString;
|
|
1059
1458
|
}
|
|
1060
1459
|
export interface GetVoiceConnectorOriginationResponse {
|
|
1460
|
+
/**
|
|
1461
|
+
* The origination setting details.
|
|
1462
|
+
*/
|
|
1061
1463
|
Origination?: Origination;
|
|
1062
1464
|
}
|
|
1063
1465
|
export interface GetVoiceConnectorProxyRequest {
|
|
1466
|
+
/**
|
|
1467
|
+
* The Voice Connector ID.
|
|
1468
|
+
*/
|
|
1064
1469
|
VoiceConnectorId: NonEmptyString128;
|
|
1065
1470
|
}
|
|
1066
1471
|
export interface GetVoiceConnectorProxyResponse {
|
|
1472
|
+
/**
|
|
1473
|
+
* The proxy configuration details.
|
|
1474
|
+
*/
|
|
1067
1475
|
Proxy?: Proxy;
|
|
1068
1476
|
}
|
|
1069
1477
|
export interface GetVoiceConnectorRequest {
|
|
1478
|
+
/**
|
|
1479
|
+
* The Voice Connector ID.
|
|
1480
|
+
*/
|
|
1070
1481
|
VoiceConnectorId: NonEmptyString;
|
|
1071
1482
|
}
|
|
1072
1483
|
export interface GetVoiceConnectorResponse {
|
|
1484
|
+
/**
|
|
1485
|
+
* The Voice Connector details.
|
|
1486
|
+
*/
|
|
1073
1487
|
VoiceConnector?: VoiceConnector;
|
|
1074
1488
|
}
|
|
1075
1489
|
export interface GetVoiceConnectorStreamingConfigurationRequest {
|
|
1490
|
+
/**
|
|
1491
|
+
* The Voice Connector ID.
|
|
1492
|
+
*/
|
|
1076
1493
|
VoiceConnectorId: NonEmptyString;
|
|
1077
1494
|
}
|
|
1078
1495
|
export interface GetVoiceConnectorStreamingConfigurationResponse {
|
|
1496
|
+
/**
|
|
1497
|
+
* The details of the streaming configuration.
|
|
1498
|
+
*/
|
|
1079
1499
|
StreamingConfiguration?: StreamingConfiguration;
|
|
1080
1500
|
}
|
|
1081
1501
|
export interface GetVoiceConnectorTerminationHealthRequest {
|
|
1502
|
+
/**
|
|
1503
|
+
* The Voice Connector ID.
|
|
1504
|
+
*/
|
|
1082
1505
|
VoiceConnectorId: NonEmptyString;
|
|
1083
1506
|
}
|
|
1084
1507
|
export interface GetVoiceConnectorTerminationHealthResponse {
|
|
1508
|
+
/**
|
|
1509
|
+
* The termination health details.
|
|
1510
|
+
*/
|
|
1085
1511
|
TerminationHealth?: TerminationHealth;
|
|
1086
1512
|
}
|
|
1087
1513
|
export interface GetVoiceConnectorTerminationRequest {
|
|
1514
|
+
/**
|
|
1515
|
+
* The Voice Connector ID.
|
|
1516
|
+
*/
|
|
1088
1517
|
VoiceConnectorId: NonEmptyString;
|
|
1089
1518
|
}
|
|
1090
1519
|
export interface GetVoiceConnectorTerminationResponse {
|
|
1520
|
+
/**
|
|
1521
|
+
* The termination setting details.
|
|
1522
|
+
*/
|
|
1091
1523
|
Termination?: Termination;
|
|
1092
1524
|
}
|
|
1093
1525
|
export interface GetVoiceProfileDomainRequest {
|
|
1526
|
+
/**
|
|
1527
|
+
* The voice profile domain ID.
|
|
1528
|
+
*/
|
|
1094
1529
|
VoiceProfileDomainId: NonEmptyString256;
|
|
1095
1530
|
}
|
|
1096
1531
|
export interface GetVoiceProfileDomainResponse {
|
|
1532
|
+
/**
|
|
1533
|
+
* The details of the voice profile domain.
|
|
1534
|
+
*/
|
|
1097
1535
|
VoiceProfileDomain?: VoiceProfileDomain;
|
|
1098
1536
|
}
|
|
1099
1537
|
export interface GetVoiceProfileRequest {
|
|
1538
|
+
/**
|
|
1539
|
+
* The voice profile ID.
|
|
1540
|
+
*/
|
|
1100
1541
|
VoiceProfileId: NonEmptyString256;
|
|
1101
1542
|
}
|
|
1102
1543
|
export interface GetVoiceProfileResponse {
|
|
1544
|
+
/**
|
|
1545
|
+
* The voice profile details.
|
|
1546
|
+
*/
|
|
1103
1547
|
VoiceProfile?: VoiceProfile;
|
|
1104
1548
|
}
|
|
1105
1549
|
export interface GetVoiceToneAnalysisTaskRequest {
|
|
1550
|
+
/**
|
|
1551
|
+
* The Voice Connector ID.
|
|
1552
|
+
*/
|
|
1106
1553
|
VoiceConnectorId: NonEmptyString128;
|
|
1554
|
+
/**
|
|
1555
|
+
* The ID of the voice tone anlysis task.
|
|
1556
|
+
*/
|
|
1107
1557
|
VoiceToneAnalysisTaskId: NonEmptyString256;
|
|
1558
|
+
/**
|
|
1559
|
+
* Specifies whether the voice being analyzed is the caller (originator) or the callee (responder).
|
|
1560
|
+
*/
|
|
1108
1561
|
IsCaller: Boolean;
|
|
1109
1562
|
}
|
|
1110
1563
|
export interface GetVoiceToneAnalysisTaskResponse {
|
|
1564
|
+
/**
|
|
1565
|
+
* The details of the voice tone analysis task.
|
|
1566
|
+
*/
|
|
1111
1567
|
VoiceToneAnalysisTask?: VoiceToneAnalysisTask;
|
|
1112
1568
|
}
|
|
1113
1569
|
export type GuidString = string;
|
|
@@ -1115,112 +1571,277 @@ declare namespace ChimeSDKVoice {
|
|
|
1115
1571
|
export type Iso8601Timestamp = Date;
|
|
1116
1572
|
export type LanguageCode = "en-US"|string;
|
|
1117
1573
|
export interface ListAvailableVoiceConnectorRegionsResponse {
|
|
1574
|
+
/**
|
|
1575
|
+
* The list of AWS Regions.
|
|
1576
|
+
*/
|
|
1118
1577
|
VoiceConnectorRegions?: VoiceConnectorAwsRegionList;
|
|
1119
1578
|
}
|
|
1120
1579
|
export interface ListPhoneNumberOrdersRequest {
|
|
1580
|
+
/**
|
|
1581
|
+
* The token used to retrieve the next page of results.
|
|
1582
|
+
*/
|
|
1121
1583
|
NextToken?: String;
|
|
1584
|
+
/**
|
|
1585
|
+
* The maximum number of results to return in a single call.
|
|
1586
|
+
*/
|
|
1122
1587
|
MaxResults?: ResultMax;
|
|
1123
1588
|
}
|
|
1124
1589
|
export interface ListPhoneNumberOrdersResponse {
|
|
1590
|
+
/**
|
|
1591
|
+
* The phone number order details.
|
|
1592
|
+
*/
|
|
1125
1593
|
PhoneNumberOrders?: PhoneNumberOrderList;
|
|
1594
|
+
/**
|
|
1595
|
+
* The token used to retrieve the next page of results.
|
|
1596
|
+
*/
|
|
1126
1597
|
NextToken?: String;
|
|
1127
1598
|
}
|
|
1128
1599
|
export interface ListPhoneNumbersRequest {
|
|
1600
|
+
/**
|
|
1601
|
+
* The status of your organization's phone numbers.
|
|
1602
|
+
*/
|
|
1129
1603
|
Status?: String;
|
|
1604
|
+
/**
|
|
1605
|
+
* The phone number product types.
|
|
1606
|
+
*/
|
|
1130
1607
|
ProductType?: PhoneNumberProductType;
|
|
1608
|
+
/**
|
|
1609
|
+
* The filter to limit the number of results.
|
|
1610
|
+
*/
|
|
1131
1611
|
FilterName?: PhoneNumberAssociationName;
|
|
1612
|
+
/**
|
|
1613
|
+
* The filter value.
|
|
1614
|
+
*/
|
|
1132
1615
|
FilterValue?: String;
|
|
1616
|
+
/**
|
|
1617
|
+
* The maximum number of results to return in a single call.
|
|
1618
|
+
*/
|
|
1133
1619
|
MaxResults?: ResultMax;
|
|
1620
|
+
/**
|
|
1621
|
+
* The token used to return the next page of results.
|
|
1622
|
+
*/
|
|
1134
1623
|
NextToken?: String;
|
|
1135
1624
|
}
|
|
1136
1625
|
export interface ListPhoneNumbersResponse {
|
|
1626
|
+
/**
|
|
1627
|
+
* The phone number details.
|
|
1628
|
+
*/
|
|
1137
1629
|
PhoneNumbers?: PhoneNumberList;
|
|
1630
|
+
/**
|
|
1631
|
+
* The token used to return the next page of results.
|
|
1632
|
+
*/
|
|
1138
1633
|
NextToken?: String;
|
|
1139
1634
|
}
|
|
1140
1635
|
export interface ListProxySessionsRequest {
|
|
1636
|
+
/**
|
|
1637
|
+
* The Voice Connector ID.
|
|
1638
|
+
*/
|
|
1141
1639
|
VoiceConnectorId: NonEmptyString128;
|
|
1640
|
+
/**
|
|
1641
|
+
* The proxy session status.
|
|
1642
|
+
*/
|
|
1142
1643
|
Status?: ProxySessionStatus;
|
|
1644
|
+
/**
|
|
1645
|
+
* The token used to retrieve the next page of results.
|
|
1646
|
+
*/
|
|
1143
1647
|
NextToken?: NextTokenString;
|
|
1648
|
+
/**
|
|
1649
|
+
* The maximum number of results to return in a single call.
|
|
1650
|
+
*/
|
|
1144
1651
|
MaxResults?: ResultMax;
|
|
1145
1652
|
}
|
|
1146
1653
|
export interface ListProxySessionsResponse {
|
|
1654
|
+
/**
|
|
1655
|
+
* The proxy sessions' details.
|
|
1656
|
+
*/
|
|
1147
1657
|
ProxySessions?: ProxySessions;
|
|
1658
|
+
/**
|
|
1659
|
+
* The token used to retrieve the next page of results.
|
|
1660
|
+
*/
|
|
1148
1661
|
NextToken?: NextTokenString;
|
|
1149
1662
|
}
|
|
1150
1663
|
export interface ListSipMediaApplicationsRequest {
|
|
1664
|
+
/**
|
|
1665
|
+
* The maximum number of results to return in a single call. Defaults to 100.
|
|
1666
|
+
*/
|
|
1151
1667
|
MaxResults?: ResultMax;
|
|
1668
|
+
/**
|
|
1669
|
+
* The token used to return the next page of results.
|
|
1670
|
+
*/
|
|
1152
1671
|
NextToken?: NextTokenString;
|
|
1153
1672
|
}
|
|
1154
1673
|
export interface ListSipMediaApplicationsResponse {
|
|
1674
|
+
/**
|
|
1675
|
+
* The list of SIP media applications and application details.
|
|
1676
|
+
*/
|
|
1155
1677
|
SipMediaApplications?: SipMediaApplicationList;
|
|
1678
|
+
/**
|
|
1679
|
+
* The token used to return the next page of results.
|
|
1680
|
+
*/
|
|
1156
1681
|
NextToken?: NextTokenString;
|
|
1157
1682
|
}
|
|
1158
1683
|
export interface ListSipRulesRequest {
|
|
1684
|
+
/**
|
|
1685
|
+
* The SIP media application ID.
|
|
1686
|
+
*/
|
|
1159
1687
|
SipMediaApplicationId?: NonEmptyString;
|
|
1688
|
+
/**
|
|
1689
|
+
* The maximum number of results to return in a single call. Defaults to 100.
|
|
1690
|
+
*/
|
|
1160
1691
|
MaxResults?: ResultMax;
|
|
1692
|
+
/**
|
|
1693
|
+
* The token used to return the next page of results.
|
|
1694
|
+
*/
|
|
1161
1695
|
NextToken?: NextTokenString;
|
|
1162
1696
|
}
|
|
1163
1697
|
export interface ListSipRulesResponse {
|
|
1698
|
+
/**
|
|
1699
|
+
* The list of SIP rules and details.
|
|
1700
|
+
*/
|
|
1164
1701
|
SipRules?: SipRuleList;
|
|
1702
|
+
/**
|
|
1703
|
+
* The token used to return the next page of results.
|
|
1704
|
+
*/
|
|
1165
1705
|
NextToken?: NextTokenString;
|
|
1166
1706
|
}
|
|
1167
1707
|
export interface ListSupportedPhoneNumberCountriesRequest {
|
|
1708
|
+
/**
|
|
1709
|
+
* The phone number product type.
|
|
1710
|
+
*/
|
|
1168
1711
|
ProductType: PhoneNumberProductType;
|
|
1169
1712
|
}
|
|
1170
1713
|
export interface ListSupportedPhoneNumberCountriesResponse {
|
|
1714
|
+
/**
|
|
1715
|
+
* The supported phone number countries.
|
|
1716
|
+
*/
|
|
1171
1717
|
PhoneNumberCountries?: PhoneNumberCountriesList;
|
|
1172
1718
|
}
|
|
1173
1719
|
export interface ListTagsForResourceRequest {
|
|
1720
|
+
/**
|
|
1721
|
+
* The resource ARN.
|
|
1722
|
+
*/
|
|
1174
1723
|
ResourceARN: Arn;
|
|
1175
1724
|
}
|
|
1176
1725
|
export interface ListTagsForResourceResponse {
|
|
1726
|
+
/**
|
|
1727
|
+
* The tags in the list.
|
|
1728
|
+
*/
|
|
1177
1729
|
Tags?: TagList;
|
|
1178
1730
|
}
|
|
1179
1731
|
export interface ListVoiceConnectorGroupsRequest {
|
|
1732
|
+
/**
|
|
1733
|
+
* The token used to return the next page of results.
|
|
1734
|
+
*/
|
|
1180
1735
|
NextToken?: String;
|
|
1736
|
+
/**
|
|
1737
|
+
* The maximum number of results to return in a single call.
|
|
1738
|
+
*/
|
|
1181
1739
|
MaxResults?: ResultMax;
|
|
1182
1740
|
}
|
|
1183
1741
|
export interface ListVoiceConnectorGroupsResponse {
|
|
1742
|
+
/**
|
|
1743
|
+
* The details of the Voice Connector groups.
|
|
1744
|
+
*/
|
|
1184
1745
|
VoiceConnectorGroups?: VoiceConnectorGroupList;
|
|
1746
|
+
/**
|
|
1747
|
+
* The token used to return the next page of results.
|
|
1748
|
+
*/
|
|
1185
1749
|
NextToken?: String;
|
|
1186
1750
|
}
|
|
1187
1751
|
export interface ListVoiceConnectorTerminationCredentialsRequest {
|
|
1752
|
+
/**
|
|
1753
|
+
* The Voice Connector ID.
|
|
1754
|
+
*/
|
|
1188
1755
|
VoiceConnectorId: NonEmptyString;
|
|
1189
1756
|
}
|
|
1190
1757
|
export interface ListVoiceConnectorTerminationCredentialsResponse {
|
|
1758
|
+
/**
|
|
1759
|
+
* A list of user names.
|
|
1760
|
+
*/
|
|
1191
1761
|
Usernames?: SensitiveStringList;
|
|
1192
1762
|
}
|
|
1193
1763
|
export interface ListVoiceConnectorsRequest {
|
|
1764
|
+
/**
|
|
1765
|
+
* The token used to return the next page of results.
|
|
1766
|
+
*/
|
|
1194
1767
|
NextToken?: String;
|
|
1768
|
+
/**
|
|
1769
|
+
* The maximum number of results to return in a single call.
|
|
1770
|
+
*/
|
|
1195
1771
|
MaxResults?: ResultMax;
|
|
1196
1772
|
}
|
|
1197
1773
|
export interface ListVoiceConnectorsResponse {
|
|
1774
|
+
/**
|
|
1775
|
+
* The details of the Voice Connectors.
|
|
1776
|
+
*/
|
|
1198
1777
|
VoiceConnectors?: VoiceConnectorList;
|
|
1778
|
+
/**
|
|
1779
|
+
* The token used to return the next page of results.
|
|
1780
|
+
*/
|
|
1199
1781
|
NextToken?: String;
|
|
1200
1782
|
}
|
|
1201
1783
|
export interface ListVoiceProfileDomainsRequest {
|
|
1784
|
+
/**
|
|
1785
|
+
* The token used to return the next page of results.
|
|
1786
|
+
*/
|
|
1202
1787
|
NextToken?: String;
|
|
1788
|
+
/**
|
|
1789
|
+
* The maximum number of results to return in a single call.
|
|
1790
|
+
*/
|
|
1203
1791
|
MaxResults?: ResultMax;
|
|
1204
1792
|
}
|
|
1205
1793
|
export interface ListVoiceProfileDomainsResponse {
|
|
1794
|
+
/**
|
|
1795
|
+
* The list of voice profile domains.
|
|
1796
|
+
*/
|
|
1206
1797
|
VoiceProfileDomains?: VoiceProfileDomainSummaryList;
|
|
1798
|
+
/**
|
|
1799
|
+
* The token used to return the next page of results.
|
|
1800
|
+
*/
|
|
1207
1801
|
NextToken?: String;
|
|
1208
1802
|
}
|
|
1209
1803
|
export interface ListVoiceProfilesRequest {
|
|
1804
|
+
/**
|
|
1805
|
+
* The ID of the voice profile domain.
|
|
1806
|
+
*/
|
|
1210
1807
|
VoiceProfileDomainId: NonEmptyString256;
|
|
1808
|
+
/**
|
|
1809
|
+
* The token used to retrieve the next page of results.
|
|
1810
|
+
*/
|
|
1211
1811
|
NextToken?: String;
|
|
1812
|
+
/**
|
|
1813
|
+
* The maximum number of results in the request.
|
|
1814
|
+
*/
|
|
1212
1815
|
MaxResults?: ResultMax;
|
|
1213
1816
|
}
|
|
1214
1817
|
export interface ListVoiceProfilesResponse {
|
|
1818
|
+
/**
|
|
1819
|
+
* The list of voice profiles.
|
|
1820
|
+
*/
|
|
1215
1821
|
VoiceProfiles?: VoiceProfileSummaryList;
|
|
1822
|
+
/**
|
|
1823
|
+
* The token used to retrieve the next page of results.
|
|
1824
|
+
*/
|
|
1216
1825
|
NextToken?: String;
|
|
1217
1826
|
}
|
|
1218
1827
|
export interface LoggingConfiguration {
|
|
1828
|
+
/**
|
|
1829
|
+
* Boolean that enables sending SIP message logs to Amazon CloudWatch logs.
|
|
1830
|
+
*/
|
|
1219
1831
|
EnableSIPLogs?: Boolean;
|
|
1832
|
+
/**
|
|
1833
|
+
* Enables or disables media metrics logging.
|
|
1834
|
+
*/
|
|
1220
1835
|
EnableMediaMetricLogs?: Boolean;
|
|
1221
1836
|
}
|
|
1222
1837
|
export interface MediaInsightsConfiguration {
|
|
1838
|
+
/**
|
|
1839
|
+
* Denotes the configration as enabled or disabled.
|
|
1840
|
+
*/
|
|
1223
1841
|
Disabled?: Boolean;
|
|
1842
|
+
/**
|
|
1843
|
+
* The configuration's ARN.
|
|
1844
|
+
*/
|
|
1224
1845
|
ConfigurationArn?: Arn;
|
|
1225
1846
|
}
|
|
1226
1847
|
export type NextTokenString = string;
|
|
@@ -1232,20 +1853,47 @@ declare namespace ChimeSDKVoice {
|
|
|
1232
1853
|
export type NullableBoolean = boolean;
|
|
1233
1854
|
export type NumberSelectionBehavior = "PreferSticky"|"AvoidSticky"|string;
|
|
1234
1855
|
export interface OrderedPhoneNumber {
|
|
1856
|
+
/**
|
|
1857
|
+
* The phone number, in E.164 format.
|
|
1858
|
+
*/
|
|
1235
1859
|
E164PhoneNumber?: E164PhoneNumber;
|
|
1860
|
+
/**
|
|
1861
|
+
* The phone number status.
|
|
1862
|
+
*/
|
|
1236
1863
|
Status?: OrderedPhoneNumberStatus;
|
|
1237
1864
|
}
|
|
1238
1865
|
export type OrderedPhoneNumberList = OrderedPhoneNumber[];
|
|
1239
1866
|
export type OrderedPhoneNumberStatus = "Processing"|"Acquired"|"Failed"|string;
|
|
1240
1867
|
export interface Origination {
|
|
1868
|
+
/**
|
|
1869
|
+
* The call distribution properties defined for your SIP hosts. Valid range: Minimum value of 1. Maximum value of 20. This parameter is not required, but you must specify this parameter or Disabled.
|
|
1870
|
+
*/
|
|
1241
1871
|
Routes?: OriginationRouteList;
|
|
1872
|
+
/**
|
|
1873
|
+
* When origination settings are disabled, inbound calls are not enabled for your Amazon Chime SDK Voice Connector. This parameter is not required, but you must specify this parameter or Routes.
|
|
1874
|
+
*/
|
|
1242
1875
|
Disabled?: Boolean;
|
|
1243
1876
|
}
|
|
1244
1877
|
export interface OriginationRoute {
|
|
1878
|
+
/**
|
|
1879
|
+
* The FQDN or IP address to contact for origination traffic.
|
|
1880
|
+
*/
|
|
1245
1881
|
Host?: String;
|
|
1882
|
+
/**
|
|
1883
|
+
* The designated origination route port. Defaults to 5060.
|
|
1884
|
+
*/
|
|
1246
1885
|
Port?: Port;
|
|
1886
|
+
/**
|
|
1887
|
+
* The protocol to use for the origination route. Encryption-enabled Amazon Chime SDK Voice Connectors use TCP protocol by default.
|
|
1888
|
+
*/
|
|
1247
1889
|
Protocol?: OriginationRouteProtocol;
|
|
1890
|
+
/**
|
|
1891
|
+
* The priority associated with the host, with 1 being the highest priority. Higher priority hosts are attempted first.
|
|
1892
|
+
*/
|
|
1248
1893
|
Priority?: OriginationRoutePriority;
|
|
1894
|
+
/**
|
|
1895
|
+
* The weight assigned to an origination route. When hosts have equal priority, calls are distributed between them based on their relative weights.
|
|
1896
|
+
*/
|
|
1249
1897
|
Weight?: OriginationRouteWeight;
|
|
1250
1898
|
}
|
|
1251
1899
|
export type OriginationRouteList = OriginationRoute[];
|
|
@@ -1253,62 +1901,173 @@ declare namespace ChimeSDKVoice {
|
|
|
1253
1901
|
export type OriginationRouteProtocol = "TCP"|"UDP"|string;
|
|
1254
1902
|
export type OriginationRouteWeight = number;
|
|
1255
1903
|
export interface Participant {
|
|
1904
|
+
/**
|
|
1905
|
+
* The participant's phone number.
|
|
1906
|
+
*/
|
|
1256
1907
|
PhoneNumber?: E164PhoneNumber;
|
|
1908
|
+
/**
|
|
1909
|
+
* The participant's proxy phone number.
|
|
1910
|
+
*/
|
|
1257
1911
|
ProxyPhoneNumber?: E164PhoneNumber;
|
|
1258
1912
|
}
|
|
1259
1913
|
export type ParticipantPhoneNumberList = E164PhoneNumber[];
|
|
1260
1914
|
export type Participants = Participant[];
|
|
1261
1915
|
export interface PhoneNumber {
|
|
1916
|
+
/**
|
|
1917
|
+
* The phone number's ID.
|
|
1918
|
+
*/
|
|
1262
1919
|
PhoneNumberId?: SensitiveNonEmptyString;
|
|
1920
|
+
/**
|
|
1921
|
+
* The phone number, in E.164 format.
|
|
1922
|
+
*/
|
|
1263
1923
|
E164PhoneNumber?: E164PhoneNumber;
|
|
1924
|
+
/**
|
|
1925
|
+
* The phone number's country. Format: ISO 3166-1 alpha-2.
|
|
1926
|
+
*/
|
|
1264
1927
|
Country?: Alpha2CountryCode;
|
|
1928
|
+
/**
|
|
1929
|
+
* The phone number's type.
|
|
1930
|
+
*/
|
|
1265
1931
|
Type?: PhoneNumberType;
|
|
1932
|
+
/**
|
|
1933
|
+
* The phone number's product type.
|
|
1934
|
+
*/
|
|
1266
1935
|
ProductType?: PhoneNumberProductType;
|
|
1936
|
+
/**
|
|
1937
|
+
* The phone number's status.
|
|
1938
|
+
*/
|
|
1267
1939
|
Status?: PhoneNumberStatus;
|
|
1940
|
+
/**
|
|
1941
|
+
* The phone number's capabilities.
|
|
1942
|
+
*/
|
|
1268
1943
|
Capabilities?: PhoneNumberCapabilities;
|
|
1944
|
+
/**
|
|
1945
|
+
* The phone number's associations.
|
|
1946
|
+
*/
|
|
1269
1947
|
Associations?: PhoneNumberAssociationList;
|
|
1948
|
+
/**
|
|
1949
|
+
* The outbound calling name associated with the phone number.
|
|
1950
|
+
*/
|
|
1270
1951
|
CallingName?: CallingName;
|
|
1952
|
+
/**
|
|
1953
|
+
* The outbound calling name status.
|
|
1954
|
+
*/
|
|
1271
1955
|
CallingNameStatus?: CallingNameStatus;
|
|
1956
|
+
/**
|
|
1957
|
+
* The phone number creation timestamp, in ISO 8601 format.
|
|
1958
|
+
*/
|
|
1272
1959
|
CreatedTimestamp?: Iso8601Timestamp;
|
|
1960
|
+
/**
|
|
1961
|
+
* The updated phone number timestamp, in ISO 8601 format.
|
|
1962
|
+
*/
|
|
1273
1963
|
UpdatedTimestamp?: Iso8601Timestamp;
|
|
1964
|
+
/**
|
|
1965
|
+
* The deleted phone number timestamp, in ISO 8601 format.
|
|
1966
|
+
*/
|
|
1274
1967
|
DeletionTimestamp?: Iso8601Timestamp;
|
|
1968
|
+
/**
|
|
1969
|
+
* The phone number's order ID.
|
|
1970
|
+
*/
|
|
1275
1971
|
OrderId?: GuidString;
|
|
1276
1972
|
}
|
|
1277
1973
|
export interface PhoneNumberAssociation {
|
|
1974
|
+
/**
|
|
1975
|
+
* Contains the ID for the entity specified in Name.
|
|
1976
|
+
*/
|
|
1278
1977
|
Value?: String;
|
|
1978
|
+
/**
|
|
1979
|
+
* Defines the association with an Amazon Chime SDK account ID, user ID, Voice Connector ID, or Voice Connector group ID.
|
|
1980
|
+
*/
|
|
1279
1981
|
Name?: PhoneNumberAssociationName;
|
|
1982
|
+
/**
|
|
1983
|
+
* The timestamp of the phone number association, in ISO 8601 format.
|
|
1984
|
+
*/
|
|
1280
1985
|
AssociatedTimestamp?: Iso8601Timestamp;
|
|
1281
1986
|
}
|
|
1282
1987
|
export type PhoneNumberAssociationList = PhoneNumberAssociation[];
|
|
1283
1988
|
export type PhoneNumberAssociationName = "VoiceConnectorId"|"VoiceConnectorGroupId"|"SipRuleId"|string;
|
|
1284
1989
|
export interface PhoneNumberCapabilities {
|
|
1990
|
+
/**
|
|
1991
|
+
* Allows or denies inbound calling for the specified phone number.
|
|
1992
|
+
*/
|
|
1285
1993
|
InboundCall?: NullableBoolean;
|
|
1994
|
+
/**
|
|
1995
|
+
* Allows or denies outbound calling for the specified phone number.
|
|
1996
|
+
*/
|
|
1286
1997
|
OutboundCall?: NullableBoolean;
|
|
1998
|
+
/**
|
|
1999
|
+
* Allows or denies inbound SMS messaging for the specified phone number.
|
|
2000
|
+
*/
|
|
1287
2001
|
InboundSMS?: NullableBoolean;
|
|
2002
|
+
/**
|
|
2003
|
+
* Allows or denies outbound SMS messaging for the specified phone number.
|
|
2004
|
+
*/
|
|
1288
2005
|
OutboundSMS?: NullableBoolean;
|
|
2006
|
+
/**
|
|
2007
|
+
* Allows or denies inbound MMS messaging for the specified phone number.
|
|
2008
|
+
*/
|
|
1289
2009
|
InboundMMS?: NullableBoolean;
|
|
2010
|
+
/**
|
|
2011
|
+
* Allows or denies inbound MMS messaging for the specified phone number.
|
|
2012
|
+
*/
|
|
1290
2013
|
OutboundMMS?: NullableBoolean;
|
|
1291
2014
|
}
|
|
1292
2015
|
export type PhoneNumberCountriesList = PhoneNumberCountry[];
|
|
1293
2016
|
export interface PhoneNumberCountry {
|
|
2017
|
+
/**
|
|
2018
|
+
* The phone number country code. Format: ISO 3166-1 alpha-2.
|
|
2019
|
+
*/
|
|
1294
2020
|
CountryCode?: Alpha2CountryCode;
|
|
2021
|
+
/**
|
|
2022
|
+
* The supported phone number types.
|
|
2023
|
+
*/
|
|
1295
2024
|
SupportedPhoneNumberTypes?: PhoneNumberTypeList;
|
|
1296
2025
|
}
|
|
1297
2026
|
export interface PhoneNumberError {
|
|
2027
|
+
/**
|
|
2028
|
+
* The phone number ID for which the action failed.
|
|
2029
|
+
*/
|
|
1298
2030
|
PhoneNumberId?: SensitiveNonEmptyString;
|
|
2031
|
+
/**
|
|
2032
|
+
* The error code.
|
|
2033
|
+
*/
|
|
1299
2034
|
ErrorCode?: ErrorCode;
|
|
2035
|
+
/**
|
|
2036
|
+
* The error message.
|
|
2037
|
+
*/
|
|
1300
2038
|
ErrorMessage?: String;
|
|
1301
2039
|
}
|
|
1302
2040
|
export type PhoneNumberErrorList = PhoneNumberError[];
|
|
1303
2041
|
export type PhoneNumberList = PhoneNumber[];
|
|
1304
2042
|
export type PhoneNumberMaxResults = number;
|
|
1305
2043
|
export interface PhoneNumberOrder {
|
|
2044
|
+
/**
|
|
2045
|
+
* The ID of the phone order.
|
|
2046
|
+
*/
|
|
1306
2047
|
PhoneNumberOrderId?: GuidString;
|
|
2048
|
+
/**
|
|
2049
|
+
* The phone number order product type.
|
|
2050
|
+
*/
|
|
1307
2051
|
ProductType?: PhoneNumberProductType;
|
|
2052
|
+
/**
|
|
2053
|
+
* The status of the phone number order.
|
|
2054
|
+
*/
|
|
1308
2055
|
Status?: PhoneNumberOrderStatus;
|
|
2056
|
+
/**
|
|
2057
|
+
* The type of phone number being ordered, local or toll-free.
|
|
2058
|
+
*/
|
|
1309
2059
|
OrderType?: PhoneNumberOrderType;
|
|
2060
|
+
/**
|
|
2061
|
+
* The ordered phone number details, such as the phone number in E.164 format and the phone number status.
|
|
2062
|
+
*/
|
|
1310
2063
|
OrderedPhoneNumbers?: OrderedPhoneNumberList;
|
|
2064
|
+
/**
|
|
2065
|
+
* The phone number order creation time stamp, in ISO 8601 format.
|
|
2066
|
+
*/
|
|
1311
2067
|
CreatedTimestamp?: Iso8601Timestamp;
|
|
2068
|
+
/**
|
|
2069
|
+
* The updated phone number order time stamp, in ISO 8601 format.
|
|
2070
|
+
*/
|
|
1312
2071
|
UpdatedTimestamp?: Iso8601Timestamp;
|
|
1313
2072
|
}
|
|
1314
2073
|
export type PhoneNumberOrderList = PhoneNumberOrder[];
|
|
@@ -1321,218 +2080,554 @@ declare namespace ChimeSDKVoice {
|
|
|
1321
2080
|
export type Port = number;
|
|
1322
2081
|
export type PositiveInteger = number;
|
|
1323
2082
|
export interface Proxy {
|
|
2083
|
+
/**
|
|
2084
|
+
* The default number of minutes allowed for proxy sessions.
|
|
2085
|
+
*/
|
|
1324
2086
|
DefaultSessionExpiryMinutes?: Integer;
|
|
2087
|
+
/**
|
|
2088
|
+
* When true, stops proxy sessions from being created on the specified Amazon Chime SDK Voice Connector.
|
|
2089
|
+
*/
|
|
1325
2090
|
Disabled?: Boolean;
|
|
2091
|
+
/**
|
|
2092
|
+
* The phone number to route calls to after a proxy session expires.
|
|
2093
|
+
*/
|
|
1326
2094
|
FallBackPhoneNumber?: E164PhoneNumber;
|
|
2095
|
+
/**
|
|
2096
|
+
* The countries for proxy phone numbers to be selected from.
|
|
2097
|
+
*/
|
|
1327
2098
|
PhoneNumberCountries?: StringList;
|
|
1328
2099
|
}
|
|
1329
2100
|
export interface ProxySession {
|
|
2101
|
+
/**
|
|
2102
|
+
* The Voice Connector ID.
|
|
2103
|
+
*/
|
|
1330
2104
|
VoiceConnectorId?: NonEmptyString128;
|
|
2105
|
+
/**
|
|
2106
|
+
* The proxy session ID.
|
|
2107
|
+
*/
|
|
1331
2108
|
ProxySessionId?: NonEmptyString128;
|
|
2109
|
+
/**
|
|
2110
|
+
* The proxy session name.
|
|
2111
|
+
*/
|
|
1332
2112
|
Name?: String128;
|
|
2113
|
+
/**
|
|
2114
|
+
* The proxy session status.
|
|
2115
|
+
*/
|
|
1333
2116
|
Status?: ProxySessionStatus;
|
|
2117
|
+
/**
|
|
2118
|
+
* The number of minutes allowed for the proxy session.
|
|
2119
|
+
*/
|
|
1334
2120
|
ExpiryMinutes?: PositiveInteger;
|
|
2121
|
+
/**
|
|
2122
|
+
* The proxy session capabilities.
|
|
2123
|
+
*/
|
|
1335
2124
|
Capabilities?: CapabilityList;
|
|
2125
|
+
/**
|
|
2126
|
+
* The created time stamp, in ISO 8601 format.
|
|
2127
|
+
*/
|
|
1336
2128
|
CreatedTimestamp?: Iso8601Timestamp;
|
|
2129
|
+
/**
|
|
2130
|
+
* The updated time stamp, in ISO 8601 format.
|
|
2131
|
+
*/
|
|
1337
2132
|
UpdatedTimestamp?: Iso8601Timestamp;
|
|
2133
|
+
/**
|
|
2134
|
+
* The ended time stamp, in ISO 8601 format.
|
|
2135
|
+
*/
|
|
1338
2136
|
EndedTimestamp?: Iso8601Timestamp;
|
|
2137
|
+
/**
|
|
2138
|
+
* The proxy session participants.
|
|
2139
|
+
*/
|
|
1339
2140
|
Participants?: Participants;
|
|
2141
|
+
/**
|
|
2142
|
+
* The preference for proxy phone number reuse, or stickiness, between the same participants across sessions.
|
|
2143
|
+
*/
|
|
1340
2144
|
NumberSelectionBehavior?: NumberSelectionBehavior;
|
|
2145
|
+
/**
|
|
2146
|
+
* The preference for matching the country or area code of the proxy phone number with that of the first participant.
|
|
2147
|
+
*/
|
|
1341
2148
|
GeoMatchLevel?: GeoMatchLevel;
|
|
2149
|
+
/**
|
|
2150
|
+
* The country and area code for the proxy phone number.
|
|
2151
|
+
*/
|
|
1342
2152
|
GeoMatchParams?: GeoMatchParams;
|
|
1343
2153
|
}
|
|
1344
2154
|
export type ProxySessionNameString = string;
|
|
1345
2155
|
export type ProxySessionStatus = "Open"|"InProgress"|"Closed"|string;
|
|
1346
2156
|
export type ProxySessions = ProxySession[];
|
|
1347
2157
|
export interface PutSipMediaApplicationAlexaSkillConfigurationRequest {
|
|
2158
|
+
/**
|
|
2159
|
+
* The SIP media application ID.
|
|
2160
|
+
*/
|
|
1348
2161
|
SipMediaApplicationId: NonEmptyString;
|
|
2162
|
+
/**
|
|
2163
|
+
* The Alexa Skill configuration.
|
|
2164
|
+
*/
|
|
1349
2165
|
SipMediaApplicationAlexaSkillConfiguration?: SipMediaApplicationAlexaSkillConfiguration;
|
|
1350
2166
|
}
|
|
1351
2167
|
export interface PutSipMediaApplicationAlexaSkillConfigurationResponse {
|
|
2168
|
+
/**
|
|
2169
|
+
* Returns the Alexa Skill configuration.
|
|
2170
|
+
*/
|
|
1352
2171
|
SipMediaApplicationAlexaSkillConfiguration?: SipMediaApplicationAlexaSkillConfiguration;
|
|
1353
2172
|
}
|
|
1354
2173
|
export interface PutSipMediaApplicationLoggingConfigurationRequest {
|
|
2174
|
+
/**
|
|
2175
|
+
* The SIP media application ID.
|
|
2176
|
+
*/
|
|
1355
2177
|
SipMediaApplicationId: NonEmptyString;
|
|
2178
|
+
/**
|
|
2179
|
+
* The logging configuration for the specified SIP media application.
|
|
2180
|
+
*/
|
|
1356
2181
|
SipMediaApplicationLoggingConfiguration?: SipMediaApplicationLoggingConfiguration;
|
|
1357
2182
|
}
|
|
1358
2183
|
export interface PutSipMediaApplicationLoggingConfigurationResponse {
|
|
2184
|
+
/**
|
|
2185
|
+
* The updated logging configuration for the specified SIP media application.
|
|
2186
|
+
*/
|
|
1359
2187
|
SipMediaApplicationLoggingConfiguration?: SipMediaApplicationLoggingConfiguration;
|
|
1360
2188
|
}
|
|
1361
2189
|
export interface PutVoiceConnectorEmergencyCallingConfigurationRequest {
|
|
2190
|
+
/**
|
|
2191
|
+
* The Voice Connector ID.
|
|
2192
|
+
*/
|
|
1362
2193
|
VoiceConnectorId: NonEmptyString;
|
|
2194
|
+
/**
|
|
2195
|
+
* The configuration being updated.
|
|
2196
|
+
*/
|
|
1363
2197
|
EmergencyCallingConfiguration: EmergencyCallingConfiguration;
|
|
1364
2198
|
}
|
|
1365
2199
|
export interface PutVoiceConnectorEmergencyCallingConfigurationResponse {
|
|
2200
|
+
/**
|
|
2201
|
+
* The updated configuration.
|
|
2202
|
+
*/
|
|
1366
2203
|
EmergencyCallingConfiguration?: EmergencyCallingConfiguration;
|
|
1367
2204
|
}
|
|
1368
2205
|
export interface PutVoiceConnectorLoggingConfigurationRequest {
|
|
2206
|
+
/**
|
|
2207
|
+
* The Voice Connector ID.
|
|
2208
|
+
*/
|
|
1369
2209
|
VoiceConnectorId: NonEmptyString;
|
|
2210
|
+
/**
|
|
2211
|
+
* The logging configuration being updated.
|
|
2212
|
+
*/
|
|
1370
2213
|
LoggingConfiguration: LoggingConfiguration;
|
|
1371
2214
|
}
|
|
1372
2215
|
export interface PutVoiceConnectorLoggingConfigurationResponse {
|
|
2216
|
+
/**
|
|
2217
|
+
* The updated logging configuration.
|
|
2218
|
+
*/
|
|
1373
2219
|
LoggingConfiguration?: LoggingConfiguration;
|
|
1374
2220
|
}
|
|
1375
2221
|
export interface PutVoiceConnectorOriginationRequest {
|
|
2222
|
+
/**
|
|
2223
|
+
* The Voice Connector ID.
|
|
2224
|
+
*/
|
|
1376
2225
|
VoiceConnectorId: NonEmptyString;
|
|
2226
|
+
/**
|
|
2227
|
+
* The origination settings being updated.
|
|
2228
|
+
*/
|
|
1377
2229
|
Origination: Origination;
|
|
1378
2230
|
}
|
|
1379
2231
|
export interface PutVoiceConnectorOriginationResponse {
|
|
2232
|
+
/**
|
|
2233
|
+
* The updated origination settings.
|
|
2234
|
+
*/
|
|
1380
2235
|
Origination?: Origination;
|
|
1381
2236
|
}
|
|
1382
2237
|
export interface PutVoiceConnectorProxyRequest {
|
|
2238
|
+
/**
|
|
2239
|
+
* The Voice Connector ID.
|
|
2240
|
+
*/
|
|
1383
2241
|
VoiceConnectorId: NonEmptyString128;
|
|
2242
|
+
/**
|
|
2243
|
+
* The default number of minutes allowed for proxy session.
|
|
2244
|
+
*/
|
|
1384
2245
|
DefaultSessionExpiryMinutes: Integer;
|
|
2246
|
+
/**
|
|
2247
|
+
* The countries for proxy phone numbers to be selected from.
|
|
2248
|
+
*/
|
|
1385
2249
|
PhoneNumberPoolCountries: CountryList;
|
|
2250
|
+
/**
|
|
2251
|
+
* The phone number to route calls to after a proxy session expires.
|
|
2252
|
+
*/
|
|
1386
2253
|
FallBackPhoneNumber?: E164PhoneNumber;
|
|
2254
|
+
/**
|
|
2255
|
+
* When true, stops proxy sessions from being created on the specified Amazon Chime SDK Voice Connector.
|
|
2256
|
+
*/
|
|
1387
2257
|
Disabled?: Boolean;
|
|
1388
2258
|
}
|
|
1389
2259
|
export interface PutVoiceConnectorProxyResponse {
|
|
2260
|
+
/**
|
|
2261
|
+
* The proxy configuration details.
|
|
2262
|
+
*/
|
|
1390
2263
|
Proxy?: Proxy;
|
|
1391
2264
|
}
|
|
1392
2265
|
export interface PutVoiceConnectorStreamingConfigurationRequest {
|
|
2266
|
+
/**
|
|
2267
|
+
* The Voice Connector ID.
|
|
2268
|
+
*/
|
|
1393
2269
|
VoiceConnectorId: NonEmptyString;
|
|
2270
|
+
/**
|
|
2271
|
+
* The streaming settings being updated.
|
|
2272
|
+
*/
|
|
1394
2273
|
StreamingConfiguration: StreamingConfiguration;
|
|
1395
2274
|
}
|
|
1396
2275
|
export interface PutVoiceConnectorStreamingConfigurationResponse {
|
|
2276
|
+
/**
|
|
2277
|
+
* The updated streaming settings.
|
|
2278
|
+
*/
|
|
1397
2279
|
StreamingConfiguration?: StreamingConfiguration;
|
|
1398
2280
|
}
|
|
1399
2281
|
export interface PutVoiceConnectorTerminationCredentialsRequest {
|
|
2282
|
+
/**
|
|
2283
|
+
* The Voice Connector ID.
|
|
2284
|
+
*/
|
|
1400
2285
|
VoiceConnectorId: NonEmptyString;
|
|
2286
|
+
/**
|
|
2287
|
+
* The termination credentials being updated.
|
|
2288
|
+
*/
|
|
1401
2289
|
Credentials?: CredentialList;
|
|
1402
2290
|
}
|
|
1403
2291
|
export interface PutVoiceConnectorTerminationRequest {
|
|
2292
|
+
/**
|
|
2293
|
+
* The Voice Connector ID.
|
|
2294
|
+
*/
|
|
1404
2295
|
VoiceConnectorId: NonEmptyString;
|
|
2296
|
+
/**
|
|
2297
|
+
* The termination settings to be updated.
|
|
2298
|
+
*/
|
|
1405
2299
|
Termination: Termination;
|
|
1406
2300
|
}
|
|
1407
2301
|
export interface PutVoiceConnectorTerminationResponse {
|
|
2302
|
+
/**
|
|
2303
|
+
* The updated termination settings.
|
|
2304
|
+
*/
|
|
1408
2305
|
Termination?: Termination;
|
|
1409
2306
|
}
|
|
1410
2307
|
export interface RestorePhoneNumberRequest {
|
|
2308
|
+
/**
|
|
2309
|
+
* The ID of the phone number being restored.
|
|
2310
|
+
*/
|
|
1411
2311
|
PhoneNumberId: SensitiveNonEmptyString;
|
|
1412
2312
|
}
|
|
1413
2313
|
export interface RestorePhoneNumberResponse {
|
|
2314
|
+
/**
|
|
2315
|
+
* The restored phone number.
|
|
2316
|
+
*/
|
|
1414
2317
|
PhoneNumber?: PhoneNumber;
|
|
1415
2318
|
}
|
|
1416
2319
|
export type ResultMax = number;
|
|
1417
2320
|
export type SMACreateCallArgumentsMap = {[key: string]: SensitiveString};
|
|
1418
2321
|
export type SMAUpdateCallArgumentsMap = {[key: string]: SensitiveString};
|
|
1419
2322
|
export interface SearchAvailablePhoneNumbersRequest {
|
|
2323
|
+
/**
|
|
2324
|
+
* Confines a search to just the phone numbers associated with the specified area code.
|
|
2325
|
+
*/
|
|
1420
2326
|
AreaCode?: String;
|
|
2327
|
+
/**
|
|
2328
|
+
* Confines a search to just the phone numbers associated with the specified city.
|
|
2329
|
+
*/
|
|
1421
2330
|
City?: String;
|
|
2331
|
+
/**
|
|
2332
|
+
* Confines a search to just the phone numbers associated with the specified country.
|
|
2333
|
+
*/
|
|
1422
2334
|
Country?: Alpha2CountryCode;
|
|
2335
|
+
/**
|
|
2336
|
+
* Confines a search to just the phone numbers associated with the specified state.
|
|
2337
|
+
*/
|
|
1423
2338
|
State?: String;
|
|
2339
|
+
/**
|
|
2340
|
+
* Confines a search to just the phone numbers associated with the specified toll-free prefix.
|
|
2341
|
+
*/
|
|
1424
2342
|
TollFreePrefix?: TollFreePrefix;
|
|
2343
|
+
/**
|
|
2344
|
+
* Confines a search to just the phone numbers associated with the specified phone number type, either local or toll-free.
|
|
2345
|
+
*/
|
|
1425
2346
|
PhoneNumberType?: PhoneNumberType;
|
|
2347
|
+
/**
|
|
2348
|
+
* The maximum number of results to return.
|
|
2349
|
+
*/
|
|
1426
2350
|
MaxResults?: PhoneNumberMaxResults;
|
|
2351
|
+
/**
|
|
2352
|
+
* The token used to return the next page of results.
|
|
2353
|
+
*/
|
|
1427
2354
|
NextToken?: String;
|
|
1428
2355
|
}
|
|
1429
2356
|
export interface SearchAvailablePhoneNumbersResponse {
|
|
2357
|
+
/**
|
|
2358
|
+
* Confines a search to just the phone numbers in the E.164 format.
|
|
2359
|
+
*/
|
|
1430
2360
|
E164PhoneNumbers?: E164PhoneNumberList;
|
|
2361
|
+
/**
|
|
2362
|
+
* The token used to return the next page of results.
|
|
2363
|
+
*/
|
|
1431
2364
|
NextToken?: String;
|
|
1432
2365
|
}
|
|
1433
2366
|
export type SensitiveNonEmptyString = string;
|
|
1434
2367
|
export type SensitiveString = string;
|
|
1435
2368
|
export type SensitiveStringList = SensitiveString[];
|
|
1436
2369
|
export interface ServerSideEncryptionConfiguration {
|
|
2370
|
+
/**
|
|
2371
|
+
* The ARN of the KMS key used to encrypt the enrollment data in a voice profile domain. Asymmetric customer managed keys are not supported.
|
|
2372
|
+
*/
|
|
1437
2373
|
KmsKeyArn: Arn;
|
|
1438
2374
|
}
|
|
1439
2375
|
export type SipApplicationPriority = number;
|
|
1440
2376
|
export type SipHeadersMap = {[key: string]: SensitiveString};
|
|
1441
2377
|
export interface SipMediaApplication {
|
|
2378
|
+
/**
|
|
2379
|
+
* A SIP media application's ID.
|
|
2380
|
+
*/
|
|
1442
2381
|
SipMediaApplicationId?: NonEmptyString;
|
|
2382
|
+
/**
|
|
2383
|
+
* The AWS Region in which the SIP media application is created.
|
|
2384
|
+
*/
|
|
1443
2385
|
AwsRegion?: String;
|
|
2386
|
+
/**
|
|
2387
|
+
* The SIP media application's name.
|
|
2388
|
+
*/
|
|
1444
2389
|
Name?: SipMediaApplicationName;
|
|
2390
|
+
/**
|
|
2391
|
+
* List of endpoints for SIP media application. Currently, only one endpoint per SIP media application is permitted.
|
|
2392
|
+
*/
|
|
1445
2393
|
Endpoints?: SipMediaApplicationEndpointList;
|
|
2394
|
+
/**
|
|
2395
|
+
* The SIP media application creation timestamp, in ISO 8601 format.
|
|
2396
|
+
*/
|
|
1446
2397
|
CreatedTimestamp?: Iso8601Timestamp;
|
|
2398
|
+
/**
|
|
2399
|
+
* The time at which the SIP media application was updated.
|
|
2400
|
+
*/
|
|
1447
2401
|
UpdatedTimestamp?: Iso8601Timestamp;
|
|
1448
2402
|
}
|
|
1449
2403
|
export interface SipMediaApplicationAlexaSkillConfiguration {
|
|
2404
|
+
/**
|
|
2405
|
+
* The status of the Alexa Skill configuration.
|
|
2406
|
+
*/
|
|
1450
2407
|
AlexaSkillStatus: AlexaSkillStatus;
|
|
2408
|
+
/**
|
|
2409
|
+
* The ID of the Alexa Skill configuration.
|
|
2410
|
+
*/
|
|
1451
2411
|
AlexaSkillIds: AlexaSkillIdList;
|
|
1452
2412
|
}
|
|
1453
2413
|
export interface SipMediaApplicationCall {
|
|
2414
|
+
/**
|
|
2415
|
+
* The call's transaction ID.
|
|
2416
|
+
*/
|
|
1454
2417
|
TransactionId?: GuidString;
|
|
1455
2418
|
}
|
|
1456
2419
|
export interface SipMediaApplicationEndpoint {
|
|
2420
|
+
/**
|
|
2421
|
+
* Valid Amazon Resource Name (ARN) of the Lambda function, version, or alias. The function must be created in the same AWS Region as the SIP media application.
|
|
2422
|
+
*/
|
|
1457
2423
|
LambdaArn?: FunctionArn;
|
|
1458
2424
|
}
|
|
1459
2425
|
export type SipMediaApplicationEndpointList = SipMediaApplicationEndpoint[];
|
|
1460
2426
|
export type SipMediaApplicationList = SipMediaApplication[];
|
|
1461
2427
|
export interface SipMediaApplicationLoggingConfiguration {
|
|
2428
|
+
/**
|
|
2429
|
+
* Enables message logging for the specified SIP media application.
|
|
2430
|
+
*/
|
|
1462
2431
|
EnableSipMediaApplicationMessageLogs?: Boolean;
|
|
1463
2432
|
}
|
|
1464
2433
|
export type SipMediaApplicationName = string;
|
|
1465
2434
|
export interface SipRule {
|
|
2435
|
+
/**
|
|
2436
|
+
* A SIP rule's ID.
|
|
2437
|
+
*/
|
|
1466
2438
|
SipRuleId?: NonEmptyString;
|
|
2439
|
+
/**
|
|
2440
|
+
* A SIP rule's name.
|
|
2441
|
+
*/
|
|
1467
2442
|
Name?: SipRuleName;
|
|
2443
|
+
/**
|
|
2444
|
+
* Indicates whether the SIP rule is enabled or disabled. You must disable a rule before you can delete it.
|
|
2445
|
+
*/
|
|
1468
2446
|
Disabled?: Boolean;
|
|
2447
|
+
/**
|
|
2448
|
+
* The type of trigger set for a SIP rule, either a phone number or a URI request host name.
|
|
2449
|
+
*/
|
|
1469
2450
|
TriggerType?: SipRuleTriggerType;
|
|
2451
|
+
/**
|
|
2452
|
+
* The value set for a SIP rule's trigger type. Either a phone number or a URI hostname.
|
|
2453
|
+
*/
|
|
1470
2454
|
TriggerValue?: NonEmptyString;
|
|
2455
|
+
/**
|
|
2456
|
+
* The target SIP media application and other details, such as priority and AWS Region, to be specified in the SIP rule. Only one SIP rule per AWS Region can be provided.
|
|
2457
|
+
*/
|
|
1471
2458
|
TargetApplications?: SipRuleTargetApplicationList;
|
|
2459
|
+
/**
|
|
2460
|
+
* The time at which the SIP rule was created, in ISO 8601 format.
|
|
2461
|
+
*/
|
|
1472
2462
|
CreatedTimestamp?: Iso8601Timestamp;
|
|
2463
|
+
/**
|
|
2464
|
+
* The time at which the SIP rule was updated, in ISO 8601 format.
|
|
2465
|
+
*/
|
|
1473
2466
|
UpdatedTimestamp?: Iso8601Timestamp;
|
|
1474
2467
|
}
|
|
1475
2468
|
export type SipRuleList = SipRule[];
|
|
1476
2469
|
export type SipRuleName = string;
|
|
1477
2470
|
export interface SipRuleTargetApplication {
|
|
2471
|
+
/**
|
|
2472
|
+
* The ID of a rule's target SIP media application.
|
|
2473
|
+
*/
|
|
1478
2474
|
SipMediaApplicationId?: NonEmptyString;
|
|
2475
|
+
/**
|
|
2476
|
+
* The priority setting of a rule's target SIP media application.
|
|
2477
|
+
*/
|
|
1479
2478
|
Priority?: SipApplicationPriority;
|
|
2479
|
+
/**
|
|
2480
|
+
* The AWS Region of a rule's target SIP media application.
|
|
2481
|
+
*/
|
|
1480
2482
|
AwsRegion?: String;
|
|
1481
2483
|
}
|
|
1482
2484
|
export type SipRuleTargetApplicationList = SipRuleTargetApplication[];
|
|
1483
2485
|
export type SipRuleTriggerType = "ToPhoneNumber"|"RequestUriHostname"|string;
|
|
1484
2486
|
export interface SpeakerSearchDetails {
|
|
2487
|
+
/**
|
|
2488
|
+
* The result value in the speaker search details.
|
|
2489
|
+
*/
|
|
1485
2490
|
Results?: SpeakerSearchResultList;
|
|
2491
|
+
/**
|
|
2492
|
+
* The status of a voice print generation operation, VoiceprintGenerationSuccess or VoiceprintGenerationFailure..
|
|
2493
|
+
*/
|
|
1486
2494
|
VoiceprintGenerationStatus?: NonEmptyString256;
|
|
1487
2495
|
}
|
|
1488
2496
|
export interface SpeakerSearchResult {
|
|
2497
|
+
/**
|
|
2498
|
+
* The confidence score in the speaker search analysis.
|
|
2499
|
+
*/
|
|
1489
2500
|
ConfidenceScore?: ConfidenceScore;
|
|
2501
|
+
/**
|
|
2502
|
+
* The voice profile ID.
|
|
2503
|
+
*/
|
|
1490
2504
|
VoiceProfileId?: NonEmptyString256;
|
|
1491
2505
|
}
|
|
1492
2506
|
export type SpeakerSearchResultList = SpeakerSearchResult[];
|
|
1493
2507
|
export interface SpeakerSearchTask {
|
|
2508
|
+
/**
|
|
2509
|
+
* The speaker search task ID.
|
|
2510
|
+
*/
|
|
1494
2511
|
SpeakerSearchTaskId?: NonEmptyString256;
|
|
2512
|
+
/**
|
|
2513
|
+
* The status of the speaker search task, IN_QUEUE, IN_PROGRESS, PARTIAL_SUCCESS, SUCCEEDED, FAILED, or STOPPED.
|
|
2514
|
+
*/
|
|
1495
2515
|
SpeakerSearchTaskStatus?: NonEmptyString;
|
|
2516
|
+
/**
|
|
2517
|
+
* The call details of a speaker search task.
|
|
2518
|
+
*/
|
|
1496
2519
|
CallDetails?: CallDetails;
|
|
2520
|
+
/**
|
|
2521
|
+
* The details of a speaker search task.
|
|
2522
|
+
*/
|
|
1497
2523
|
SpeakerSearchDetails?: SpeakerSearchDetails;
|
|
2524
|
+
/**
|
|
2525
|
+
* The time at which a speaker search task was created.
|
|
2526
|
+
*/
|
|
1498
2527
|
CreatedTimestamp?: Iso8601Timestamp;
|
|
2528
|
+
/**
|
|
2529
|
+
* The time at which a speaker search task was updated.
|
|
2530
|
+
*/
|
|
1499
2531
|
UpdatedTimestamp?: Iso8601Timestamp;
|
|
2532
|
+
/**
|
|
2533
|
+
* The time at which the speaker search task began.
|
|
2534
|
+
*/
|
|
1500
2535
|
StartedTimestamp?: Iso8601Timestamp;
|
|
2536
|
+
/**
|
|
2537
|
+
* A detailed message about the status of a speaker search.
|
|
2538
|
+
*/
|
|
1501
2539
|
StatusMessage?: String;
|
|
1502
2540
|
}
|
|
1503
2541
|
export interface StartSpeakerSearchTaskRequest {
|
|
2542
|
+
/**
|
|
2543
|
+
* The Voice Connector ID.
|
|
2544
|
+
*/
|
|
1504
2545
|
VoiceConnectorId: NonEmptyString128;
|
|
2546
|
+
/**
|
|
2547
|
+
* The transaction ID of the call being analyzed.
|
|
2548
|
+
*/
|
|
1505
2549
|
TransactionId: NonEmptyString256;
|
|
2550
|
+
/**
|
|
2551
|
+
* The ID of the voice profile domain that will store the voice profile.
|
|
2552
|
+
*/
|
|
1506
2553
|
VoiceProfileDomainId: NonEmptyString256;
|
|
2554
|
+
/**
|
|
2555
|
+
* The unique identifier for the client request. Use a different token for different speaker search tasks.
|
|
2556
|
+
*/
|
|
1507
2557
|
ClientRequestToken?: ClientRequestId;
|
|
1508
2558
|
}
|
|
1509
2559
|
export interface StartSpeakerSearchTaskResponse {
|
|
2560
|
+
/**
|
|
2561
|
+
* The details of the speaker search task.
|
|
2562
|
+
*/
|
|
1510
2563
|
SpeakerSearchTask?: SpeakerSearchTask;
|
|
1511
2564
|
}
|
|
1512
2565
|
export interface StartVoiceToneAnalysisTaskRequest {
|
|
2566
|
+
/**
|
|
2567
|
+
* The Voice Connector ID.
|
|
2568
|
+
*/
|
|
1513
2569
|
VoiceConnectorId: NonEmptyString128;
|
|
2570
|
+
/**
|
|
2571
|
+
* The transaction ID.
|
|
2572
|
+
*/
|
|
1514
2573
|
TransactionId: NonEmptyString256;
|
|
2574
|
+
/**
|
|
2575
|
+
* The language code.
|
|
2576
|
+
*/
|
|
1515
2577
|
LanguageCode: LanguageCode;
|
|
2578
|
+
/**
|
|
2579
|
+
* The unique identifier for the client request. Use a different token for different voice tone analysis tasks.
|
|
2580
|
+
*/
|
|
1516
2581
|
ClientRequestToken?: ClientRequestId;
|
|
1517
2582
|
}
|
|
1518
2583
|
export interface StartVoiceToneAnalysisTaskResponse {
|
|
2584
|
+
/**
|
|
2585
|
+
* The details of the voice tone analysis task.
|
|
2586
|
+
*/
|
|
1519
2587
|
VoiceToneAnalysisTask?: VoiceToneAnalysisTask;
|
|
1520
2588
|
}
|
|
1521
2589
|
export interface StopSpeakerSearchTaskRequest {
|
|
2590
|
+
/**
|
|
2591
|
+
* The Voice Connector ID.
|
|
2592
|
+
*/
|
|
1522
2593
|
VoiceConnectorId: NonEmptyString128;
|
|
2594
|
+
/**
|
|
2595
|
+
* The speaker search task ID.
|
|
2596
|
+
*/
|
|
1523
2597
|
SpeakerSearchTaskId: NonEmptyString256;
|
|
1524
2598
|
}
|
|
1525
2599
|
export interface StopVoiceToneAnalysisTaskRequest {
|
|
2600
|
+
/**
|
|
2601
|
+
* The Voice Connector ID.
|
|
2602
|
+
*/
|
|
1526
2603
|
VoiceConnectorId: NonEmptyString128;
|
|
2604
|
+
/**
|
|
2605
|
+
* The ID of the voice tone analysis task.
|
|
2606
|
+
*/
|
|
1527
2607
|
VoiceToneAnalysisTaskId: NonEmptyString256;
|
|
1528
2608
|
}
|
|
1529
2609
|
export interface StreamingConfiguration {
|
|
2610
|
+
/**
|
|
2611
|
+
* The amount of time, in hours, to the Kinesis data.
|
|
2612
|
+
*/
|
|
1530
2613
|
DataRetentionInHours: DataRetentionInHours;
|
|
2614
|
+
/**
|
|
2615
|
+
* When true, streaming to Kinesis is off.
|
|
2616
|
+
*/
|
|
1531
2617
|
Disabled: Boolean;
|
|
2618
|
+
/**
|
|
2619
|
+
* The streaming notification targets.
|
|
2620
|
+
*/
|
|
1532
2621
|
StreamingNotificationTargets?: StreamingNotificationTargetList;
|
|
2622
|
+
/**
|
|
2623
|
+
* The call analytics configuration.
|
|
2624
|
+
*/
|
|
1533
2625
|
MediaInsightsConfiguration?: MediaInsightsConfiguration;
|
|
1534
2626
|
}
|
|
1535
2627
|
export interface StreamingNotificationTarget {
|
|
2628
|
+
/**
|
|
2629
|
+
* The streaming notification target.
|
|
2630
|
+
*/
|
|
1536
2631
|
NotificationTarget?: NotificationTarget;
|
|
1537
2632
|
}
|
|
1538
2633
|
export type StreamingNotificationTargetList = StreamingNotificationTarget[];
|
|
@@ -1540,158 +2635,404 @@ declare namespace ChimeSDKVoice {
|
|
|
1540
2635
|
export type String128 = string;
|
|
1541
2636
|
export type StringList = String[];
|
|
1542
2637
|
export interface Tag {
|
|
2638
|
+
/**
|
|
2639
|
+
* The tag's key.
|
|
2640
|
+
*/
|
|
1543
2641
|
Key: TagKey;
|
|
2642
|
+
/**
|
|
2643
|
+
* The tag's value.
|
|
2644
|
+
*/
|
|
1544
2645
|
Value: TagValue;
|
|
1545
2646
|
}
|
|
1546
2647
|
export type TagKey = string;
|
|
1547
2648
|
export type TagKeyList = TagKey[];
|
|
1548
2649
|
export type TagList = Tag[];
|
|
1549
2650
|
export interface TagResourceRequest {
|
|
2651
|
+
/**
|
|
2652
|
+
* The ARN of the resource being tagged.
|
|
2653
|
+
*/
|
|
1550
2654
|
ResourceARN: Arn;
|
|
2655
|
+
/**
|
|
2656
|
+
* A list of the tags being added to the resource.
|
|
2657
|
+
*/
|
|
1551
2658
|
Tags: TagList;
|
|
1552
2659
|
}
|
|
1553
2660
|
export type TagValue = string;
|
|
1554
2661
|
export interface Termination {
|
|
2662
|
+
/**
|
|
2663
|
+
* The limit on calls per second. Max value based on account service quota. Default value of 1.
|
|
2664
|
+
*/
|
|
1555
2665
|
CpsLimit?: CpsLimit;
|
|
2666
|
+
/**
|
|
2667
|
+
* The default outbound calling number.
|
|
2668
|
+
*/
|
|
1556
2669
|
DefaultPhoneNumber?: E164PhoneNumber;
|
|
2670
|
+
/**
|
|
2671
|
+
* The countries to which calls are allowed, in ISO 3166-1 alpha-2 format. Required.
|
|
2672
|
+
*/
|
|
1557
2673
|
CallingRegions?: CallingRegionList;
|
|
2674
|
+
/**
|
|
2675
|
+
* The IP addresses allowed to make calls, in CIDR format.
|
|
2676
|
+
*/
|
|
1558
2677
|
CidrAllowedList?: StringList;
|
|
2678
|
+
/**
|
|
2679
|
+
* When termination is disabled, outbound calls cannot be made.
|
|
2680
|
+
*/
|
|
1559
2681
|
Disabled?: Boolean;
|
|
1560
2682
|
}
|
|
1561
2683
|
export interface TerminationHealth {
|
|
2684
|
+
/**
|
|
2685
|
+
* The timestamp, in ISO 8601 format.
|
|
2686
|
+
*/
|
|
1562
2687
|
Timestamp?: Iso8601Timestamp;
|
|
2688
|
+
/**
|
|
2689
|
+
* The source IP address.
|
|
2690
|
+
*/
|
|
1563
2691
|
Source?: String;
|
|
1564
2692
|
}
|
|
1565
2693
|
export type TollFreePrefix = string;
|
|
1566
2694
|
export interface UntagResourceRequest {
|
|
2695
|
+
/**
|
|
2696
|
+
* The ARN of the resource having its tags removed.
|
|
2697
|
+
*/
|
|
1567
2698
|
ResourceARN: Arn;
|
|
2699
|
+
/**
|
|
2700
|
+
* The keys of the tags being removed from the resource.
|
|
2701
|
+
*/
|
|
1568
2702
|
TagKeys: TagKeyList;
|
|
1569
2703
|
}
|
|
1570
2704
|
export interface UpdateGlobalSettingsRequest {
|
|
2705
|
+
/**
|
|
2706
|
+
* The Voice Connector settings.
|
|
2707
|
+
*/
|
|
1571
2708
|
VoiceConnector?: VoiceConnectorSettings;
|
|
1572
2709
|
}
|
|
1573
2710
|
export interface UpdatePhoneNumberRequest {
|
|
2711
|
+
/**
|
|
2712
|
+
* The phone number ID.
|
|
2713
|
+
*/
|
|
1574
2714
|
PhoneNumberId: SensitiveNonEmptyString;
|
|
2715
|
+
/**
|
|
2716
|
+
* The product type.
|
|
2717
|
+
*/
|
|
1575
2718
|
ProductType?: PhoneNumberProductType;
|
|
2719
|
+
/**
|
|
2720
|
+
* The outbound calling name associated with the phone number.
|
|
2721
|
+
*/
|
|
1576
2722
|
CallingName?: CallingName;
|
|
1577
2723
|
}
|
|
1578
2724
|
export interface UpdatePhoneNumberRequestItem {
|
|
2725
|
+
/**
|
|
2726
|
+
* The phone number ID to update.
|
|
2727
|
+
*/
|
|
1579
2728
|
PhoneNumberId: SensitiveNonEmptyString;
|
|
2729
|
+
/**
|
|
2730
|
+
* The product type to update.
|
|
2731
|
+
*/
|
|
1580
2732
|
ProductType?: PhoneNumberProductType;
|
|
2733
|
+
/**
|
|
2734
|
+
* The outbound calling name to update.
|
|
2735
|
+
*/
|
|
1581
2736
|
CallingName?: CallingName;
|
|
1582
2737
|
}
|
|
1583
2738
|
export type UpdatePhoneNumberRequestItemList = UpdatePhoneNumberRequestItem[];
|
|
1584
2739
|
export interface UpdatePhoneNumberResponse {
|
|
2740
|
+
/**
|
|
2741
|
+
* The updated phone number details.
|
|
2742
|
+
*/
|
|
1585
2743
|
PhoneNumber?: PhoneNumber;
|
|
1586
2744
|
}
|
|
1587
2745
|
export interface UpdatePhoneNumberSettingsRequest {
|
|
2746
|
+
/**
|
|
2747
|
+
* The default outbound calling name for the account.
|
|
2748
|
+
*/
|
|
1588
2749
|
CallingName: CallingName;
|
|
1589
2750
|
}
|
|
1590
2751
|
export interface UpdateProxySessionRequest {
|
|
2752
|
+
/**
|
|
2753
|
+
* The Voice Connector ID.
|
|
2754
|
+
*/
|
|
1591
2755
|
VoiceConnectorId: NonEmptyString128;
|
|
2756
|
+
/**
|
|
2757
|
+
* The proxy session ID.
|
|
2758
|
+
*/
|
|
1592
2759
|
ProxySessionId: NonEmptyString128;
|
|
2760
|
+
/**
|
|
2761
|
+
* The proxy session capabilities.
|
|
2762
|
+
*/
|
|
1593
2763
|
Capabilities: CapabilityList;
|
|
2764
|
+
/**
|
|
2765
|
+
* The number of minutes allowed for the proxy session.
|
|
2766
|
+
*/
|
|
1594
2767
|
ExpiryMinutes?: PositiveInteger;
|
|
1595
2768
|
}
|
|
1596
2769
|
export interface UpdateProxySessionResponse {
|
|
2770
|
+
/**
|
|
2771
|
+
* The updated proxy session details.
|
|
2772
|
+
*/
|
|
1597
2773
|
ProxySession?: ProxySession;
|
|
1598
2774
|
}
|
|
1599
2775
|
export interface UpdateSipMediaApplicationCallRequest {
|
|
2776
|
+
/**
|
|
2777
|
+
* The ID of the SIP media application handling the call.
|
|
2778
|
+
*/
|
|
1600
2779
|
SipMediaApplicationId: NonEmptyString;
|
|
2780
|
+
/**
|
|
2781
|
+
* The ID of the call transaction.
|
|
2782
|
+
*/
|
|
1601
2783
|
TransactionId: NonEmptyString;
|
|
2784
|
+
/**
|
|
2785
|
+
* Arguments made available to the Lambda function as part of the CALL_UPDATE_REQUESTED event. Can contain 0-20 key-value pairs.
|
|
2786
|
+
*/
|
|
1602
2787
|
Arguments: SMAUpdateCallArgumentsMap;
|
|
1603
2788
|
}
|
|
1604
2789
|
export interface UpdateSipMediaApplicationCallResponse {
|
|
2790
|
+
/**
|
|
2791
|
+
* A Call instance for a SIP media application.
|
|
2792
|
+
*/
|
|
1605
2793
|
SipMediaApplicationCall?: SipMediaApplicationCall;
|
|
1606
2794
|
}
|
|
1607
2795
|
export interface UpdateSipMediaApplicationRequest {
|
|
2796
|
+
/**
|
|
2797
|
+
* The SIP media application ID.
|
|
2798
|
+
*/
|
|
1608
2799
|
SipMediaApplicationId: NonEmptyString;
|
|
2800
|
+
/**
|
|
2801
|
+
* The new name for the specified SIP media application.
|
|
2802
|
+
*/
|
|
1609
2803
|
Name?: SipMediaApplicationName;
|
|
2804
|
+
/**
|
|
2805
|
+
* The new set of endpoints for the specified SIP media application.
|
|
2806
|
+
*/
|
|
1610
2807
|
Endpoints?: SipMediaApplicationEndpointList;
|
|
1611
2808
|
}
|
|
1612
2809
|
export interface UpdateSipMediaApplicationResponse {
|
|
2810
|
+
/**
|
|
2811
|
+
* The updated SIP media application’s details.
|
|
2812
|
+
*/
|
|
1613
2813
|
SipMediaApplication?: SipMediaApplication;
|
|
1614
2814
|
}
|
|
1615
2815
|
export interface UpdateSipRuleRequest {
|
|
2816
|
+
/**
|
|
2817
|
+
* The SIP rule ID.
|
|
2818
|
+
*/
|
|
1616
2819
|
SipRuleId: NonEmptyString;
|
|
2820
|
+
/**
|
|
2821
|
+
* The new name for the specified SIP rule.
|
|
2822
|
+
*/
|
|
1617
2823
|
Name: SipRuleName;
|
|
2824
|
+
/**
|
|
2825
|
+
* The new value that indicates whether the rule is disabled.
|
|
2826
|
+
*/
|
|
1618
2827
|
Disabled?: NullableBoolean;
|
|
2828
|
+
/**
|
|
2829
|
+
* The new list of target applications.
|
|
2830
|
+
*/
|
|
1619
2831
|
TargetApplications?: SipRuleTargetApplicationList;
|
|
1620
2832
|
}
|
|
1621
2833
|
export interface UpdateSipRuleResponse {
|
|
2834
|
+
/**
|
|
2835
|
+
* The updated SIP rule details.
|
|
2836
|
+
*/
|
|
1622
2837
|
SipRule?: SipRule;
|
|
1623
2838
|
}
|
|
1624
2839
|
export interface UpdateVoiceConnectorGroupRequest {
|
|
2840
|
+
/**
|
|
2841
|
+
* The Voice Connector ID.
|
|
2842
|
+
*/
|
|
1625
2843
|
VoiceConnectorGroupId: NonEmptyString;
|
|
2844
|
+
/**
|
|
2845
|
+
* The name of the Voice Connector group.
|
|
2846
|
+
*/
|
|
1626
2847
|
Name: VoiceConnectorGroupName;
|
|
2848
|
+
/**
|
|
2849
|
+
* The VoiceConnectorItems to associate with the Voice Connector group.
|
|
2850
|
+
*/
|
|
1627
2851
|
VoiceConnectorItems: VoiceConnectorItemList;
|
|
1628
2852
|
}
|
|
1629
2853
|
export interface UpdateVoiceConnectorGroupResponse {
|
|
2854
|
+
/**
|
|
2855
|
+
* The updated Voice Connector group.
|
|
2856
|
+
*/
|
|
1630
2857
|
VoiceConnectorGroup?: VoiceConnectorGroup;
|
|
1631
2858
|
}
|
|
1632
2859
|
export interface UpdateVoiceConnectorRequest {
|
|
2860
|
+
/**
|
|
2861
|
+
* The Voice Connector ID.
|
|
2862
|
+
*/
|
|
1633
2863
|
VoiceConnectorId: NonEmptyString;
|
|
2864
|
+
/**
|
|
2865
|
+
* The name of the Voice Connector.
|
|
2866
|
+
*/
|
|
1634
2867
|
Name: VoiceConnectorName;
|
|
2868
|
+
/**
|
|
2869
|
+
* When enabled, requires encryption for the Voice Connector.
|
|
2870
|
+
*/
|
|
1635
2871
|
RequireEncryption: Boolean;
|
|
1636
2872
|
}
|
|
1637
2873
|
export interface UpdateVoiceConnectorResponse {
|
|
2874
|
+
/**
|
|
2875
|
+
* The updated Voice Connector details.
|
|
2876
|
+
*/
|
|
1638
2877
|
VoiceConnector?: VoiceConnector;
|
|
1639
2878
|
}
|
|
1640
2879
|
export interface UpdateVoiceProfileDomainRequest {
|
|
2880
|
+
/**
|
|
2881
|
+
* The domain ID.
|
|
2882
|
+
*/
|
|
1641
2883
|
VoiceProfileDomainId: NonEmptyString256;
|
|
2884
|
+
/**
|
|
2885
|
+
* The name of the voice profile domain.
|
|
2886
|
+
*/
|
|
1642
2887
|
Name?: VoiceProfileDomainName;
|
|
2888
|
+
/**
|
|
2889
|
+
* The description of the voice profile domain.
|
|
2890
|
+
*/
|
|
1643
2891
|
Description?: VoiceProfileDomainDescription;
|
|
1644
2892
|
}
|
|
1645
2893
|
export interface UpdateVoiceProfileDomainResponse {
|
|
2894
|
+
/**
|
|
2895
|
+
* The updated details of the voice profile domain.
|
|
2896
|
+
*/
|
|
1646
2897
|
VoiceProfileDomain?: VoiceProfileDomain;
|
|
1647
2898
|
}
|
|
1648
2899
|
export interface UpdateVoiceProfileRequest {
|
|
2900
|
+
/**
|
|
2901
|
+
* The profile ID.
|
|
2902
|
+
*/
|
|
1649
2903
|
VoiceProfileId: NonEmptyString256;
|
|
2904
|
+
/**
|
|
2905
|
+
* The ID of the speaker search task.
|
|
2906
|
+
*/
|
|
1650
2907
|
SpeakerSearchTaskId: NonEmptyString256;
|
|
1651
2908
|
}
|
|
1652
2909
|
export interface UpdateVoiceProfileResponse {
|
|
2910
|
+
/**
|
|
2911
|
+
* The updated voice profile settings.
|
|
2912
|
+
*/
|
|
1653
2913
|
VoiceProfile?: VoiceProfile;
|
|
1654
2914
|
}
|
|
1655
2915
|
export interface ValidateE911AddressRequest {
|
|
2916
|
+
/**
|
|
2917
|
+
* The AWS account ID.
|
|
2918
|
+
*/
|
|
1656
2919
|
AwsAccountId: NonEmptyString;
|
|
2920
|
+
/**
|
|
2921
|
+
* The address street number, such as 200 or 2121.
|
|
2922
|
+
*/
|
|
1657
2923
|
StreetNumber: SensitiveNonEmptyString;
|
|
2924
|
+
/**
|
|
2925
|
+
* The address street information, such as 8th Avenue.
|
|
2926
|
+
*/
|
|
1658
2927
|
StreetInfo: SensitiveNonEmptyString;
|
|
2928
|
+
/**
|
|
2929
|
+
* The address city, such as Portland.
|
|
2930
|
+
*/
|
|
1659
2931
|
City: SensitiveNonEmptyString;
|
|
2932
|
+
/**
|
|
2933
|
+
* The address state, such as ME.
|
|
2934
|
+
*/
|
|
1660
2935
|
State: SensitiveNonEmptyString;
|
|
2936
|
+
/**
|
|
2937
|
+
* The country in the address being validated.
|
|
2938
|
+
*/
|
|
1661
2939
|
Country: SensitiveNonEmptyString;
|
|
2940
|
+
/**
|
|
2941
|
+
* The dress postal code, such 04352.
|
|
2942
|
+
*/
|
|
1662
2943
|
PostalCode: SensitiveNonEmptyString;
|
|
1663
2944
|
}
|
|
1664
2945
|
export interface ValidateE911AddressResponse {
|
|
2946
|
+
/**
|
|
2947
|
+
* Number indicating the result of address validation. 0 means the address was perfect as-is and successfully validated. 1 means the address was corrected. 2 means the address sent was not close enough and was not validated.
|
|
2948
|
+
*/
|
|
1665
2949
|
ValidationResult?: ValidationResult;
|
|
2950
|
+
/**
|
|
2951
|
+
* The ID that represents the address.
|
|
2952
|
+
*/
|
|
1666
2953
|
AddressExternalId?: String;
|
|
2954
|
+
/**
|
|
2955
|
+
* The validated address.
|
|
2956
|
+
*/
|
|
1667
2957
|
Address?: Address;
|
|
2958
|
+
/**
|
|
2959
|
+
* The list of address suggestions..
|
|
2960
|
+
*/
|
|
1668
2961
|
CandidateAddressList?: CandidateAddressList;
|
|
1669
2962
|
}
|
|
1670
2963
|
export type ValidationResult = number;
|
|
1671
2964
|
export interface VoiceConnector {
|
|
2965
|
+
/**
|
|
2966
|
+
* The Voice Connector's ID.
|
|
2967
|
+
*/
|
|
1672
2968
|
VoiceConnectorId?: NonEmptyString;
|
|
2969
|
+
/**
|
|
2970
|
+
* The AWS Region in which the Voice Connector is created. Default: us-east-1.
|
|
2971
|
+
*/
|
|
1673
2972
|
AwsRegion?: VoiceConnectorAwsRegion;
|
|
2973
|
+
/**
|
|
2974
|
+
* The Voice Connector's name.
|
|
2975
|
+
*/
|
|
1674
2976
|
Name?: VoiceConnectorName;
|
|
2977
|
+
/**
|
|
2978
|
+
* The outbound host name for the Voice Connector.
|
|
2979
|
+
*/
|
|
1675
2980
|
OutboundHostName?: String;
|
|
2981
|
+
/**
|
|
2982
|
+
* Enables or disables encryption for the Voice Connector.
|
|
2983
|
+
*/
|
|
1676
2984
|
RequireEncryption?: Boolean;
|
|
2985
|
+
/**
|
|
2986
|
+
* The Voice Connector's creation timestamp, in ISO 8601 format.
|
|
2987
|
+
*/
|
|
1677
2988
|
CreatedTimestamp?: Iso8601Timestamp;
|
|
2989
|
+
/**
|
|
2990
|
+
* The Voice Connector's updated timestamp, in ISO 8601 format.
|
|
2991
|
+
*/
|
|
1678
2992
|
UpdatedTimestamp?: Iso8601Timestamp;
|
|
2993
|
+
/**
|
|
2994
|
+
* The ARN of the Voice Connector.
|
|
2995
|
+
*/
|
|
1679
2996
|
VoiceConnectorArn?: NonEmptyString;
|
|
1680
2997
|
}
|
|
1681
2998
|
export type VoiceConnectorAwsRegion = "us-east-1"|"us-west-2"|"ca-central-1"|"eu-central-1"|"eu-west-1"|"eu-west-2"|"ap-northeast-2"|"ap-northeast-1"|"ap-southeast-1"|"ap-southeast-2"|string;
|
|
1682
2999
|
export type VoiceConnectorAwsRegionList = VoiceConnectorAwsRegion[];
|
|
1683
3000
|
export interface VoiceConnectorGroup {
|
|
3001
|
+
/**
|
|
3002
|
+
* The ID of a Voice Connector group.
|
|
3003
|
+
*/
|
|
1684
3004
|
VoiceConnectorGroupId?: NonEmptyString;
|
|
3005
|
+
/**
|
|
3006
|
+
* The name of a Voice Connector group.
|
|
3007
|
+
*/
|
|
1685
3008
|
Name?: VoiceConnectorGroupName;
|
|
3009
|
+
/**
|
|
3010
|
+
* The Voice Connectors to which you route inbound calls.
|
|
3011
|
+
*/
|
|
1686
3012
|
VoiceConnectorItems?: VoiceConnectorItemList;
|
|
3013
|
+
/**
|
|
3014
|
+
* The Voice Connector group's creation time stamp, in ISO 8601 format.
|
|
3015
|
+
*/
|
|
1687
3016
|
CreatedTimestamp?: Iso8601Timestamp;
|
|
3017
|
+
/**
|
|
3018
|
+
* The Voice Connector group's creation time stamp, in ISO 8601 format.
|
|
3019
|
+
*/
|
|
1688
3020
|
UpdatedTimestamp?: Iso8601Timestamp;
|
|
3021
|
+
/**
|
|
3022
|
+
* The ARN of the Voice Connector group.
|
|
3023
|
+
*/
|
|
1689
3024
|
VoiceConnectorGroupArn?: NonEmptyString;
|
|
1690
3025
|
}
|
|
1691
3026
|
export type VoiceConnectorGroupList = VoiceConnectorGroup[];
|
|
1692
3027
|
export type VoiceConnectorGroupName = string;
|
|
1693
3028
|
export interface VoiceConnectorItem {
|
|
3029
|
+
/**
|
|
3030
|
+
* The Voice Connector ID.
|
|
3031
|
+
*/
|
|
1694
3032
|
VoiceConnectorId: NonEmptyString;
|
|
3033
|
+
/**
|
|
3034
|
+
* The priority setting of a Voice Connector item. Calls are routed to hosts in priority order, with 1 as the highest priority. When hosts have equal priority, the system distributes calls among them based on their relative weight.
|
|
3035
|
+
*/
|
|
1695
3036
|
Priority: VoiceConnectorItemPriority;
|
|
1696
3037
|
}
|
|
1697
3038
|
export type VoiceConnectorItemList = VoiceConnectorItem[];
|
|
@@ -1699,52 +3040,151 @@ declare namespace ChimeSDKVoice {
|
|
|
1699
3040
|
export type VoiceConnectorList = VoiceConnector[];
|
|
1700
3041
|
export type VoiceConnectorName = string;
|
|
1701
3042
|
export interface VoiceConnectorSettings {
|
|
3043
|
+
/**
|
|
3044
|
+
* The S3 bucket that stores the Voice Connector's call detail records.
|
|
3045
|
+
*/
|
|
1702
3046
|
CdrBucket?: String;
|
|
1703
3047
|
}
|
|
1704
3048
|
export interface VoiceProfile {
|
|
3049
|
+
/**
|
|
3050
|
+
* The ID of the voice profile.
|
|
3051
|
+
*/
|
|
1705
3052
|
VoiceProfileId?: NonEmptyString256;
|
|
3053
|
+
/**
|
|
3054
|
+
* The ARN of the voice profile.
|
|
3055
|
+
*/
|
|
1706
3056
|
VoiceProfileArn?: Arn;
|
|
3057
|
+
/**
|
|
3058
|
+
* The ID of the domain that contains the voice profile.
|
|
3059
|
+
*/
|
|
1707
3060
|
VoiceProfileDomainId?: NonEmptyString256;
|
|
3061
|
+
/**
|
|
3062
|
+
* The time at which the voice profile was created and enrolled.
|
|
3063
|
+
*/
|
|
1708
3064
|
CreatedTimestamp?: Iso8601Timestamp;
|
|
3065
|
+
/**
|
|
3066
|
+
* The time at which the voice profile was last updated.
|
|
3067
|
+
*/
|
|
1709
3068
|
UpdatedTimestamp?: Iso8601Timestamp;
|
|
3069
|
+
/**
|
|
3070
|
+
* The time at which a voice profile expires unless you re-enroll the caller via the UpdateVoiceProfile API.
|
|
3071
|
+
*/
|
|
1710
3072
|
ExpirationTimestamp?: Iso8601Timestamp;
|
|
1711
3073
|
}
|
|
1712
3074
|
export interface VoiceProfileDomain {
|
|
3075
|
+
/**
|
|
3076
|
+
* The ID of the voice profile domain.
|
|
3077
|
+
*/
|
|
1713
3078
|
VoiceProfileDomainId?: NonEmptyString256;
|
|
3079
|
+
/**
|
|
3080
|
+
* The voice profile domain's Amazon Resource Number (ARN).
|
|
3081
|
+
*/
|
|
1714
3082
|
VoiceProfileDomainArn?: Arn;
|
|
3083
|
+
/**
|
|
3084
|
+
* The name of the voice profile domain.
|
|
3085
|
+
*/
|
|
1715
3086
|
Name?: VoiceProfileDomainName;
|
|
3087
|
+
/**
|
|
3088
|
+
* The description of the voice profile domain.
|
|
3089
|
+
*/
|
|
1716
3090
|
Description?: VoiceProfileDomainDescription;
|
|
3091
|
+
/**
|
|
3092
|
+
* A structure that contains the configuration settings for server-side encryption.
|
|
3093
|
+
*/
|
|
1717
3094
|
ServerSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
|
|
3095
|
+
/**
|
|
3096
|
+
* The time at which the voice profile domain was created.
|
|
3097
|
+
*/
|
|
1718
3098
|
CreatedTimestamp?: Iso8601Timestamp;
|
|
3099
|
+
/**
|
|
3100
|
+
* The time at which the voice profile was last updated.
|
|
3101
|
+
*/
|
|
1719
3102
|
UpdatedTimestamp?: Iso8601Timestamp;
|
|
1720
3103
|
}
|
|
1721
3104
|
export type VoiceProfileDomainDescription = string;
|
|
1722
3105
|
export type VoiceProfileDomainName = string;
|
|
1723
3106
|
export interface VoiceProfileDomainSummary {
|
|
3107
|
+
/**
|
|
3108
|
+
* The ID of the voice profile domain summary.
|
|
3109
|
+
*/
|
|
1724
3110
|
VoiceProfileDomainId?: NonEmptyString256;
|
|
3111
|
+
/**
|
|
3112
|
+
* The ARN of a voice profile in a voice profile domain summary.
|
|
3113
|
+
*/
|
|
1725
3114
|
VoiceProfileDomainArn?: Arn;
|
|
3115
|
+
/**
|
|
3116
|
+
* The name of the voice profile domain summary.
|
|
3117
|
+
*/
|
|
1726
3118
|
Name?: VoiceProfileDomainName;
|
|
3119
|
+
/**
|
|
3120
|
+
* Describes the voice profile domain summary.
|
|
3121
|
+
*/
|
|
1727
3122
|
Description?: VoiceProfileDomainDescription;
|
|
3123
|
+
/**
|
|
3124
|
+
* The time at which the voice profile domain summary was created.
|
|
3125
|
+
*/
|
|
1728
3126
|
CreatedTimestamp?: Iso8601Timestamp;
|
|
3127
|
+
/**
|
|
3128
|
+
* The time at which the voice profile domain summary was last updated.
|
|
3129
|
+
*/
|
|
1729
3130
|
UpdatedTimestamp?: Iso8601Timestamp;
|
|
1730
3131
|
}
|
|
1731
3132
|
export type VoiceProfileDomainSummaryList = VoiceProfileDomainSummary[];
|
|
1732
3133
|
export interface VoiceProfileSummary {
|
|
3134
|
+
/**
|
|
3135
|
+
* The ID of the voice profile in a voice profile summary.
|
|
3136
|
+
*/
|
|
1733
3137
|
VoiceProfileId?: NonEmptyString256;
|
|
3138
|
+
/**
|
|
3139
|
+
* The ARN of the voice profile in a voice profile summary.
|
|
3140
|
+
*/
|
|
1734
3141
|
VoiceProfileArn?: Arn;
|
|
3142
|
+
/**
|
|
3143
|
+
* The ID of the voice profile domain in a voice profile summary.
|
|
3144
|
+
*/
|
|
1735
3145
|
VoiceProfileDomainId?: NonEmptyString256;
|
|
3146
|
+
/**
|
|
3147
|
+
* The time at which a voice profile summary was created.
|
|
3148
|
+
*/
|
|
1736
3149
|
CreatedTimestamp?: Iso8601Timestamp;
|
|
3150
|
+
/**
|
|
3151
|
+
* The time at which a voice profile summary was last updated.
|
|
3152
|
+
*/
|
|
1737
3153
|
UpdatedTimestamp?: Iso8601Timestamp;
|
|
3154
|
+
/**
|
|
3155
|
+
* Extends the life of the voice profile. You can use UpdateVoiceProfile to refresh an existing voice profile's voice print and extend the life of the summary.
|
|
3156
|
+
*/
|
|
1738
3157
|
ExpirationTimestamp?: Iso8601Timestamp;
|
|
1739
3158
|
}
|
|
1740
3159
|
export type VoiceProfileSummaryList = VoiceProfileSummary[];
|
|
1741
3160
|
export interface VoiceToneAnalysisTask {
|
|
3161
|
+
/**
|
|
3162
|
+
* The ID of the voice tone analysis task.
|
|
3163
|
+
*/
|
|
1742
3164
|
VoiceToneAnalysisTaskId?: NonEmptyString256;
|
|
3165
|
+
/**
|
|
3166
|
+
* The status of a voice tone analysis task, IN_QUEUE, IN_PROGRESS, PARTIAL_SUCCESS, SUCCEEDED, FAILED, or STOPPED.
|
|
3167
|
+
*/
|
|
1743
3168
|
VoiceToneAnalysisTaskStatus?: NonEmptyString;
|
|
3169
|
+
/**
|
|
3170
|
+
* The call details of a voice tone analysis task.
|
|
3171
|
+
*/
|
|
1744
3172
|
CallDetails?: CallDetails;
|
|
3173
|
+
/**
|
|
3174
|
+
* The time at which a voice tone analysis task was created.
|
|
3175
|
+
*/
|
|
1745
3176
|
CreatedTimestamp?: Iso8601Timestamp;
|
|
3177
|
+
/**
|
|
3178
|
+
* The time at which a voice tone analysis task was updated.
|
|
3179
|
+
*/
|
|
1746
3180
|
UpdatedTimestamp?: Iso8601Timestamp;
|
|
3181
|
+
/**
|
|
3182
|
+
* The time at which a voice tone analysis task started.
|
|
3183
|
+
*/
|
|
1747
3184
|
StartedTimestamp?: Iso8601Timestamp;
|
|
3185
|
+
/**
|
|
3186
|
+
* The status of a voice tone analysis task.
|
|
3187
|
+
*/
|
|
1748
3188
|
StatusMessage?: String;
|
|
1749
3189
|
}
|
|
1750
3190
|
/**
|