aws-sdk-connect 1.131.0 → 1.132.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: 84abdb694f528ac8e7499c712dd49b82e8d3de43ec1ea76f335045998a592d75
4
- data.tar.gz: 99ee9201f2396bab87c86163fdeb5606bb32edf666e4237685629e09c6ac0277
3
+ metadata.gz: af63a3efcf09a123577ab0340bf26eff3d806fd0989448e65da26f3462a242d4
4
+ data.tar.gz: 902c3f084299c5ae1d2dae2ab7a33d436fb1940d0ed8d73e5bae286d719f7352
5
5
  SHA512:
6
- metadata.gz: 8d8730875db28cd95c3790d0c6c7d23f134da57c899375ad9905ff090009b17b7bc608814bd5be6a91e1f3708259a251addeca5d4794803449fd21ed7a4f39f9
7
- data.tar.gz: c5c116b7f614f4ac0a0ecfe9b584d7d23e5a74e22513d2d7c9c2c0d999c2cab36a56d6c61724ec54ca8dedc4ed28ddcf2d79e78b9da54c3a3d9f7bb9c58fc361
6
+ metadata.gz: cb486cb5cb3ca96b5735a66a814d2ee3c4514e671a5ade39ecafd46d89e20a2f42bd350f39128012703b1f7e6da57470e3ce16a6d2579be15d80c4f8d6214685
7
+ data.tar.gz: 8ba56b1b4066c016db5359b20de6d382adbe935bb6c1044fcf23df46d2d392672940995127c7236be1831a177b78fd2a6a25c8d3f40a25bff6d11fe96ba7e912
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.132.0 (2023-11-01)
5
+ ------------------
6
+
7
+ * Feature - Adds the BatchGetFlowAssociation API which returns flow associations (flow-resource) corresponding to the list of resourceArns supplied in the request. This release also adds IsDefault, LastModifiedRegion and LastModifiedTime fields to the responses of several Describe and List APIs.
8
+
4
9
  1.131.0 (2023-10-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.131.0
1
+ 1.132.0
@@ -919,6 +919,50 @@ module Aws::Connect
919
919
  req.send_request(options)
920
920
  end
921
921
 
922
+ # Retrieve the flow associations for the given resources.
923
+ #
924
+ # @option params [required, String] :instance_id
925
+ # The identifier of the Amazon Connect instance. You can [find the
926
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
927
+ #
928
+ #
929
+ #
930
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
931
+ #
932
+ # @option params [required, Array<String>] :resource_ids
933
+ # A list of resource identifiers to retrieve flow associations.
934
+ #
935
+ # @option params [String] :resource_type
936
+ # The type of resource association.
937
+ #
938
+ # @return [Types::BatchGetFlowAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
939
+ #
940
+ # * {Types::BatchGetFlowAssociationResponse#flow_association_summary_list #flow_association_summary_list} => Array&lt;Types::FlowAssociationSummary&gt;
941
+ #
942
+ # @example Request syntax with placeholder values
943
+ #
944
+ # resp = client.batch_get_flow_association({
945
+ # instance_id: "InstanceId", # required
946
+ # resource_ids: ["ARN"], # required
947
+ # resource_type: "SMS_PHONE_NUMBER", # accepts SMS_PHONE_NUMBER, VOICE_PHONE_NUMBER
948
+ # })
949
+ #
950
+ # @example Response structure
951
+ #
952
+ # resp.flow_association_summary_list #=> Array
953
+ # resp.flow_association_summary_list[0].resource_id #=> String
954
+ # resp.flow_association_summary_list[0].flow_id #=> String
955
+ # resp.flow_association_summary_list[0].resource_type #=> String, one of "SMS_PHONE_NUMBER", "VOICE_PHONE_NUMBER"
956
+ #
957
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/BatchGetFlowAssociation AWS API Documentation
958
+ #
959
+ # @overload batch_get_flow_association(params = {})
960
+ # @param [Hash] params ({})
961
+ def batch_get_flow_association(params = {}, options = {})
962
+ req = build_request(:batch_get_flow_association, params)
963
+ req.send_request(options)
964
+ end
965
+
922
966
  # Claims an available phone number to your Amazon Connect instance or
923
967
  # traffic distribution group. You can call this API only in the same
924
968
  # Amazon Web Services Region where the Amazon Connect instance or
@@ -1683,7 +1727,13 @@ module Aws::Connect
1683
1727
  # The description of the prompt.
1684
1728
  #
1685
1729
  # @option params [required, String] :s3_uri
1686
- # The URI for the S3 bucket where the prompt is stored.
1730
+ # The URI for the S3 bucket where the prompt is stored. You can provide
1731
+ # S3 pre-signed URLs returned by the [GetPromptFile][1] API instead of
1732
+ # providing S3 URIs.
1733
+ #
1734
+ #
1735
+ #
1736
+ # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_GetPromptFile.html
1687
1737
  #
1688
1738
  # @option params [Hash<String,String>] :tags
1689
1739
  # The tags used to organize, track, or control access for this resource.
@@ -3635,6 +3685,8 @@ module Aws::Connect
3635
3685
  # resp.agent_status.state #=> String, one of "ENABLED", "DISABLED"
3636
3686
  # resp.agent_status.tags #=> Hash
3637
3687
  # resp.agent_status.tags["TagKey"] #=> String
3688
+ # resp.agent_status.last_modified_time #=> Time
3689
+ # resp.agent_status.last_modified_region #=> String
3638
3690
  #
3639
3691
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeAgentStatus AWS API Documentation
3640
3692
  #
@@ -4031,6 +4083,8 @@ module Aws::Connect
4031
4083
  # resp.hours_of_operation.config[0].end_time.minutes #=> Integer
4032
4084
  # resp.hours_of_operation.tags #=> Hash
4033
4085
  # resp.hours_of_operation.tags["TagKey"] #=> String
4086
+ # resp.hours_of_operation.last_modified_time #=> Time
4087
+ # resp.hours_of_operation.last_modified_region #=> String
4034
4088
  #
4035
4089
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeHoursOfOperation AWS API Documentation
4036
4090
  #
@@ -4274,6 +4328,8 @@ module Aws::Connect
4274
4328
  # resp.prompt.description #=> String
4275
4329
  # resp.prompt.tags #=> Hash
4276
4330
  # resp.prompt.tags["TagKey"] #=> String
4331
+ # resp.prompt.last_modified_time #=> Time
4332
+ # resp.prompt.last_modified_region #=> String
4277
4333
  #
4278
4334
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribePrompt AWS API Documentation
4279
4335
  #
@@ -4325,6 +4381,8 @@ module Aws::Connect
4325
4381
  # resp.queue.status #=> String, one of "ENABLED", "DISABLED"
4326
4382
  # resp.queue.tags #=> Hash
4327
4383
  # resp.queue.tags["TagKey"] #=> String
4384
+ # resp.queue.last_modified_time #=> Time
4385
+ # resp.queue.last_modified_region #=> String
4328
4386
  #
4329
4387
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeQueue AWS API Documentation
4330
4388
  #
@@ -4373,6 +4431,8 @@ module Aws::Connect
4373
4431
  # resp.quick_connect.quick_connect_config.phone_config.phone_number #=> String
4374
4432
  # resp.quick_connect.tags #=> Hash
4375
4433
  # resp.quick_connect.tags["TagKey"] #=> String
4434
+ # resp.quick_connect.last_modified_time #=> Time
4435
+ # resp.quick_connect.last_modified_region #=> String
4376
4436
  #
4377
4437
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeQuickConnect AWS API Documentation
4378
4438
  #
@@ -4424,6 +4484,9 @@ module Aws::Connect
4424
4484
  # resp.routing_profile.number_of_associated_queues #=> Integer
4425
4485
  # resp.routing_profile.number_of_associated_users #=> Integer
4426
4486
  # resp.routing_profile.agent_availability_timer #=> String, one of "TIME_SINCE_LAST_ACTIVITY", "TIME_SINCE_LAST_INBOUND"
4487
+ # resp.routing_profile.last_modified_time #=> Time
4488
+ # resp.routing_profile.last_modified_region #=> String
4489
+ # resp.routing_profile.is_default #=> Boolean
4427
4490
  #
4428
4491
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeRoutingProfile AWS API Documentation
4429
4492
  #
@@ -4536,6 +4599,8 @@ module Aws::Connect
4536
4599
  # resp.security_profile.allowed_access_control_tags["SecurityProfilePolicyKey"] #=> String
4537
4600
  # resp.security_profile.tag_restricted_resources #=> Array
4538
4601
  # resp.security_profile.tag_restricted_resources[0] #=> String
4602
+ # resp.security_profile.last_modified_time #=> Time
4603
+ # resp.security_profile.last_modified_region #=> String
4539
4604
  #
4540
4605
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeSecurityProfile AWS API Documentation
4541
4606
  #
@@ -4637,6 +4702,8 @@ module Aws::Connect
4637
4702
  # resp.user.hierarchy_group_id #=> String
4638
4703
  # resp.user.tags #=> Hash
4639
4704
  # resp.user.tags["TagKey"] #=> String
4705
+ # resp.user.last_modified_time #=> Time
4706
+ # resp.user.last_modified_region #=> String
4640
4707
  #
4641
4708
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeUser AWS API Documentation
4642
4709
  #
@@ -4680,20 +4747,32 @@ module Aws::Connect
4680
4747
  # resp.hierarchy_group.hierarchy_path.level_one.id #=> String
4681
4748
  # resp.hierarchy_group.hierarchy_path.level_one.arn #=> String
4682
4749
  # resp.hierarchy_group.hierarchy_path.level_one.name #=> String
4750
+ # resp.hierarchy_group.hierarchy_path.level_one.last_modified_time #=> Time
4751
+ # resp.hierarchy_group.hierarchy_path.level_one.last_modified_region #=> String
4683
4752
  # resp.hierarchy_group.hierarchy_path.level_two.id #=> String
4684
4753
  # resp.hierarchy_group.hierarchy_path.level_two.arn #=> String
4685
4754
  # resp.hierarchy_group.hierarchy_path.level_two.name #=> String
4755
+ # resp.hierarchy_group.hierarchy_path.level_two.last_modified_time #=> Time
4756
+ # resp.hierarchy_group.hierarchy_path.level_two.last_modified_region #=> String
4686
4757
  # resp.hierarchy_group.hierarchy_path.level_three.id #=> String
4687
4758
  # resp.hierarchy_group.hierarchy_path.level_three.arn #=> String
4688
4759
  # resp.hierarchy_group.hierarchy_path.level_three.name #=> String
4760
+ # resp.hierarchy_group.hierarchy_path.level_three.last_modified_time #=> Time
4761
+ # resp.hierarchy_group.hierarchy_path.level_three.last_modified_region #=> String
4689
4762
  # resp.hierarchy_group.hierarchy_path.level_four.id #=> String
4690
4763
  # resp.hierarchy_group.hierarchy_path.level_four.arn #=> String
4691
4764
  # resp.hierarchy_group.hierarchy_path.level_four.name #=> String
4765
+ # resp.hierarchy_group.hierarchy_path.level_four.last_modified_time #=> Time
4766
+ # resp.hierarchy_group.hierarchy_path.level_four.last_modified_region #=> String
4692
4767
  # resp.hierarchy_group.hierarchy_path.level_five.id #=> String
4693
4768
  # resp.hierarchy_group.hierarchy_path.level_five.arn #=> String
4694
4769
  # resp.hierarchy_group.hierarchy_path.level_five.name #=> String
4770
+ # resp.hierarchy_group.hierarchy_path.level_five.last_modified_time #=> Time
4771
+ # resp.hierarchy_group.hierarchy_path.level_five.last_modified_region #=> String
4695
4772
  # resp.hierarchy_group.tags #=> Hash
4696
4773
  # resp.hierarchy_group.tags["TagKey"] #=> String
4774
+ # resp.hierarchy_group.last_modified_time #=> Time
4775
+ # resp.hierarchy_group.last_modified_region #=> String
4697
4776
  #
4698
4777
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeUserHierarchyGroup AWS API Documentation
4699
4778
  #
@@ -4730,18 +4809,28 @@ module Aws::Connect
4730
4809
  # resp.hierarchy_structure.level_one.id #=> String
4731
4810
  # resp.hierarchy_structure.level_one.arn #=> String
4732
4811
  # resp.hierarchy_structure.level_one.name #=> String
4812
+ # resp.hierarchy_structure.level_one.last_modified_time #=> Time
4813
+ # resp.hierarchy_structure.level_one.last_modified_region #=> String
4733
4814
  # resp.hierarchy_structure.level_two.id #=> String
4734
4815
  # resp.hierarchy_structure.level_two.arn #=> String
4735
4816
  # resp.hierarchy_structure.level_two.name #=> String
4817
+ # resp.hierarchy_structure.level_two.last_modified_time #=> Time
4818
+ # resp.hierarchy_structure.level_two.last_modified_region #=> String
4736
4819
  # resp.hierarchy_structure.level_three.id #=> String
4737
4820
  # resp.hierarchy_structure.level_three.arn #=> String
4738
4821
  # resp.hierarchy_structure.level_three.name #=> String
4822
+ # resp.hierarchy_structure.level_three.last_modified_time #=> Time
4823
+ # resp.hierarchy_structure.level_three.last_modified_region #=> String
4739
4824
  # resp.hierarchy_structure.level_four.id #=> String
4740
4825
  # resp.hierarchy_structure.level_four.arn #=> String
4741
4826
  # resp.hierarchy_structure.level_four.name #=> String
4827
+ # resp.hierarchy_structure.level_four.last_modified_time #=> Time
4828
+ # resp.hierarchy_structure.level_four.last_modified_region #=> String
4742
4829
  # resp.hierarchy_structure.level_five.id #=> String
4743
4830
  # resp.hierarchy_structure.level_five.arn #=> String
4744
4831
  # resp.hierarchy_structure.level_five.name #=> String
4832
+ # resp.hierarchy_structure.level_five.last_modified_time #=> Time
4833
+ # resp.hierarchy_structure.level_five.last_modified_region #=> String
4745
4834
  #
4746
4835
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeUserHierarchyStructure AWS API Documentation
4747
4836
  #
@@ -6684,6 +6773,8 @@ module Aws::Connect
6684
6773
  # @return [Types::GetPromptFileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6685
6774
  #
6686
6775
  # * {Types::GetPromptFileResponse#prompt_presigned_url #prompt_presigned_url} => String
6776
+ # * {Types::GetPromptFileResponse#last_modified_time #last_modified_time} => Time
6777
+ # * {Types::GetPromptFileResponse#last_modified_region #last_modified_region} => String
6687
6778
  #
6688
6779
  # @example Request syntax with placeholder values
6689
6780
  #
@@ -6695,6 +6786,8 @@ module Aws::Connect
6695
6786
  # @example Response structure
6696
6787
  #
6697
6788
  # resp.prompt_presigned_url #=> String
6789
+ # resp.last_modified_time #=> Time
6790
+ # resp.last_modified_region #=> String
6698
6791
  #
6699
6792
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetPromptFile AWS API Documentation
6700
6793
  #
@@ -6876,6 +6969,8 @@ module Aws::Connect
6876
6969
  # resp.agent_status_summary_list[0].arn #=> String
6877
6970
  # resp.agent_status_summary_list[0].name #=> String
6878
6971
  # resp.agent_status_summary_list[0].type #=> String, one of "ROUTABLE", "CUSTOM", "OFFLINE"
6972
+ # resp.agent_status_summary_list[0].last_modified_time #=> Time
6973
+ # resp.agent_status_summary_list[0].last_modified_region #=> String
6879
6974
  #
6880
6975
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListAgentStatuses AWS API Documentation
6881
6976
  #
@@ -7483,6 +7578,8 @@ module Aws::Connect
7483
7578
  # resp.hours_of_operation_summary_list[0].id #=> String
7484
7579
  # resp.hours_of_operation_summary_list[0].arn #=> String
7485
7580
  # resp.hours_of_operation_summary_list[0].name #=> String
7581
+ # resp.hours_of_operation_summary_list[0].last_modified_time #=> Time
7582
+ # resp.hours_of_operation_summary_list[0].last_modified_region #=> String
7486
7583
  # resp.next_token #=> String
7487
7584
  #
7488
7585
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListHoursOfOperations AWS API Documentation
@@ -8070,6 +8167,8 @@ module Aws::Connect
8070
8167
  # resp.prompt_summary_list[0].id #=> String
8071
8168
  # resp.prompt_summary_list[0].arn #=> String
8072
8169
  # resp.prompt_summary_list[0].name #=> String
8170
+ # resp.prompt_summary_list[0].last_modified_time #=> Time
8171
+ # resp.prompt_summary_list[0].last_modified_region #=> String
8073
8172
  # resp.next_token #=> String
8074
8173
  #
8075
8174
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListPrompts AWS API Documentation
@@ -8110,6 +8209,8 @@ module Aws::Connect
8110
8209
  #
8111
8210
  # * {Types::ListQueueQuickConnectsResponse#next_token #next_token} => String
8112
8211
  # * {Types::ListQueueQuickConnectsResponse#quick_connect_summary_list #quick_connect_summary_list} => Array&lt;Types::QuickConnectSummary&gt;
8212
+ # * {Types::ListQueueQuickConnectsResponse#last_modified_time #last_modified_time} => Time
8213
+ # * {Types::ListQueueQuickConnectsResponse#last_modified_region #last_modified_region} => String
8113
8214
  #
8114
8215
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
8115
8216
  #
@@ -8130,6 +8231,10 @@ module Aws::Connect
8130
8231
  # resp.quick_connect_summary_list[0].arn #=> String
8131
8232
  # resp.quick_connect_summary_list[0].name #=> String
8132
8233
  # resp.quick_connect_summary_list[0].quick_connect_type #=> String, one of "USER", "QUEUE", "PHONE_NUMBER"
8234
+ # resp.quick_connect_summary_list[0].last_modified_time #=> Time
8235
+ # resp.quick_connect_summary_list[0].last_modified_region #=> String
8236
+ # resp.last_modified_time #=> Time
8237
+ # resp.last_modified_region #=> String
8133
8238
  #
8134
8239
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListQueueQuickConnects AWS API Documentation
8135
8240
  #
@@ -8198,6 +8303,8 @@ module Aws::Connect
8198
8303
  # resp.queue_summary_list[0].arn #=> String
8199
8304
  # resp.queue_summary_list[0].name #=> String
8200
8305
  # resp.queue_summary_list[0].queue_type #=> String, one of "STANDARD", "AGENT"
8306
+ # resp.queue_summary_list[0].last_modified_time #=> Time
8307
+ # resp.queue_summary_list[0].last_modified_region #=> String
8201
8308
  # resp.next_token #=> String
8202
8309
  #
8203
8310
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListQueues AWS API Documentation
@@ -8258,6 +8365,8 @@ module Aws::Connect
8258
8365
  # resp.quick_connect_summary_list[0].arn #=> String
8259
8366
  # resp.quick_connect_summary_list[0].name #=> String
8260
8367
  # resp.quick_connect_summary_list[0].quick_connect_type #=> String, one of "USER", "QUEUE", "PHONE_NUMBER"
8368
+ # resp.quick_connect_summary_list[0].last_modified_time #=> Time
8369
+ # resp.quick_connect_summary_list[0].last_modified_region #=> String
8261
8370
  # resp.next_token #=> String
8262
8371
  #
8263
8372
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListQuickConnects AWS API Documentation
@@ -8295,6 +8404,8 @@ module Aws::Connect
8295
8404
  #
8296
8405
  # * {Types::ListRoutingProfileQueuesResponse#next_token #next_token} => String
8297
8406
  # * {Types::ListRoutingProfileQueuesResponse#routing_profile_queue_config_summary_list #routing_profile_queue_config_summary_list} => Array&lt;Types::RoutingProfileQueueConfigSummary&gt;
8407
+ # * {Types::ListRoutingProfileQueuesResponse#last_modified_time #last_modified_time} => Time
8408
+ # * {Types::ListRoutingProfileQueuesResponse#last_modified_region #last_modified_region} => String
8298
8409
  #
8299
8410
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
8300
8411
  #
@@ -8317,6 +8428,8 @@ module Aws::Connect
8317
8428
  # resp.routing_profile_queue_config_summary_list[0].priority #=> Integer
8318
8429
  # resp.routing_profile_queue_config_summary_list[0].delay #=> Integer
8319
8430
  # resp.routing_profile_queue_config_summary_list[0].channel #=> String, one of "VOICE", "CHAT", "TASK"
8431
+ # resp.last_modified_time #=> Time
8432
+ # resp.last_modified_region #=> String
8320
8433
  #
8321
8434
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListRoutingProfileQueues AWS API Documentation
8322
8435
  #
@@ -8377,6 +8490,8 @@ module Aws::Connect
8377
8490
  # resp.routing_profile_summary_list[0].id #=> String
8378
8491
  # resp.routing_profile_summary_list[0].arn #=> String
8379
8492
  # resp.routing_profile_summary_list[0].name #=> String
8493
+ # resp.routing_profile_summary_list[0].last_modified_time #=> Time
8494
+ # resp.routing_profile_summary_list[0].last_modified_region #=> String
8380
8495
  # resp.next_token #=> String
8381
8496
  #
8382
8497
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListRoutingProfiles AWS API Documentation
@@ -8532,6 +8647,8 @@ module Aws::Connect
8532
8647
  #
8533
8648
  # * {Types::ListSecurityProfileApplicationsResponse#applications #applications} => Array&lt;Types::Application&gt;
8534
8649
  # * {Types::ListSecurityProfileApplicationsResponse#next_token #next_token} => String
8650
+ # * {Types::ListSecurityProfileApplicationsResponse#last_modified_time #last_modified_time} => Time
8651
+ # * {Types::ListSecurityProfileApplicationsResponse#last_modified_region #last_modified_region} => String
8535
8652
  #
8536
8653
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
8537
8654
  #
@@ -8551,6 +8668,8 @@ module Aws::Connect
8551
8668
  # resp.applications[0].application_permissions #=> Array
8552
8669
  # resp.applications[0].application_permissions[0] #=> String
8553
8670
  # resp.next_token #=> String
8671
+ # resp.last_modified_time #=> Time
8672
+ # resp.last_modified_region #=> String
8554
8673
  #
8555
8674
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfileApplications AWS API Documentation
8556
8675
  #
@@ -8586,6 +8705,8 @@ module Aws::Connect
8586
8705
  #
8587
8706
  # * {Types::ListSecurityProfilePermissionsResponse#permissions #permissions} => Array&lt;String&gt;
8588
8707
  # * {Types::ListSecurityProfilePermissionsResponse#next_token #next_token} => String
8708
+ # * {Types::ListSecurityProfilePermissionsResponse#last_modified_time #last_modified_time} => Time
8709
+ # * {Types::ListSecurityProfilePermissionsResponse#last_modified_region #last_modified_region} => String
8589
8710
  #
8590
8711
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
8591
8712
  #
@@ -8603,6 +8724,8 @@ module Aws::Connect
8603
8724
  # resp.permissions #=> Array
8604
8725
  # resp.permissions[0] #=> String
8605
8726
  # resp.next_token #=> String
8727
+ # resp.last_modified_time #=> Time
8728
+ # resp.last_modified_region #=> String
8606
8729
  #
8607
8730
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfilePermissions AWS API Documentation
8608
8731
  #
@@ -8661,6 +8784,8 @@ module Aws::Connect
8661
8784
  # resp.security_profile_summary_list[0].id #=> String
8662
8785
  # resp.security_profile_summary_list[0].arn #=> String
8663
8786
  # resp.security_profile_summary_list[0].name #=> String
8787
+ # resp.security_profile_summary_list[0].last_modified_time #=> Time
8788
+ # resp.security_profile_summary_list[0].last_modified_region #=> String
8664
8789
  # resp.next_token #=> String
8665
8790
  #
8666
8791
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfiles AWS API Documentation
@@ -8986,6 +9111,8 @@ module Aws::Connect
8986
9111
  # resp.user_hierarchy_group_summary_list[0].id #=> String
8987
9112
  # resp.user_hierarchy_group_summary_list[0].arn #=> String
8988
9113
  # resp.user_hierarchy_group_summary_list[0].name #=> String
9114
+ # resp.user_hierarchy_group_summary_list[0].last_modified_time #=> Time
9115
+ # resp.user_hierarchy_group_summary_list[0].last_modified_region #=> String
8989
9116
  # resp.next_token #=> String
8990
9117
  #
8991
9118
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListUserHierarchyGroups AWS API Documentation
@@ -9038,6 +9165,8 @@ module Aws::Connect
9038
9165
  # resp.user_summary_list[0].id #=> String
9039
9166
  # resp.user_summary_list[0].arn #=> String
9040
9167
  # resp.user_summary_list[0].username #=> String
9168
+ # resp.user_summary_list[0].last_modified_time #=> Time
9169
+ # resp.user_summary_list[0].last_modified_region #=> String
9041
9170
  # resp.next_token #=> String
9042
9171
  #
9043
9172
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListUsers AWS API Documentation
@@ -9334,7 +9463,8 @@ module Aws::Connect
9334
9463
  end
9335
9464
 
9336
9465
  # Replicates an Amazon Connect instance in the specified Amazon Web
9337
- # Services Region.
9466
+ # Services Region and copies configuration information for Amazon
9467
+ # Connect resources across Amazon Web Services Regions.
9338
9468
  #
9339
9469
  # For more information about replicating an Amazon Connect instance, see
9340
9470
  # [Create a replica of your existing Amazon Connect instance][1] in the
@@ -9615,6 +9745,8 @@ module Aws::Connect
9615
9745
  # resp.hours_of_operations[0].config[0].end_time.minutes #=> Integer
9616
9746
  # resp.hours_of_operations[0].tags #=> Hash
9617
9747
  # resp.hours_of_operations[0].tags["TagKey"] #=> String
9748
+ # resp.hours_of_operations[0].last_modified_time #=> Time
9749
+ # resp.hours_of_operations[0].last_modified_region #=> String
9618
9750
  # resp.next_token #=> String
9619
9751
  # resp.approximate_total_count #=> Integer
9620
9752
  #
@@ -9716,6 +9848,8 @@ module Aws::Connect
9716
9848
  # resp.prompts[0].description #=> String
9717
9849
  # resp.prompts[0].tags #=> Hash
9718
9850
  # resp.prompts[0].tags["TagKey"] #=> String
9851
+ # resp.prompts[0].last_modified_time #=> Time
9852
+ # resp.prompts[0].last_modified_region #=> String
9719
9853
  # resp.next_token #=> String
9720
9854
  # resp.approximate_total_count #=> Integer
9721
9855
  #
@@ -9831,6 +9965,8 @@ module Aws::Connect
9831
9965
  # resp.queues[0].status #=> String, one of "ENABLED", "DISABLED"
9832
9966
  # resp.queues[0].tags #=> Hash
9833
9967
  # resp.queues[0].tags["TagKey"] #=> String
9968
+ # resp.queues[0].last_modified_time #=> Time
9969
+ # resp.queues[0].last_modified_region #=> String
9834
9970
  # resp.next_token #=> String
9835
9971
  # resp.approximate_total_count #=> Integer
9836
9972
  #
@@ -9938,6 +10074,8 @@ module Aws::Connect
9938
10074
  # resp.quick_connects[0].quick_connect_config.phone_config.phone_number #=> String
9939
10075
  # resp.quick_connects[0].tags #=> Hash
9940
10076
  # resp.quick_connects[0].tags["TagKey"] #=> String
10077
+ # resp.quick_connects[0].last_modified_time #=> Time
10078
+ # resp.quick_connects[0].last_modified_region #=> String
9941
10079
  # resp.next_token #=> String
9942
10080
  # resp.approximate_total_count #=> Integer
9943
10081
  #
@@ -10118,6 +10256,9 @@ module Aws::Connect
10118
10256
  # resp.routing_profiles[0].number_of_associated_queues #=> Integer
10119
10257
  # resp.routing_profiles[0].number_of_associated_users #=> Integer
10120
10258
  # resp.routing_profiles[0].agent_availability_timer #=> String, one of "TIME_SINCE_LAST_ACTIVITY", "TIME_SINCE_LAST_INBOUND"
10259
+ # resp.routing_profiles[0].last_modified_time #=> Time
10260
+ # resp.routing_profiles[0].last_modified_region #=> String
10261
+ # resp.routing_profiles[0].is_default #=> Boolean
10121
10262
  # resp.next_token #=> String
10122
10263
  # resp.approximate_total_count #=> Integer
10123
10264
  #
@@ -12552,7 +12693,13 @@ module Aws::Connect
12552
12693
  # A description of the prompt.
12553
12694
  #
12554
12695
  # @option params [String] :s3_uri
12555
- # The URI for the S3 bucket where the prompt is stored.
12696
+ # The URI for the S3 bucket where the prompt is stored. You can provide
12697
+ # S3 pre-signed URLs returned by the [GetPromptFile][1] API instead of
12698
+ # providing S3 URIs.
12699
+ #
12700
+ #
12701
+ #
12702
+ # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_GetPromptFile.html
12556
12703
  #
12557
12704
  # @return [Types::UpdatePromptResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
12558
12705
  #
@@ -13891,7 +14038,7 @@ module Aws::Connect
13891
14038
  params: params,
13892
14039
  config: config)
13893
14040
  context[:gem_name] = 'aws-sdk-connect'
13894
- context[:gem_version] = '1.131.0'
14041
+ context[:gem_version] = '1.132.0'
13895
14042
  Seahorse::Client::Request.new(handlers, context)
13896
14043
  end
13897
14044