diff --git a/CHANGELOG.md b/CHANGELOG.md index f4c51b5211f..3bfccc0a903 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +Release v1.43.31 (2022-04-01) +=== + +### Service Client Updates +* `service/connect`: Updates service API and documentation + Release v1.43.30 (2022-03-31) === diff --git a/aws/endpoints/defaults.go b/aws/endpoints/defaults.go index 10f26d71cdb..e3208828bd6 100644 --- a/aws/endpoints/defaults.go +++ b/aws/endpoints/defaults.go @@ -2374,6 +2374,9 @@ var awsPartition = partition{ endpointKey{ Region: "ap-southeast-2", }: endpoint{}, + endpointKey{ + Region: "ca-central-1", + }: endpoint{}, endpointKey{ Region: "eu-central-1", }: endpoint{}, diff --git a/aws/version.go b/aws/version.go index 15c602281ec..c771b8c7cd9 100644 --- a/aws/version.go +++ b/aws/version.go @@ -5,4 +5,4 @@ package aws const SDKName = "aws-sdk-go" // SDKVersion is the version of this SDK -const SDKVersion = "1.43.30" +const SDKVersion = "1.43.31" diff --git a/models/apis/connect/2017-08-08/api-2.json b/models/apis/connect/2017-08-08/api-2.json index 93d3d8bbb61..89c521929e7 100644 --- a/models/apis/connect/2017-08-08/api-2.json +++ b/models/apis/connect/2017-08-08/api-2.json @@ -4474,7 +4474,8 @@ "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", - "EARLY_MEDIA" + "EARLY_MEDIA", + "MULTI_PARTY_CONFERENCE" ] }, "InstanceAttributeValue":{ diff --git a/models/apis/connect/2017-08-08/docs-2.json b/models/apis/connect/2017-08-08/docs-2.json index dfe7fc361c3..4fffff6f11a 100644 --- a/models/apis/connect/2017-08-08/docs-2.json +++ b/models/apis/connect/2017-08-08/docs-2.json @@ -99,7 +99,7 @@ "StartContactStreaming": "

Initiates real-time message streaming for a new chat contact.

For more information about message streaming, see Enable real-time chat message streaming in the Amazon Connect Administrator Guide.

", "StartOutboundVoiceContact": "

Places an outbound call to a contact, and then initiates the contact flow. It performs the actions in the contact flow that's specified (in ContactFlowId).

Agents do not initiate the outbound API, which means that they do not dial the contact. If the contact flow places an outbound call to a contact, and then puts the contact in queue, the call is then routed to the agent, like any other inbound case.

There is a 60-second dialing timeout for this operation. If the call is not connected after 60 seconds, it fails.

UK numbers with a 447 prefix are not allowed by default. Before you can dial these UK mobile numbers, you must submit a service quota increase request. For more information, see Amazon Connect Service Quotas in the Amazon Connect Administrator Guide.

Campaign calls are not allowed by default. Before you can make a call with TrafficType = CAMPAIGN, you must submit a service quota increase request. For more information, see Amazon Connect Service Quotas in the Amazon Connect Administrator Guide.

", "StartTaskContact": "

Initiates a contact flow to start a new task.

", - "StopContact": "

Ends the specified contact. This call does not work for the following initiation methods:

", + "StopContact": "

Ends the specified contact. This call does not work for the following initiation methods:

", "StopContactRecording": "

Stops recording a call when a contact is being recorded. StopContactRecording is a one-time action. If you use StopContactRecording to stop recording an ongoing call, you can't use StartContactRecording to restart it. For scenarios where the recording has started and you want to suspend it for sensitive information (for example, to collect a credit card number), and then restart it, use SuspendContactRecording and ResumeContactRecording.

Only voice recordings are supported at this time.

", "StopContactStreaming": "

Ends message streaming on a specified contact. To restart message streaming on that contact, call the StartContactStreaming API.

", "SuspendContactRecording": "

When a contact is being recorded, this API suspends recording the call. For example, you might suspend the call recording while collecting sensitive information, such as a credit card number. Then use ResumeContactRecording to restart recording.

The period of time that the recording is suspended is filled with silence in the final recording.

Only voice recordings are supported at this time.

", diff --git a/models/endpoints/endpoints.json b/models/endpoints/endpoints.json index a4ad2618f59..49493a71540 100644 --- a/models/endpoints/endpoints.json +++ b/models/endpoints/endpoints.json @@ -1304,6 +1304,7 @@ "ap-south-1" : { }, "ap-southeast-1" : { }, "ap-southeast-2" : { }, + "ca-central-1" : { }, "eu-central-1" : { }, "eu-west-1" : { }, "eu-west-2" : { }, diff --git a/service/connect/api.go b/service/connect/api.go index ed67294bf31..ff383a0ebca 100644 --- a/service/connect/api.go +++ b/service/connect/api.go @@ -11030,8 +11030,6 @@ func (c *Connect) StopContactRequest(input *StopContactInput) (req *request.Requ // Ends the specified contact. This call does not work for the following initiation // methods: // -// * CALLBACK -// // * DISCONNECT // // * TRANSFER @@ -37404,6 +37402,9 @@ const ( // InstanceAttributeTypeEarlyMedia is a InstanceAttributeType enum value InstanceAttributeTypeEarlyMedia = "EARLY_MEDIA" + + // InstanceAttributeTypeMultiPartyConference is a InstanceAttributeType enum value + InstanceAttributeTypeMultiPartyConference = "MULTI_PARTY_CONFERENCE" ) // InstanceAttributeType_Values returns all elements of the InstanceAttributeType enum @@ -37416,6 +37417,7 @@ func InstanceAttributeType_Values() []string { InstanceAttributeTypeAutoResolveBestVoices, InstanceAttributeTypeUseCustomTtsVoices, InstanceAttributeTypeEarlyMedia, + InstanceAttributeTypeMultiPartyConference, } }