aws-sdk-connect 1.131.0 → 1.133.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +191 -4
- data/lib/aws-sdk-connect/client_api.rb +87 -0
- data/lib/aws-sdk-connect/endpoints.rb +14 -0
- data/lib/aws-sdk-connect/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-connect/types.rb +420 -31
- data/lib/aws-sdk-connect.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d0962bfa7dfc82b9a5d65f1071bac4fad48f57d948dc1322769fc7731ae4d455
|
4
|
+
data.tar.gz: 4d77e3b49d33b079895b13207da5ac5c8ec62b98baf371328b83b6ef0d59d51b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91cb3394d0582441e8422e065a6231f9cd2e4864dd439299988640f002bb387e1de2979aec9fa302d6c59f9414d1da40148f2a7f2eb05e3a0ce4710afcfaa14d
|
7
|
+
data.tar.gz: 812cee2541e4c2e935c0785fc9f64f62cecd910a64a1558589d81d45f23a66a2a57c8790d83facaf021e1083a2ab5767c965e90f11e9ad7cddd781a61e6ef431
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.133.0 (2023-11-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - GetMetricDataV2 API: Update to include new metrics PERCENT_NON_TALK_TIME, PERCENT_TALK_TIME, PERCENT_TALK_TIME_AGENT, PERCENT_TALK_TIME_CUSTOMER
|
8
|
+
|
9
|
+
1.132.0 (2023-11-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* 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.
|
13
|
+
|
4
14
|
1.131.0 (2023-10-30)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.133.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<Types::FlowAssociationSummary>
|
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
|
#
|
@@ -6533,6 +6622,46 @@ module Aws::Connect
|
|
6533
6622
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
6534
6623
|
# Agent Hierarchy
|
6535
6624
|
#
|
6625
|
+
# PERCENT\_NON\_TALK\_TIME
|
6626
|
+
#
|
6627
|
+
# : This metric is available only for contacts analyzed by Contact Lens
|
6628
|
+
# conversational analytics.
|
6629
|
+
#
|
6630
|
+
# Unit: Percentage
|
6631
|
+
#
|
6632
|
+
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
6633
|
+
# Agent Hierarchy
|
6634
|
+
#
|
6635
|
+
# PERCENT\_TALK\_TIME
|
6636
|
+
#
|
6637
|
+
# : This metric is available only for contacts analyzed by Contact Lens
|
6638
|
+
# conversational analytics.
|
6639
|
+
#
|
6640
|
+
# Unit: Percentage
|
6641
|
+
#
|
6642
|
+
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
6643
|
+
# Agent Hierarchy
|
6644
|
+
#
|
6645
|
+
# PERCENT\_TALK\_TIME\_AGENT
|
6646
|
+
#
|
6647
|
+
# : This metric is available only for contacts analyzed by Contact Lens
|
6648
|
+
# conversational analytics.
|
6649
|
+
#
|
6650
|
+
# Unit: Percentage
|
6651
|
+
#
|
6652
|
+
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
6653
|
+
# Agent Hierarchy
|
6654
|
+
#
|
6655
|
+
# PERCENT\_TALK\_TIME\_CUSTOMER
|
6656
|
+
#
|
6657
|
+
# : This metric is available only for contacts analyzed by Contact Lens
|
6658
|
+
# conversational analytics.
|
6659
|
+
#
|
6660
|
+
# Unit: Percentage
|
6661
|
+
#
|
6662
|
+
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
6663
|
+
# Agent Hierarchy
|
6664
|
+
#
|
6536
6665
|
# SERVICE\_LEVEL
|
6537
6666
|
#
|
6538
6667
|
# : You can include up to 20 SERVICE\_LEVEL metrics in a request.
|
@@ -6684,6 +6813,8 @@ module Aws::Connect
|
|
6684
6813
|
# @return [Types::GetPromptFileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6685
6814
|
#
|
6686
6815
|
# * {Types::GetPromptFileResponse#prompt_presigned_url #prompt_presigned_url} => String
|
6816
|
+
# * {Types::GetPromptFileResponse#last_modified_time #last_modified_time} => Time
|
6817
|
+
# * {Types::GetPromptFileResponse#last_modified_region #last_modified_region} => String
|
6687
6818
|
#
|
6688
6819
|
# @example Request syntax with placeholder values
|
6689
6820
|
#
|
@@ -6695,6 +6826,8 @@ module Aws::Connect
|
|
6695
6826
|
# @example Response structure
|
6696
6827
|
#
|
6697
6828
|
# resp.prompt_presigned_url #=> String
|
6829
|
+
# resp.last_modified_time #=> Time
|
6830
|
+
# resp.last_modified_region #=> String
|
6698
6831
|
#
|
6699
6832
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetPromptFile AWS API Documentation
|
6700
6833
|
#
|
@@ -6876,6 +7009,8 @@ module Aws::Connect
|
|
6876
7009
|
# resp.agent_status_summary_list[0].arn #=> String
|
6877
7010
|
# resp.agent_status_summary_list[0].name #=> String
|
6878
7011
|
# resp.agent_status_summary_list[0].type #=> String, one of "ROUTABLE", "CUSTOM", "OFFLINE"
|
7012
|
+
# resp.agent_status_summary_list[0].last_modified_time #=> Time
|
7013
|
+
# resp.agent_status_summary_list[0].last_modified_region #=> String
|
6879
7014
|
#
|
6880
7015
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListAgentStatuses AWS API Documentation
|
6881
7016
|
#
|
@@ -7483,6 +7618,8 @@ module Aws::Connect
|
|
7483
7618
|
# resp.hours_of_operation_summary_list[0].id #=> String
|
7484
7619
|
# resp.hours_of_operation_summary_list[0].arn #=> String
|
7485
7620
|
# resp.hours_of_operation_summary_list[0].name #=> String
|
7621
|
+
# resp.hours_of_operation_summary_list[0].last_modified_time #=> Time
|
7622
|
+
# resp.hours_of_operation_summary_list[0].last_modified_region #=> String
|
7486
7623
|
# resp.next_token #=> String
|
7487
7624
|
#
|
7488
7625
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListHoursOfOperations AWS API Documentation
|
@@ -8070,6 +8207,8 @@ module Aws::Connect
|
|
8070
8207
|
# resp.prompt_summary_list[0].id #=> String
|
8071
8208
|
# resp.prompt_summary_list[0].arn #=> String
|
8072
8209
|
# resp.prompt_summary_list[0].name #=> String
|
8210
|
+
# resp.prompt_summary_list[0].last_modified_time #=> Time
|
8211
|
+
# resp.prompt_summary_list[0].last_modified_region #=> String
|
8073
8212
|
# resp.next_token #=> String
|
8074
8213
|
#
|
8075
8214
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListPrompts AWS API Documentation
|
@@ -8110,6 +8249,8 @@ module Aws::Connect
|
|
8110
8249
|
#
|
8111
8250
|
# * {Types::ListQueueQuickConnectsResponse#next_token #next_token} => String
|
8112
8251
|
# * {Types::ListQueueQuickConnectsResponse#quick_connect_summary_list #quick_connect_summary_list} => Array<Types::QuickConnectSummary>
|
8252
|
+
# * {Types::ListQueueQuickConnectsResponse#last_modified_time #last_modified_time} => Time
|
8253
|
+
# * {Types::ListQueueQuickConnectsResponse#last_modified_region #last_modified_region} => String
|
8113
8254
|
#
|
8114
8255
|
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8115
8256
|
#
|
@@ -8130,6 +8271,10 @@ module Aws::Connect
|
|
8130
8271
|
# resp.quick_connect_summary_list[0].arn #=> String
|
8131
8272
|
# resp.quick_connect_summary_list[0].name #=> String
|
8132
8273
|
# resp.quick_connect_summary_list[0].quick_connect_type #=> String, one of "USER", "QUEUE", "PHONE_NUMBER"
|
8274
|
+
# resp.quick_connect_summary_list[0].last_modified_time #=> Time
|
8275
|
+
# resp.quick_connect_summary_list[0].last_modified_region #=> String
|
8276
|
+
# resp.last_modified_time #=> Time
|
8277
|
+
# resp.last_modified_region #=> String
|
8133
8278
|
#
|
8134
8279
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListQueueQuickConnects AWS API Documentation
|
8135
8280
|
#
|
@@ -8198,6 +8343,8 @@ module Aws::Connect
|
|
8198
8343
|
# resp.queue_summary_list[0].arn #=> String
|
8199
8344
|
# resp.queue_summary_list[0].name #=> String
|
8200
8345
|
# resp.queue_summary_list[0].queue_type #=> String, one of "STANDARD", "AGENT"
|
8346
|
+
# resp.queue_summary_list[0].last_modified_time #=> Time
|
8347
|
+
# resp.queue_summary_list[0].last_modified_region #=> String
|
8201
8348
|
# resp.next_token #=> String
|
8202
8349
|
#
|
8203
8350
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListQueues AWS API Documentation
|
@@ -8258,6 +8405,8 @@ module Aws::Connect
|
|
8258
8405
|
# resp.quick_connect_summary_list[0].arn #=> String
|
8259
8406
|
# resp.quick_connect_summary_list[0].name #=> String
|
8260
8407
|
# resp.quick_connect_summary_list[0].quick_connect_type #=> String, one of "USER", "QUEUE", "PHONE_NUMBER"
|
8408
|
+
# resp.quick_connect_summary_list[0].last_modified_time #=> Time
|
8409
|
+
# resp.quick_connect_summary_list[0].last_modified_region #=> String
|
8261
8410
|
# resp.next_token #=> String
|
8262
8411
|
#
|
8263
8412
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListQuickConnects AWS API Documentation
|
@@ -8295,6 +8444,8 @@ module Aws::Connect
|
|
8295
8444
|
#
|
8296
8445
|
# * {Types::ListRoutingProfileQueuesResponse#next_token #next_token} => String
|
8297
8446
|
# * {Types::ListRoutingProfileQueuesResponse#routing_profile_queue_config_summary_list #routing_profile_queue_config_summary_list} => Array<Types::RoutingProfileQueueConfigSummary>
|
8447
|
+
# * {Types::ListRoutingProfileQueuesResponse#last_modified_time #last_modified_time} => Time
|
8448
|
+
# * {Types::ListRoutingProfileQueuesResponse#last_modified_region #last_modified_region} => String
|
8298
8449
|
#
|
8299
8450
|
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8300
8451
|
#
|
@@ -8317,6 +8468,8 @@ module Aws::Connect
|
|
8317
8468
|
# resp.routing_profile_queue_config_summary_list[0].priority #=> Integer
|
8318
8469
|
# resp.routing_profile_queue_config_summary_list[0].delay #=> Integer
|
8319
8470
|
# resp.routing_profile_queue_config_summary_list[0].channel #=> String, one of "VOICE", "CHAT", "TASK"
|
8471
|
+
# resp.last_modified_time #=> Time
|
8472
|
+
# resp.last_modified_region #=> String
|
8320
8473
|
#
|
8321
8474
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListRoutingProfileQueues AWS API Documentation
|
8322
8475
|
#
|
@@ -8377,6 +8530,8 @@ module Aws::Connect
|
|
8377
8530
|
# resp.routing_profile_summary_list[0].id #=> String
|
8378
8531
|
# resp.routing_profile_summary_list[0].arn #=> String
|
8379
8532
|
# resp.routing_profile_summary_list[0].name #=> String
|
8533
|
+
# resp.routing_profile_summary_list[0].last_modified_time #=> Time
|
8534
|
+
# resp.routing_profile_summary_list[0].last_modified_region #=> String
|
8380
8535
|
# resp.next_token #=> String
|
8381
8536
|
#
|
8382
8537
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListRoutingProfiles AWS API Documentation
|
@@ -8532,6 +8687,8 @@ module Aws::Connect
|
|
8532
8687
|
#
|
8533
8688
|
# * {Types::ListSecurityProfileApplicationsResponse#applications #applications} => Array<Types::Application>
|
8534
8689
|
# * {Types::ListSecurityProfileApplicationsResponse#next_token #next_token} => String
|
8690
|
+
# * {Types::ListSecurityProfileApplicationsResponse#last_modified_time #last_modified_time} => Time
|
8691
|
+
# * {Types::ListSecurityProfileApplicationsResponse#last_modified_region #last_modified_region} => String
|
8535
8692
|
#
|
8536
8693
|
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8537
8694
|
#
|
@@ -8551,6 +8708,8 @@ module Aws::Connect
|
|
8551
8708
|
# resp.applications[0].application_permissions #=> Array
|
8552
8709
|
# resp.applications[0].application_permissions[0] #=> String
|
8553
8710
|
# resp.next_token #=> String
|
8711
|
+
# resp.last_modified_time #=> Time
|
8712
|
+
# resp.last_modified_region #=> String
|
8554
8713
|
#
|
8555
8714
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfileApplications AWS API Documentation
|
8556
8715
|
#
|
@@ -8586,6 +8745,8 @@ module Aws::Connect
|
|
8586
8745
|
#
|
8587
8746
|
# * {Types::ListSecurityProfilePermissionsResponse#permissions #permissions} => Array<String>
|
8588
8747
|
# * {Types::ListSecurityProfilePermissionsResponse#next_token #next_token} => String
|
8748
|
+
# * {Types::ListSecurityProfilePermissionsResponse#last_modified_time #last_modified_time} => Time
|
8749
|
+
# * {Types::ListSecurityProfilePermissionsResponse#last_modified_region #last_modified_region} => String
|
8589
8750
|
#
|
8590
8751
|
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8591
8752
|
#
|
@@ -8603,6 +8764,8 @@ module Aws::Connect
|
|
8603
8764
|
# resp.permissions #=> Array
|
8604
8765
|
# resp.permissions[0] #=> String
|
8605
8766
|
# resp.next_token #=> String
|
8767
|
+
# resp.last_modified_time #=> Time
|
8768
|
+
# resp.last_modified_region #=> String
|
8606
8769
|
#
|
8607
8770
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfilePermissions AWS API Documentation
|
8608
8771
|
#
|
@@ -8661,6 +8824,8 @@ module Aws::Connect
|
|
8661
8824
|
# resp.security_profile_summary_list[0].id #=> String
|
8662
8825
|
# resp.security_profile_summary_list[0].arn #=> String
|
8663
8826
|
# resp.security_profile_summary_list[0].name #=> String
|
8827
|
+
# resp.security_profile_summary_list[0].last_modified_time #=> Time
|
8828
|
+
# resp.security_profile_summary_list[0].last_modified_region #=> String
|
8664
8829
|
# resp.next_token #=> String
|
8665
8830
|
#
|
8666
8831
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfiles AWS API Documentation
|
@@ -8986,6 +9151,8 @@ module Aws::Connect
|
|
8986
9151
|
# resp.user_hierarchy_group_summary_list[0].id #=> String
|
8987
9152
|
# resp.user_hierarchy_group_summary_list[0].arn #=> String
|
8988
9153
|
# resp.user_hierarchy_group_summary_list[0].name #=> String
|
9154
|
+
# resp.user_hierarchy_group_summary_list[0].last_modified_time #=> Time
|
9155
|
+
# resp.user_hierarchy_group_summary_list[0].last_modified_region #=> String
|
8989
9156
|
# resp.next_token #=> String
|
8990
9157
|
#
|
8991
9158
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListUserHierarchyGroups AWS API Documentation
|
@@ -9038,6 +9205,8 @@ module Aws::Connect
|
|
9038
9205
|
# resp.user_summary_list[0].id #=> String
|
9039
9206
|
# resp.user_summary_list[0].arn #=> String
|
9040
9207
|
# resp.user_summary_list[0].username #=> String
|
9208
|
+
# resp.user_summary_list[0].last_modified_time #=> Time
|
9209
|
+
# resp.user_summary_list[0].last_modified_region #=> String
|
9041
9210
|
# resp.next_token #=> String
|
9042
9211
|
#
|
9043
9212
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListUsers AWS API Documentation
|
@@ -9334,7 +9503,8 @@ module Aws::Connect
|
|
9334
9503
|
end
|
9335
9504
|
|
9336
9505
|
# Replicates an Amazon Connect instance in the specified Amazon Web
|
9337
|
-
# Services Region
|
9506
|
+
# Services Region and copies configuration information for Amazon
|
9507
|
+
# Connect resources across Amazon Web Services Regions.
|
9338
9508
|
#
|
9339
9509
|
# For more information about replicating an Amazon Connect instance, see
|
9340
9510
|
# [Create a replica of your existing Amazon Connect instance][1] in the
|
@@ -9615,6 +9785,8 @@ module Aws::Connect
|
|
9615
9785
|
# resp.hours_of_operations[0].config[0].end_time.minutes #=> Integer
|
9616
9786
|
# resp.hours_of_operations[0].tags #=> Hash
|
9617
9787
|
# resp.hours_of_operations[0].tags["TagKey"] #=> String
|
9788
|
+
# resp.hours_of_operations[0].last_modified_time #=> Time
|
9789
|
+
# resp.hours_of_operations[0].last_modified_region #=> String
|
9618
9790
|
# resp.next_token #=> String
|
9619
9791
|
# resp.approximate_total_count #=> Integer
|
9620
9792
|
#
|
@@ -9716,6 +9888,8 @@ module Aws::Connect
|
|
9716
9888
|
# resp.prompts[0].description #=> String
|
9717
9889
|
# resp.prompts[0].tags #=> Hash
|
9718
9890
|
# resp.prompts[0].tags["TagKey"] #=> String
|
9891
|
+
# resp.prompts[0].last_modified_time #=> Time
|
9892
|
+
# resp.prompts[0].last_modified_region #=> String
|
9719
9893
|
# resp.next_token #=> String
|
9720
9894
|
# resp.approximate_total_count #=> Integer
|
9721
9895
|
#
|
@@ -9831,6 +10005,8 @@ module Aws::Connect
|
|
9831
10005
|
# resp.queues[0].status #=> String, one of "ENABLED", "DISABLED"
|
9832
10006
|
# resp.queues[0].tags #=> Hash
|
9833
10007
|
# resp.queues[0].tags["TagKey"] #=> String
|
10008
|
+
# resp.queues[0].last_modified_time #=> Time
|
10009
|
+
# resp.queues[0].last_modified_region #=> String
|
9834
10010
|
# resp.next_token #=> String
|
9835
10011
|
# resp.approximate_total_count #=> Integer
|
9836
10012
|
#
|
@@ -9938,6 +10114,8 @@ module Aws::Connect
|
|
9938
10114
|
# resp.quick_connects[0].quick_connect_config.phone_config.phone_number #=> String
|
9939
10115
|
# resp.quick_connects[0].tags #=> Hash
|
9940
10116
|
# resp.quick_connects[0].tags["TagKey"] #=> String
|
10117
|
+
# resp.quick_connects[0].last_modified_time #=> Time
|
10118
|
+
# resp.quick_connects[0].last_modified_region #=> String
|
9941
10119
|
# resp.next_token #=> String
|
9942
10120
|
# resp.approximate_total_count #=> Integer
|
9943
10121
|
#
|
@@ -10118,6 +10296,9 @@ module Aws::Connect
|
|
10118
10296
|
# resp.routing_profiles[0].number_of_associated_queues #=> Integer
|
10119
10297
|
# resp.routing_profiles[0].number_of_associated_users #=> Integer
|
10120
10298
|
# resp.routing_profiles[0].agent_availability_timer #=> String, one of "TIME_SINCE_LAST_ACTIVITY", "TIME_SINCE_LAST_INBOUND"
|
10299
|
+
# resp.routing_profiles[0].last_modified_time #=> Time
|
10300
|
+
# resp.routing_profiles[0].last_modified_region #=> String
|
10301
|
+
# resp.routing_profiles[0].is_default #=> Boolean
|
10121
10302
|
# resp.next_token #=> String
|
10122
10303
|
# resp.approximate_total_count #=> Integer
|
10123
10304
|
#
|
@@ -12552,7 +12733,13 @@ module Aws::Connect
|
|
12552
12733
|
# A description of the prompt.
|
12553
12734
|
#
|
12554
12735
|
# @option params [String] :s3_uri
|
12555
|
-
# The URI for the S3 bucket where the prompt is stored.
|
12736
|
+
# The URI for the S3 bucket where the prompt is stored. You can provide
|
12737
|
+
# S3 pre-signed URLs returned by the [GetPromptFile][1] API instead of
|
12738
|
+
# providing S3 URIs.
|
12739
|
+
#
|
12740
|
+
#
|
12741
|
+
#
|
12742
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_GetPromptFile.html
|
12556
12743
|
#
|
12557
12744
|
# @return [Types::UpdatePromptResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12558
12745
|
#
|
@@ -13891,7 +14078,7 @@ module Aws::Connect
|
|
13891
14078
|
params: params,
|
13892
14079
|
config: config)
|
13893
14080
|
context[:gem_name] = 'aws-sdk-connect'
|
13894
|
-
context[:gem_version] = '1.
|
14081
|
+
context[:gem_version] = '1.133.0'
|
13895
14082
|
Seahorse::Client::Request.new(handlers, context)
|
13896
14083
|
end
|
13897
14084
|
|