Skip to content

Commit f7b6683

Browse files
author
awstools
committed
feat(client-connect): This release updates these APIs: UpdateInstanceAttribute, DescribeInstanceAttribute and ListInstanceAttributes. You can use it to programmatically enable/disable multi-party conferencing using attribute type MULTI_PARTY_CONFERENCING on the specified Amazon Connect instance.
1 parent 549b088 commit f7b6683

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

clients/client-connect/src/Connect.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3892,9 +3892,6 @@ export class Connect extends ConnectClient {
38923892
* <p>Ends the specified contact. This call does not work for the following initiation methods:</p>
38933893
* <ul>
38943894
* <li>
3895-
* <p>CALLBACK</p>
3896-
* </li>
3897-
* <li>
38983895
* <p>DISCONNECT</p>
38993896
* </li>
39003897
* <li>

clients/client-connect/src/commands/StopContactCommand.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ export interface StopContactCommandOutput extends StopContactResponse, __Metadat
2525
* <p>Ends the specified contact. This call does not work for the following initiation methods:</p>
2626
* <ul>
2727
* <li>
28-
* <p>CALLBACK</p>
29-
* </li>
30-
* <li>
3128
* <p>DISCONNECT</p>
3229
* </li>
3330
* <li>

clients/client-connect/src/models/models_0.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3212,6 +3212,7 @@ export enum InstanceAttributeType {
32123212
CONTACT_LENS = "CONTACT_LENS",
32133213
EARLY_MEDIA = "EARLY_MEDIA",
32143214
INBOUND_CALLS = "INBOUND_CALLS",
3215+
MULTI_PARTY_CONFERENCE = "MULTI_PARTY_CONFERENCE",
32153216
OUTBOUND_CALLS = "OUTBOUND_CALLS",
32163217
USE_CUSTOM_TTS_VOICES = "USE_CUSTOM_TTS_VOICES",
32173218
}

codegen/sdk-codegen/aws-models/connect.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7204,6 +7204,10 @@
72047204
{
72057205
"value": "EARLY_MEDIA",
72067206
"name": "EARLY_MEDIA"
7207+
},
7208+
{
7209+
"value": "MULTI_PARTY_CONFERENCE",
7210+
"name": "MULTI_PARTY_CONFERENCE"
72077211
}
72087212
]
72097213
}
@@ -13390,7 +13394,7 @@
1339013394
}
1339113395
],
1339213396
"traits": {
13393-
"smithy.api#documentation": "<p>Ends the specified contact. This call does not work for the following initiation methods:</p>\n <ul>\n <li>\n <p>CALLBACK</p>\n </li>\n <li>\n <p>DISCONNECT</p>\n </li>\n <li>\n <p>TRANSFER</p>\n </li>\n <li>\n <p>QUEUE_TRANSFER</p>\n </li>\n </ul>",
13397+
"smithy.api#documentation": "<p>Ends the specified contact. This call does not work for the following initiation methods:</p>\n <ul>\n <li>\n <p>DISCONNECT</p>\n </li>\n <li>\n <p>TRANSFER</p>\n </li>\n <li>\n <p>QUEUE_TRANSFER</p>\n </li>\n </ul>",
1339413398
"smithy.api#http": {
1339513399
"method": "POST",
1339613400
"uri": "/contact/stop",

0 commit comments

Comments
 (0)