aws-sdk-connect 1.171.0 → 1.173.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '00865e37884cedbfcd78ca71b82b193e8c33bde6b0d9484e3995a3f352ebeacb'
4
- data.tar.gz: 3f54e0b2f88b7e02f028554b8537e221d9215690894e6c7282c84ec7af1ba6b6
3
+ metadata.gz: f9bd5a387b9012ed1aff48bc271fec37681837347616154b1b6da0bf85060bec
4
+ data.tar.gz: 5e8b8d60127400c3864ae8a3af1338f1fa275378a7415c77d3b28c7192ff3acb
5
5
  SHA512:
6
- metadata.gz: 1ec2d885bcbdd3d769a65276fa810236448a141e8656aef2fb8b4e57137bf978a09972817a8ac4bcf7444fe30e6ec5b79f7442806f97801243a39eb718c663f2
7
- data.tar.gz: 69a77a8c6850e27b82a9f28682f9d850534c586e71a53d2b69a17cbee80bcf4639309b8e6c60f913eeb11ea21bd8377986e33b072b4b78112234dbac93c82aae
6
+ metadata.gz: c35af3aed6a4607330f3fc17034cdf009139e3cbc6fe1845a0508f1c43475a42cff333ea6a72fdf1abdc3c1ca6dcf7698e906d76eb14de788e3f9ac669055deb
7
+ data.tar.gz: '00038a551a3eb2591384a34239687953e2ce949d8e8288b24d880c0666e6f7fee514b9af0045e3e842f422b84263cfe39a70464aeae56f3971187242b07fc4cf'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.173.0 (2024-09-05)
5
+ ------------------
6
+
7
+ * Feature - Amazon Connect Custom Vocabulary now supports Catalan (Spain), Danish (Denmark), Dutch (Netherlands), Finnish (Finland), Indonesian (Indonesia), Malay (Malaysia), Norwegian Bokmal (Norway), Polish (Poland), Swedish (Sweden), and Tagalog/Filipino (Philippines).
8
+
9
+ 1.172.0 (2024-09-03)
10
+ ------------------
11
+
12
+ * Feature - Release ReplicaConfiguration as part of DescribeInstance
13
+
4
14
  1.171.0 (2024-08-09)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.171.0
1
+ 1.173.0
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
32
32
  require 'aws-sdk-core/plugins/request_compression.rb'
33
33
  require 'aws-sdk-core/plugins/defaults_mode.rb'
34
34
  require 'aws-sdk-core/plugins/recursion_detection.rb'
35
+ require 'aws-sdk-core/plugins/telemetry.rb'
35
36
  require 'aws-sdk-core/plugins/sign.rb'
36
37
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
37
38
 
@@ -83,6 +84,7 @@ module Aws::Connect
83
84
  add_plugin(Aws::Plugins::RequestCompression)
84
85
  add_plugin(Aws::Plugins::DefaultsMode)
85
86
  add_plugin(Aws::Plugins::RecursionDetection)
87
+ add_plugin(Aws::Plugins::Telemetry)
86
88
  add_plugin(Aws::Plugins::Sign)
87
89
  add_plugin(Aws::Plugins::Protocols::RestJson)
88
90
  add_plugin(Aws::Connect::Plugins::Endpoints)
@@ -330,6 +332,16 @@ module Aws::Connect
330
332
  # ** Please note ** When response stubbing is enabled, no HTTP
331
333
  # requests are made, and retries are disabled.
332
334
  #
335
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
336
+ # Allows you to provide a telemetry provider, which is used to
337
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
338
+ # will not record or emit any telemetry data. The SDK supports the
339
+ # following telemetry providers:
340
+ #
341
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
342
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
343
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
344
+ #
333
345
  # @option options [Aws::TokenProvider] :token_provider
334
346
  # A Bearer Token Provider. This can be an instance of any one of the
335
347
  # following classes:
@@ -638,7 +650,7 @@ module Aws::Connect
638
650
  #
639
651
  # resp = client.associate_default_vocabulary({
640
652
  # instance_id: "InstanceId", # required
641
- # language_code: "ar-AE", # required, accepts ar-AE, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fr-CA, fr-FR, hi-IN, it-IT, ja-JP, ko-KR, pt-BR, pt-PT, zh-CN, en-NZ, en-ZA
653
+ # language_code: "ar-AE", # required, accepts ar-AE, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fr-CA, fr-FR, hi-IN, it-IT, ja-JP, ko-KR, pt-BR, pt-PT, zh-CN, en-NZ, en-ZA, ca-ES, da-DK, fi-FI, id-ID, ms-MY, nl-NL, no-NO, pl-PL, sv-SE, tl-PH
642
654
  # vocabulary_id: "VocabularyId",
643
655
  # })
644
656
  #
@@ -1005,7 +1017,7 @@ module Aws::Connect
1005
1017
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
1006
1018
  #
1007
1019
  # @option params [required, String] :key
1008
- # A valid security key in PEM format.
1020
+ # A valid security key in PEM format as a String.
1009
1021
  #
1010
1022
  # @return [Types::AssociateSecurityKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1011
1023
  #
@@ -3624,7 +3636,7 @@ module Aws::Connect
3624
3636
  # client_token: "ClientToken",
3625
3637
  # instance_id: "InstanceId", # required
3626
3638
  # vocabulary_name: "VocabularyName", # required
3627
- # language_code: "ar-AE", # required, accepts ar-AE, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fr-CA, fr-FR, hi-IN, it-IT, ja-JP, ko-KR, pt-BR, pt-PT, zh-CN, en-NZ, en-ZA
3639
+ # language_code: "ar-AE", # required, accepts ar-AE, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fr-CA, fr-FR, hi-IN, it-IT, ja-JP, ko-KR, pt-BR, pt-PT, zh-CN, en-NZ, en-ZA, ca-ES, da-DK, fi-FI, id-ID, ms-MY, nl-NL, no-NO, pl-PL, sv-SE, tl-PH
3628
3640
  # content: "VocabularyContent", # required
3629
3641
  # tags: {
3630
3642
  # "TagKey" => "TagValue",
@@ -5091,6 +5103,7 @@ module Aws::Connect
5091
5103
  # @return [Types::DescribeInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5092
5104
  #
5093
5105
  # * {Types::DescribeInstanceResponse#instance #instance} => Types::Instance
5106
+ # * {Types::DescribeInstanceResponse#replication_configuration #replication_configuration} => Types::ReplicationConfiguration
5094
5107
  #
5095
5108
  # @example Request syntax with placeholder values
5096
5109
  #
@@ -5113,6 +5126,12 @@ module Aws::Connect
5113
5126
  # resp.instance.instance_access_url #=> String
5114
5127
  # resp.instance.tags #=> Hash
5115
5128
  # resp.instance.tags["TagKey"] #=> String
5129
+ # resp.replication_configuration.replication_status_summary_list #=> Array
5130
+ # resp.replication_configuration.replication_status_summary_list[0].region #=> String
5131
+ # resp.replication_configuration.replication_status_summary_list[0].replication_status #=> String, one of "INSTANCE_REPLICATION_COMPLETE", "INSTANCE_REPLICATION_IN_PROGRESS", "INSTANCE_REPLICATION_FAILED", "INSTANCE_REPLICA_DELETING", "INSTANCE_REPLICATION_DELETION_FAILED", "RESOURCE_REPLICATION_NOT_STARTED"
5132
+ # resp.replication_configuration.replication_status_summary_list[0].replication_status_reason #=> String
5133
+ # resp.replication_configuration.source_region #=> String
5134
+ # resp.replication_configuration.global_sign_in_endpoint #=> String
5116
5135
  #
5117
5136
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeInstance AWS API Documentation
5118
5137
  #
@@ -5980,7 +5999,7 @@ module Aws::Connect
5980
5999
  # resp.vocabulary.name #=> String
5981
6000
  # resp.vocabulary.id #=> String
5982
6001
  # resp.vocabulary.arn #=> String
5983
- # resp.vocabulary.language_code #=> String, one of "ar-AE", "de-CH", "de-DE", "en-AB", "en-AU", "en-GB", "en-IE", "en-IN", "en-US", "en-WL", "es-ES", "es-US", "fr-CA", "fr-FR", "hi-IN", "it-IT", "ja-JP", "ko-KR", "pt-BR", "pt-PT", "zh-CN", "en-NZ", "en-ZA"
6002
+ # resp.vocabulary.language_code #=> String, one of "ar-AE", "de-CH", "de-DE", "en-AB", "en-AU", "en-GB", "en-IE", "en-IN", "en-US", "en-WL", "es-ES", "es-US", "fr-CA", "fr-FR", "hi-IN", "it-IT", "ja-JP", "ko-KR", "pt-BR", "pt-PT", "zh-CN", "en-NZ", "en-ZA", "ca-ES", "da-DK", "fi-FI", "id-ID", "ms-MY", "nl-NL", "no-NO", "pl-PL", "sv-SE", "tl-PH"
5984
6003
  # resp.vocabulary.state #=> String, one of "CREATION_IN_PROGRESS", "ACTIVE", "CREATION_FAILED", "DELETE_IN_PROGRESS"
5985
6004
  # resp.vocabulary.last_modified_time #=> Time
5986
6005
  # resp.vocabulary.failure_reason #=> String
@@ -8549,7 +8568,7 @@ module Aws::Connect
8549
8568
  #
8550
8569
  # </note>
8551
8570
  #
8552
- # SUM\_CONTACTS\_ABANDONED
8571
+ # CONTACTS\_ABANDONED
8553
8572
  #
8554
8573
  # : Unit: Count
8555
8574
  #
@@ -9721,7 +9740,7 @@ module Aws::Connect
9721
9740
  #
9722
9741
  # resp = client.list_default_vocabularies({
9723
9742
  # instance_id: "InstanceId", # required
9724
- # language_code: "ar-AE", # accepts ar-AE, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fr-CA, fr-FR, hi-IN, it-IT, ja-JP, ko-KR, pt-BR, pt-PT, zh-CN, en-NZ, en-ZA
9743
+ # language_code: "ar-AE", # accepts ar-AE, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fr-CA, fr-FR, hi-IN, it-IT, ja-JP, ko-KR, pt-BR, pt-PT, zh-CN, en-NZ, en-ZA, ca-ES, da-DK, fi-FI, id-ID, ms-MY, nl-NL, no-NO, pl-PL, sv-SE, tl-PH
9725
9744
  # max_results: 1,
9726
9745
  # next_token: "VocabularyNextToken",
9727
9746
  # })
@@ -9730,7 +9749,7 @@ module Aws::Connect
9730
9749
  #
9731
9750
  # resp.default_vocabulary_list #=> Array
9732
9751
  # resp.default_vocabulary_list[0].instance_id #=> String
9733
- # resp.default_vocabulary_list[0].language_code #=> String, one of "ar-AE", "de-CH", "de-DE", "en-AB", "en-AU", "en-GB", "en-IE", "en-IN", "en-US", "en-WL", "es-ES", "es-US", "fr-CA", "fr-FR", "hi-IN", "it-IT", "ja-JP", "ko-KR", "pt-BR", "pt-PT", "zh-CN", "en-NZ", "en-ZA"
9752
+ # resp.default_vocabulary_list[0].language_code #=> String, one of "ar-AE", "de-CH", "de-DE", "en-AB", "en-AU", "en-GB", "en-IE", "en-IN", "en-US", "en-WL", "es-ES", "es-US", "fr-CA", "fr-FR", "hi-IN", "it-IT", "ja-JP", "ko-KR", "pt-BR", "pt-PT", "zh-CN", "en-NZ", "en-ZA", "ca-ES", "da-DK", "fi-FI", "id-ID", "ms-MY", "nl-NL", "no-NO", "pl-PL", "sv-SE", "tl-PH"
9734
9753
  # resp.default_vocabulary_list[0].vocabulary_id #=> String
9735
9754
  # resp.default_vocabulary_list[0].vocabulary_name #=> String
9736
9755
  # resp.next_token #=> String
@@ -13975,7 +13994,7 @@ module Aws::Connect
13975
13994
  # next_token: "VocabularyNextToken",
13976
13995
  # state: "CREATION_IN_PROGRESS", # accepts CREATION_IN_PROGRESS, ACTIVE, CREATION_FAILED, DELETE_IN_PROGRESS
13977
13996
  # name_starts_with: "VocabularyName",
13978
- # language_code: "ar-AE", # accepts ar-AE, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fr-CA, fr-FR, hi-IN, it-IT, ja-JP, ko-KR, pt-BR, pt-PT, zh-CN, en-NZ, en-ZA
13997
+ # language_code: "ar-AE", # accepts ar-AE, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fr-CA, fr-FR, hi-IN, it-IT, ja-JP, ko-KR, pt-BR, pt-PT, zh-CN, en-NZ, en-ZA, ca-ES, da-DK, fi-FI, id-ID, ms-MY, nl-NL, no-NO, pl-PL, sv-SE, tl-PH
13979
13998
  # })
13980
13999
  #
13981
14000
  # @example Response structure
@@ -13984,7 +14003,7 @@ module Aws::Connect
13984
14003
  # resp.vocabulary_summary_list[0].name #=> String
13985
14004
  # resp.vocabulary_summary_list[0].id #=> String
13986
14005
  # resp.vocabulary_summary_list[0].arn #=> String
13987
- # resp.vocabulary_summary_list[0].language_code #=> String, one of "ar-AE", "de-CH", "de-DE", "en-AB", "en-AU", "en-GB", "en-IE", "en-IN", "en-US", "en-WL", "es-ES", "es-US", "fr-CA", "fr-FR", "hi-IN", "it-IT", "ja-JP", "ko-KR", "pt-BR", "pt-PT", "zh-CN", "en-NZ", "en-ZA"
14006
+ # resp.vocabulary_summary_list[0].language_code #=> String, one of "ar-AE", "de-CH", "de-DE", "en-AB", "en-AU", "en-GB", "en-IE", "en-IN", "en-US", "en-WL", "es-ES", "es-US", "fr-CA", "fr-FR", "hi-IN", "it-IT", "ja-JP", "ko-KR", "pt-BR", "pt-PT", "zh-CN", "en-NZ", "en-ZA", "ca-ES", "da-DK", "fi-FI", "id-ID", "ms-MY", "nl-NL", "no-NO", "pl-PL", "sv-SE", "tl-PH"
13988
14007
  # resp.vocabulary_summary_list[0].state #=> String, one of "CREATION_IN_PROGRESS", "ACTIVE", "CREATION_FAILED", "DELETE_IN_PROGRESS"
13989
14008
  # resp.vocabulary_summary_list[0].last_modified_time #=> Time
13990
14009
  # resp.vocabulary_summary_list[0].failure_reason #=> String
@@ -18278,14 +18297,19 @@ module Aws::Connect
18278
18297
  # @api private
18279
18298
  def build_request(operation_name, params = {})
18280
18299
  handlers = @handlers.for(operation_name)
18300
+ tracer = config.telemetry_provider.tracer_provider.tracer(
18301
+ Aws::Telemetry.module_to_tracer_name('Aws::Connect')
18302
+ )
18281
18303
  context = Seahorse::Client::RequestContext.new(
18282
18304
  operation_name: operation_name,
18283
18305
  operation: config.api.operation(operation_name),
18284
18306
  client: self,
18285
18307
  params: params,
18286
- config: config)
18308
+ config: config,
18309
+ tracer: tracer
18310
+ )
18287
18311
  context[:gem_name] = 'aws-sdk-connect'
18288
- context[:gem_version] = '1.171.0'
18312
+ context[:gem_version] = '1.173.0'
18289
18313
  Seahorse::Client::Request.new(handlers, context)
18290
18314
  end
18291
18315
 
@@ -534,6 +534,7 @@ module Aws::Connect
534
534
  GetTaskTemplateResponse = Shapes::StructureShape.new(name: 'GetTaskTemplateResponse')
535
535
  GetTrafficDistributionRequest = Shapes::StructureShape.new(name: 'GetTrafficDistributionRequest')
536
536
  GetTrafficDistributionResponse = Shapes::StructureShape.new(name: 'GetTrafficDistributionResponse')
537
+ GlobalSignInEndpoint = Shapes::StringShape.new(name: 'GlobalSignInEndpoint')
537
538
  Grouping = Shapes::StringShape.new(name: 'Grouping')
538
539
  GroupingV2 = Shapes::StringShape.new(name: 'GroupingV2')
539
540
  Groupings = Shapes::ListShape.new(name: 'Groupings')
@@ -594,6 +595,7 @@ module Aws::Connect
594
595
  InstanceAttributeValue = Shapes::StringShape.new(name: 'InstanceAttributeValue')
595
596
  InstanceId = Shapes::StringShape.new(name: 'InstanceId')
596
597
  InstanceIdOrArn = Shapes::StringShape.new(name: 'InstanceIdOrArn')
598
+ InstanceReplicationStatus = Shapes::StringShape.new(name: 'InstanceReplicationStatus')
597
599
  InstanceStatus = Shapes::StringShape.new(name: 'InstanceStatus')
598
600
  InstanceStatusReason = Shapes::StructureShape.new(name: 'InstanceStatusReason')
599
601
  InstanceStorageConfig = Shapes::StructureShape.new(name: 'InstanceStorageConfig')
@@ -957,6 +959,10 @@ module Aws::Connect
957
959
  ReleasePhoneNumberRequest = Shapes::StructureShape.new(name: 'ReleasePhoneNumberRequest')
958
960
  ReplicateInstanceRequest = Shapes::StructureShape.new(name: 'ReplicateInstanceRequest')
959
961
  ReplicateInstanceResponse = Shapes::StructureShape.new(name: 'ReplicateInstanceResponse')
962
+ ReplicationConfiguration = Shapes::StructureShape.new(name: 'ReplicationConfiguration')
963
+ ReplicationStatusReason = Shapes::StringShape.new(name: 'ReplicationStatusReason')
964
+ ReplicationStatusSummary = Shapes::StructureShape.new(name: 'ReplicationStatusSummary')
965
+ ReplicationStatusSummaryList = Shapes::ListShape.new(name: 'ReplicationStatusSummaryList')
960
966
  RequestIdentifier = Shapes::StringShape.new(name: 'RequestIdentifier')
961
967
  RequiredFieldInfo = Shapes::StructureShape.new(name: 'RequiredFieldInfo')
962
968
  RequiredTaskTemplateFields = Shapes::ListShape.new(name: 'RequiredTaskTemplateFields')
@@ -2515,6 +2521,7 @@ module Aws::Connect
2515
2521
  DescribeInstanceRequest.struct_class = Types::DescribeInstanceRequest
2516
2522
 
2517
2523
  DescribeInstanceResponse.add_member(:instance, Shapes::ShapeRef.new(shape: Instance, location_name: "Instance"))
2524
+ DescribeInstanceResponse.add_member(:replication_configuration, Shapes::ShapeRef.new(shape: ReplicationConfiguration, location_name: "ReplicationConfiguration"))
2518
2525
  DescribeInstanceResponse.struct_class = Types::DescribeInstanceResponse
2519
2526
 
2520
2527
  DescribeInstanceStorageConfigRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
@@ -4400,6 +4407,18 @@ module Aws::Connect
4400
4407
  ReplicateInstanceResponse.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
4401
4408
  ReplicateInstanceResponse.struct_class = Types::ReplicateInstanceResponse
4402
4409
 
4410
+ ReplicationConfiguration.add_member(:replication_status_summary_list, Shapes::ShapeRef.new(shape: ReplicationStatusSummaryList, location_name: "ReplicationStatusSummaryList"))
4411
+ ReplicationConfiguration.add_member(:source_region, Shapes::ShapeRef.new(shape: AwsRegion, location_name: "SourceRegion"))
4412
+ ReplicationConfiguration.add_member(:global_sign_in_endpoint, Shapes::ShapeRef.new(shape: GlobalSignInEndpoint, location_name: "GlobalSignInEndpoint"))
4413
+ ReplicationConfiguration.struct_class = Types::ReplicationConfiguration
4414
+
4415
+ ReplicationStatusSummary.add_member(:region, Shapes::ShapeRef.new(shape: AwsRegion, location_name: "Region"))
4416
+ ReplicationStatusSummary.add_member(:replication_status, Shapes::ShapeRef.new(shape: InstanceReplicationStatus, location_name: "ReplicationStatus"))
4417
+ ReplicationStatusSummary.add_member(:replication_status_reason, Shapes::ShapeRef.new(shape: ReplicationStatusReason, location_name: "ReplicationStatusReason"))
4418
+ ReplicationStatusSummary.struct_class = Types::ReplicationStatusSummary
4419
+
4420
+ ReplicationStatusSummaryList.member = Shapes::ShapeRef.new(shape: ReplicationStatusSummary)
4421
+
4403
4422
  RequiredFieldInfo.add_member(:id, Shapes::ShapeRef.new(shape: TaskTemplateFieldIdentifier, location_name: "Id"))
4404
4423
  RequiredFieldInfo.struct_class = Types::RequiredFieldInfo
4405
4424
 
@@ -959,7 +959,7 @@ module Aws::Connect
959
959
  # @return [String]
960
960
  #
961
961
  # @!attribute [rw] key
962
- # A valid security key in PEM format.
962
+ # A valid security key in PEM format as a String.
963
963
  # @return [String]
964
964
  #
965
965
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateSecurityKeyRequest AWS API Documentation
@@ -5967,10 +5967,25 @@ module Aws::Connect
5967
5967
  # The name of the instance.
5968
5968
  # @return [Types::Instance]
5969
5969
  #
5970
+ # @!attribute [rw] replication_configuration
5971
+ # Status information about the replication process. This field is
5972
+ # included only when you are using the [ReplicateInstance][1] API to
5973
+ # replicate an Amazon Connect instance across Amazon Web Services
5974
+ # Regions. For information about replicating Amazon Connect instances,
5975
+ # see [Create a replica of your existing Amazon Connect instance][2]
5976
+ # in the *Amazon Connect Administrator Guide*.
5977
+ #
5978
+ #
5979
+ #
5980
+ # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_ReplicateInstance.html
5981
+ # [2]: https://docs.aws.amazon.com/connect/latest/adminguide/create-replica-connect-instance.html
5982
+ # @return [Types::ReplicationConfiguration]
5983
+ #
5970
5984
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeInstanceResponse AWS API Documentation
5971
5985
  #
5972
5986
  class DescribeInstanceResponse < Struct.new(
5973
- :instance)
5987
+ :instance,
5988
+ :replication_configuration)
5974
5989
  SENSITIVE = []
5975
5990
  include Aws::Structure
5976
5991
  end
@@ -10117,7 +10132,7 @@ module Aws::Connect
10117
10132
  #
10118
10133
  # </note>
10119
10134
  #
10120
- # SUM\_CONTACTS\_ABANDONED
10135
+ # CONTACTS\_ABANDONED
10121
10136
  #
10122
10137
  # : Unit: Count
10123
10138
  #
@@ -16594,6 +16609,92 @@ module Aws::Connect
16594
16609
  include Aws::Structure
16595
16610
  end
16596
16611
 
16612
+ # Details about the status of the replication of a source Amazon Connect
16613
+ # instance across Amazon Web Services Regions. Use these details to
16614
+ # understand the general status of a given replication. For information
16615
+ # about why a replication process may fail, see [Why a ReplicateInstance
16616
+ # call fails][1] in the *Create a replica of your existing Amazon
16617
+ # Connect instance* topic in the *Amazon Connect Administrator Guide*.
16618
+ #
16619
+ #
16620
+ #
16621
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/create-replica-connect-instance.html#why-replicateinstance-fails
16622
+ #
16623
+ # @!attribute [rw] replication_status_summary_list
16624
+ # A list of replication status summaries. The summaries contain
16625
+ # details about the replication of configuration information for
16626
+ # Amazon Connect resources, for each Amazon Web Services Region.
16627
+ # @return [Array<Types::ReplicationStatusSummary>]
16628
+ #
16629
+ # @!attribute [rw] source_region
16630
+ # The Amazon Web Services Region where the source Amazon Connect
16631
+ # instance was created. This is the Region where the
16632
+ # [ReplicateInstance][1] API was called to start the replication
16633
+ # process.
16634
+ #
16635
+ #
16636
+ #
16637
+ # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_ReplicateInstance.html
16638
+ # @return [String]
16639
+ #
16640
+ # @!attribute [rw] global_sign_in_endpoint
16641
+ # The URL that is used to sign-in to your Amazon Connect instance
16642
+ # according to your traffic distribution group configuration. For more
16643
+ # information about sign-in and traffic distribution groups, see
16644
+ # [Important things to know][1] in the *Create traffic distribution
16645
+ # groups* topic in the *Amazon Connect Administrator Guide*.
16646
+ #
16647
+ #
16648
+ #
16649
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/setup-traffic-distribution-groups.html
16650
+ # @return [String]
16651
+ #
16652
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ReplicationConfiguration AWS API Documentation
16653
+ #
16654
+ class ReplicationConfiguration < Struct.new(
16655
+ :replication_status_summary_list,
16656
+ :source_region,
16657
+ :global_sign_in_endpoint)
16658
+ SENSITIVE = []
16659
+ include Aws::Structure
16660
+ end
16661
+
16662
+ # Status information about the replication process, where you use the
16663
+ # [ReplicateInstance][1] API to create a replica of your Amazon Connect
16664
+ # instance in another Amazon Web Services Region. For more information,
16665
+ # see [Set up Amazon Connect Global Resiliency][2] in the *Amazon
16666
+ # Connect Administrator Guide*.
16667
+ #
16668
+ #
16669
+ #
16670
+ # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_ReplicateInstance.html
16671
+ # [2]: https://docs.aws.amazon.com/connect/latest/adminguide/setup-connect-global-resiliency.html
16672
+ #
16673
+ # @!attribute [rw] region
16674
+ # The Amazon Web Services Region. This can be either the source or the
16675
+ # replica Region, depending where it appears in the summary list.
16676
+ # @return [String]
16677
+ #
16678
+ # @!attribute [rw] replication_status
16679
+ # The state of the replication.
16680
+ # @return [String]
16681
+ #
16682
+ # @!attribute [rw] replication_status_reason
16683
+ # A description of the replication status. Use this information to
16684
+ # resolve any issues that are preventing the successful replication of
16685
+ # your Amazon Connect instance to another Region.
16686
+ # @return [String]
16687
+ #
16688
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ReplicationStatusSummary AWS API Documentation
16689
+ #
16690
+ class ReplicationStatusSummary < Struct.new(
16691
+ :region,
16692
+ :replication_status,
16693
+ :replication_status_reason)
16694
+ SENSITIVE = []
16695
+ include Aws::Structure
16696
+ end
16697
+
16597
16698
  # Information about a required field.
16598
16699
  #
16599
16700
  # @!attribute [rw] id
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-connect/customizations'
52
52
  # @!group service
53
53
  module Aws::Connect
54
54
 
55
- GEM_VERSION = '1.171.0'
55
+ GEM_VERSION = '1.173.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
@@ -128,7 +129,7 @@ module Aws
128
129
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#associate_default_vocabulary-instance_method
129
130
  def associate_default_vocabulary: (
130
131
  instance_id: ::String,
131
- language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA"),
132
+ language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH"),
132
133
  ?vocabulary_id: ::String
133
134
  ) -> _AssociateDefaultVocabularyResponseSuccess
134
135
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateDefaultVocabularyResponseSuccess
@@ -990,7 +991,7 @@ module Aws
990
991
  ?client_token: ::String,
991
992
  instance_id: ::String,
992
993
  vocabulary_name: ::String,
993
- language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA"),
994
+ language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH"),
994
995
  content: ::String,
995
996
  ?tags: Hash[::String, ::String]
996
997
  ) -> _CreateVocabularyResponseSuccess
@@ -1293,6 +1294,7 @@ module Aws
1293
1294
  interface _DescribeInstanceResponseSuccess
1294
1295
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInstanceResponse]
1295
1296
  def instance: () -> Types::Instance
1297
+ def replication_configuration: () -> Types::ReplicationConfiguration
1296
1298
  end
1297
1299
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_instance-instance_method
1298
1300
  def describe_instance: (
@@ -1998,7 +2000,7 @@ module Aws
1998
2000
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_default_vocabularies-instance_method
1999
2001
  def list_default_vocabularies: (
2000
2002
  instance_id: ::String,
2001
- ?language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA"),
2003
+ ?language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH"),
2002
2004
  ?max_results: ::Integer,
2003
2005
  ?next_token: ::String
2004
2006
  ) -> _ListDefaultVocabulariesResponseSuccess
@@ -3319,7 +3321,7 @@ module Aws
3319
3321
  ?next_token: ::String,
3320
3322
  ?state: ("CREATION_IN_PROGRESS" | "ACTIVE" | "CREATION_FAILED" | "DELETE_IN_PROGRESS"),
3321
3323
  ?name_starts_with: ::String,
3322
- ?language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA")
3324
+ ?language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH")
3323
3325
  ) -> _SearchVocabulariesResponseSuccess
3324
3326
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchVocabulariesResponseSuccess
3325
3327
 
data/sig/resource.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
data/sig/types.rbs CHANGED
@@ -184,7 +184,7 @@ module Aws::Connect
184
184
 
185
185
  class AssociateDefaultVocabularyRequest
186
186
  attr_accessor instance_id: ::String
187
- attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA")
187
+ attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH")
188
188
  attr_accessor vocabulary_id: ::String
189
189
  SENSITIVE: []
190
190
  end
@@ -1089,7 +1089,7 @@ module Aws::Connect
1089
1089
  attr_accessor client_token: ::String
1090
1090
  attr_accessor instance_id: ::String
1091
1091
  attr_accessor vocabulary_name: ::String
1092
- attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA")
1092
+ attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH")
1093
1093
  attr_accessor content: ::String
1094
1094
  attr_accessor tags: ::Hash[::String, ::String]
1095
1095
  SENSITIVE: []
@@ -1192,7 +1192,7 @@ module Aws::Connect
1192
1192
 
1193
1193
  class DefaultVocabulary
1194
1194
  attr_accessor instance_id: ::String
1195
- attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA")
1195
+ attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH")
1196
1196
  attr_accessor vocabulary_id: ::String
1197
1197
  attr_accessor vocabulary_name: ::String
1198
1198
  SENSITIVE: []
@@ -1474,6 +1474,7 @@ module Aws::Connect
1474
1474
 
1475
1475
  class DescribeInstanceResponse
1476
1476
  attr_accessor instance: Types::Instance
1477
+ attr_accessor replication_configuration: Types::ReplicationConfiguration
1477
1478
  SENSITIVE: []
1478
1479
  end
1479
1480
 
@@ -2762,7 +2763,7 @@ module Aws::Connect
2762
2763
 
2763
2764
  class ListDefaultVocabulariesRequest
2764
2765
  attr_accessor instance_id: ::String
2765
- attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA")
2766
+ attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH")
2766
2767
  attr_accessor max_results: ::Integer
2767
2768
  attr_accessor next_token: ::String
2768
2769
  SENSITIVE: []
@@ -3883,6 +3884,20 @@ module Aws::Connect
3883
3884
  SENSITIVE: []
3884
3885
  end
3885
3886
 
3887
+ class ReplicationConfiguration
3888
+ attr_accessor replication_status_summary_list: ::Array[Types::ReplicationStatusSummary]
3889
+ attr_accessor source_region: ::String
3890
+ attr_accessor global_sign_in_endpoint: ::String
3891
+ SENSITIVE: []
3892
+ end
3893
+
3894
+ class ReplicationStatusSummary
3895
+ attr_accessor region: ::String
3896
+ attr_accessor replication_status: ("INSTANCE_REPLICATION_COMPLETE" | "INSTANCE_REPLICATION_IN_PROGRESS" | "INSTANCE_REPLICATION_FAILED" | "INSTANCE_REPLICA_DELETING" | "INSTANCE_REPLICATION_DELETION_FAILED" | "RESOURCE_REPLICATION_NOT_STARTED")
3897
+ attr_accessor replication_status_reason: ::String
3898
+ SENSITIVE: []
3899
+ end
3900
+
3886
3901
  class RequiredFieldInfo
3887
3902
  attr_accessor id: Types::TaskTemplateFieldIdentifier
3888
3903
  SENSITIVE: []
@@ -4344,7 +4359,7 @@ module Aws::Connect
4344
4359
  attr_accessor next_token: ::String
4345
4360
  attr_accessor state: ("CREATION_IN_PROGRESS" | "ACTIVE" | "CREATION_FAILED" | "DELETE_IN_PROGRESS")
4346
4361
  attr_accessor name_starts_with: ::String
4347
- attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA")
4362
+ attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH")
4348
4363
  SENSITIVE: []
4349
4364
  end
4350
4365
 
@@ -5591,7 +5606,7 @@ module Aws::Connect
5591
5606
  attr_accessor name: ::String
5592
5607
  attr_accessor id: ::String
5593
5608
  attr_accessor arn: ::String
5594
- attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA")
5609
+ attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH")
5595
5610
  attr_accessor state: ("CREATION_IN_PROGRESS" | "ACTIVE" | "CREATION_FAILED" | "DELETE_IN_PROGRESS")
5596
5611
  attr_accessor last_modified_time: ::Time
5597
5612
  attr_accessor failure_reason: ::String
@@ -5604,7 +5619,7 @@ module Aws::Connect
5604
5619
  attr_accessor name: ::String
5605
5620
  attr_accessor id: ::String
5606
5621
  attr_accessor arn: ::String
5607
- attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA")
5622
+ attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH")
5608
5623
  attr_accessor state: ("CREATION_IN_PROGRESS" | "ACTIVE" | "CREATION_FAILED" | "DELETE_IN_PROGRESS")
5609
5624
  attr_accessor last_modified_time: ::Time
5610
5625
  attr_accessor failure_reason: ::String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.171.0
4
+ version: 1.173.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-09 00:00:00.000000000 Z
11
+ date: 2024-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.201.0
22
+ version: 3.203.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.201.0
32
+ version: 3.203.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement