aws-sdk-connect 1.278.0 → 1.280.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9befc78eb715b6a68104bc020ded0141da04cca6763d9396602a1d6b2b07e305
4
- data.tar.gz: 7367f10eee29debf4bafc35b53dcad6ba01ad6cd39b67885672e9bd843f46628
3
+ metadata.gz: d669d5558e140758c7e30a57adb114332f87a6cd17a4d4b7b9ca2d20ddc798bf
4
+ data.tar.gz: fb6250c92571b1b593f426b6790537eb757af7769cbc9a99f5aa11ac151c02ad
5
5
  SHA512:
6
- metadata.gz: e36d0ef878d471a7b7459384b5546c827853ae1464d9913e1ce7ce689b607c933c5fd89a56569c3e111d917aa01ad5fb7e575ddb4f133da024d831cd3d23ab29
7
- data.tar.gz: f0f914b685490ef97f514de5f2c17b4a62780c6696bcdc9ec765832473179ef0ef189e4f4e71e72667bdb4f533db327adad35d40c7ac40d64b59596104acf23f
6
+ metadata.gz: 7e7edadf693508236fc29202ea0cb3373a56ec7a45ca0579b1547be3bf8fc8ca75b7e8167d26987e63cca5f7c690d1b9a0756fb7333a093e62ee520918790d45
7
+ data.tar.gz: dc8b5310b44af965f7bb9d6a10c6c4228a626773820ce2693547d17d13ff9c43ddc8fce0abb52398db4c480c96a9a6173c89ff2bafc1af313ddd6b884aecf68b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.280.0 (2026-09-17)
5
+ ------------------
6
+
7
+ * Feature - Made the replicaAlias attribute optional in the ReplicateInstance API to support Global routing for Amazon Connect Global Resiliency (ACGR) instances. This change maintains backward compatibility. When onboarding to ACGR without Global routing, you must specify a custom replicaAlias in your API call
8
+
9
+ 1.279.0 (2026-09-16)
10
+ ------------------
11
+
12
+ * Feature - Adds support for ContactAnalysis via ListContactReferences.
13
+
4
14
  1.278.0 (2026-09-11)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.278.0
1
+ 1.280.0
@@ -16559,6 +16559,12 @@ module Aws::Connect
16559
16559
  # resp.reference_summary_list[0].date.value #=> String
16560
16560
  # resp.reference_summary_list[0].email.name #=> String
16561
16561
  # resp.reference_summary_list[0].email.value #=> String
16562
+ # resp.reference_summary_list[0].contact_analysis.name #=> String
16563
+ # resp.reference_summary_list[0].contact_analysis.value #=> String
16564
+ # resp.reference_summary_list[0].contact_analysis.status #=> String, one of "AVAILABLE", "DELETED", "APPROVED", "REJECTED", "PROCESSING", "FAILED"
16565
+ # resp.reference_summary_list[0].contact_analysis.arn #=> String
16566
+ # resp.reference_summary_list[0].contact_analysis.analytics_mode #=> String, one of "PostContact", "RealTime", "ContactLens", "AutomatedInteraction"
16567
+ # resp.reference_summary_list[0].contact_analysis.is_redacted #=> Boolean
16562
16568
  # resp.next_token #=> String
16563
16569
  #
16564
16570
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactReferences AWS API Documentation
@@ -20313,7 +20319,7 @@ module Aws::Connect
20313
20319
  #
20314
20320
  # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
20315
20321
  #
20316
- # @option params [required, String] :replica_alias
20322
+ # @option params [String] :replica_alias
20317
20323
  # The alias for the replicated instance. The `ReplicaAlias` must be
20318
20324
  # unique.
20319
20325
  #
@@ -20328,7 +20334,7 @@ module Aws::Connect
20328
20334
  # instance_id: "ACGRInstanceIdOrArn", # required
20329
20335
  # replica_region: "AwsRegion", # required
20330
20336
  # client_token: "ClientToken",
20331
- # replica_alias: "DirectoryAlias", # required
20337
+ # replica_alias: "DirectoryAlias",
20332
20338
  # })
20333
20339
  #
20334
20340
  # @example Response structure
@@ -31536,7 +31542,7 @@ module Aws::Connect
31536
31542
  tracer: tracer
31537
31543
  )
31538
31544
  context[:gem_name] = 'aws-sdk-connect'
31539
- context[:gem_version] = '1.278.0'
31545
+ context[:gem_version] = '1.280.0'
31540
31546
  Seahorse::Client::Request.new(handlers, context)
31541
31547
  end
31542
31548
 
@@ -287,6 +287,7 @@ module Aws::Connect
287
287
  ConnectionData = Shapes::StructureShape.new(name: 'ConnectionData')
288
288
  Contact = Shapes::StructureShape.new(name: 'Contact')
289
289
  ContactAnalysis = Shapes::StructureShape.new(name: 'ContactAnalysis')
290
+ ContactAnalysisReference = Shapes::StructureShape.new(name: 'ContactAnalysisReference')
290
291
  ContactConfiguration = Shapes::StructureShape.new(name: 'ContactConfiguration')
291
292
  ContactDataRequest = Shapes::StructureShape.new(name: 'ContactDataRequest')
292
293
  ContactDataRequestList = Shapes::ListShape.new(name: 'ContactDataRequestList')
@@ -3200,6 +3201,14 @@ module Aws::Connect
3200
3201
  ContactAnalysis.add_member(:transcript, Shapes::ShapeRef.new(shape: Transcript, location_name: "Transcript"))
3201
3202
  ContactAnalysis.struct_class = Types::ContactAnalysis
3202
3203
 
3204
+ ContactAnalysisReference.add_member(:name, Shapes::ShapeRef.new(shape: ReferenceKey, location_name: "Name"))
3205
+ ContactAnalysisReference.add_member(:value, Shapes::ShapeRef.new(shape: ReferenceValue, location_name: "Value"))
3206
+ ContactAnalysisReference.add_member(:status, Shapes::ShapeRef.new(shape: ReferenceStatus, location_name: "Status"))
3207
+ ContactAnalysisReference.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
3208
+ ContactAnalysisReference.add_member(:analytics_mode, Shapes::ShapeRef.new(shape: AnalyticsMode, location_name: "AnalyticsMode"))
3209
+ ContactAnalysisReference.add_member(:is_redacted, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "IsRedacted"))
3210
+ ContactAnalysisReference.struct_class = Types::ContactAnalysisReference
3211
+
3203
3212
  ContactConfiguration.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, required: true, location_name: "ContactId"))
3204
3213
  ContactConfiguration.add_member(:participant_role, Shapes::ShapeRef.new(shape: ParticipantRole, location_name: "ParticipantRole"))
3205
3214
  ContactConfiguration.add_member(:include_raw_message, Shapes::ShapeRef.new(shape: IncludeRawMessage, location_name: "IncludeRawMessage"))
@@ -7881,6 +7890,7 @@ module Aws::Connect
7881
7890
  ReferenceSummary.add_member(:number, Shapes::ShapeRef.new(shape: NumberReference, location_name: "Number"))
7882
7891
  ReferenceSummary.add_member(:date, Shapes::ShapeRef.new(shape: DateReference, location_name: "Date"))
7883
7892
  ReferenceSummary.add_member(:email, Shapes::ShapeRef.new(shape: EmailReference, location_name: "Email"))
7893
+ ReferenceSummary.add_member(:contact_analysis, Shapes::ShapeRef.new(shape: ContactAnalysisReference, location_name: "ContactAnalysis"))
7884
7894
  ReferenceSummary.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
7885
7895
  ReferenceSummary.add_member_subclass(:url, Types::ReferenceSummary::Url)
7886
7896
  ReferenceSummary.add_member_subclass(:attachment, Types::ReferenceSummary::Attachment)
@@ -7892,6 +7902,7 @@ module Aws::Connect
7892
7902
  ReferenceSummary.add_member_subclass(:number, Types::ReferenceSummary::Number)
7893
7903
  ReferenceSummary.add_member_subclass(:date, Types::ReferenceSummary::Date)
7894
7904
  ReferenceSummary.add_member_subclass(:email, Types::ReferenceSummary::Email)
7905
+ ReferenceSummary.add_member_subclass(:contact_analysis, Types::ReferenceSummary::ContactAnalysis)
7895
7906
  ReferenceSummary.add_member_subclass(:unknown, Types::ReferenceSummary::Unknown)
7896
7907
  ReferenceSummary.struct_class = Types::ReferenceSummary
7897
7908
 
@@ -7906,7 +7917,7 @@ module Aws::Connect
7906
7917
  ReplicateInstanceRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: ACGRInstanceIdOrArn, required: true, location: "uri", location_name: "InstanceId"))
7907
7918
  ReplicateInstanceRequest.add_member(:replica_region, Shapes::ShapeRef.new(shape: AwsRegion, required: true, location_name: "ReplicaRegion"))
7908
7919
  ReplicateInstanceRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
7909
- ReplicateInstanceRequest.add_member(:replica_alias, Shapes::ShapeRef.new(shape: DirectoryAlias, required: true, location_name: "ReplicaAlias"))
7920
+ ReplicateInstanceRequest.add_member(:replica_alias, Shapes::ShapeRef.new(shape: DirectoryAlias, location_name: "ReplicaAlias"))
7910
7921
  ReplicateInstanceRequest.struct_class = Types::ReplicateInstanceRequest
7911
7922
 
7912
7923
  ReplicateInstanceResponse.add_member(:id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "Id"))
@@ -4068,6 +4068,47 @@ module Aws::Connect
4068
4068
  include Aws::Structure
4069
4069
  end
4070
4070
 
4071
+ # Information about a reference when the `referenceType` is
4072
+ # `CONTACT_ANALYSIS`. Otherwise, null.
4073
+ #
4074
+ # @!attribute [rw] name
4075
+ # Identifier of the contact analysis reference.
4076
+ # @return [String]
4077
+ #
4078
+ # @!attribute [rw] value
4079
+ # The location path of the contact analysis reference.
4080
+ # @return [String]
4081
+ #
4082
+ # @!attribute [rw] status
4083
+ # Status of the contact analysis reference type.
4084
+ # @return [String]
4085
+ #
4086
+ # @!attribute [rw] arn
4087
+ # The Amazon Resource Name (ARN) of the contact analysis reference.
4088
+ # @return [String]
4089
+ #
4090
+ # @!attribute [rw] analytics_mode
4091
+ # The analytics mode of the contact analysis.
4092
+ # @return [String]
4093
+ #
4094
+ # @!attribute [rw] is_redacted
4095
+ # Indicates whether sensitive data has been redacted from the contact
4096
+ # analysis.
4097
+ # @return [Boolean]
4098
+ #
4099
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactAnalysisReference AWS API Documentation
4100
+ #
4101
+ class ContactAnalysisReference < Struct.new(
4102
+ :name,
4103
+ :value,
4104
+ :status,
4105
+ :arn,
4106
+ :analytics_mode,
4107
+ :is_redacted)
4108
+ SENSITIVE = []
4109
+ include Aws::Structure
4110
+ end
4111
+
4071
4112
  # The contact configuration for push notification registration.
4072
4113
  #
4073
4114
  # @!attribute [rw] contact_id
@@ -29766,6 +29807,11 @@ module Aws::Connect
29766
29807
  # Otherwise, null.
29767
29808
  # @return [Types::EmailReference]
29768
29809
  #
29810
+ # @!attribute [rw] contact_analysis
29811
+ # Information about a reference when the `referenceType` is
29812
+ # `CONTACT_ANALYSIS`. Otherwise, null.
29813
+ # @return [Types::ContactAnalysisReference]
29814
+ #
29769
29815
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ReferenceSummary AWS API Documentation
29770
29816
  #
29771
29817
  class ReferenceSummary < Struct.new(
@@ -29779,6 +29825,7 @@ module Aws::Connect
29779
29825
  :number,
29780
29826
  :date,
29781
29827
  :email,
29828
+ :contact_analysis,
29782
29829
  :unknown)
29783
29830
  SENSITIVE = []
29784
29831
  include Aws::Structure
@@ -29794,6 +29841,7 @@ module Aws::Connect
29794
29841
  class Number < ReferenceSummary; end
29795
29842
  class Date < ReferenceSummary; end
29796
29843
  class Email < ReferenceSummary; end
29844
+ class ContactAnalysis < ReferenceSummary; end
29797
29845
  class Unknown < ReferenceSummary; end
29798
29846
  end
29799
29847
 
@@ -54,7 +54,7 @@ module Aws::Connect
54
54
  autoload :EndpointProvider, 'aws-sdk-connect/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-connect/endpoints'
56
56
 
57
- GEM_VERSION = '1.278.0'
57
+ GEM_VERSION = '1.280.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -3798,7 +3798,7 @@ module Aws
3798
3798
  instance_id: ::String,
3799
3799
  replica_region: ::String,
3800
3800
  ?client_token: ::String,
3801
- replica_alias: ::String
3801
+ ?replica_alias: ::String
3802
3802
  ) -> _ReplicateInstanceResponseSuccess
3803
3803
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ReplicateInstanceResponseSuccess
3804
3804
 
data/sig/types.rbs CHANGED
@@ -984,6 +984,16 @@ module Aws::Connect
984
984
  SENSITIVE: []
985
985
  end
986
986
 
987
+ class ContactAnalysisReference
988
+ attr_accessor name: ::String
989
+ attr_accessor value: ::String
990
+ attr_accessor status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")
991
+ attr_accessor arn: ::String
992
+ attr_accessor analytics_mode: ("PostContact" | "RealTime" | "ContactLens" | "AutomatedInteraction")
993
+ attr_accessor is_redacted: bool
994
+ SENSITIVE: []
995
+ end
996
+
987
997
  class ContactConfiguration
988
998
  attr_accessor contact_id: ::String
989
999
  attr_accessor participant_role: ("AGENT" | "CUSTOMER" | "SYSTEM" | "CUSTOM_BOT" | "SUPERVISOR")
@@ -6909,6 +6919,7 @@ module Aws::Connect
6909
6919
  attr_accessor number: Types::NumberReference
6910
6920
  attr_accessor date: Types::DateReference
6911
6921
  attr_accessor email: Types::EmailReference
6922
+ attr_accessor contact_analysis: Types::ContactAnalysisReference
6912
6923
  attr_accessor unknown: untyped
6913
6924
  SENSITIVE: []
6914
6925
 
@@ -6932,6 +6943,8 @@ module Aws::Connect
6932
6943
  end
6933
6944
  class Email < ReferenceSummary
6934
6945
  end
6946
+ class ContactAnalysis < ReferenceSummary
6947
+ end
6935
6948
  class Unknown < ReferenceSummary
6936
6949
  end
6937
6950
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.278.0
4
+ version: 1.280.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services