aws-sdk-connect 1.151.0 → 1.153.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 +88 -7
- data/lib/aws-sdk-connect/client_api.rb +26 -0
- data/lib/aws-sdk-connect/types.rb +156 -5
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +47 -7
- data/sig/types.rbs +26 -5
- 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: 4357aa434ba7c394c143c2f4c8aa9425215d1b91018086a0514ff7c0313fb323
|
4
|
+
data.tar.gz: b84175b36415e9977897b01ec5ef5e855547586239ae6eef800c5380b7325396
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea6684856d2efbffb8b443e02c850a4042efeb6c3bb00e2249c2fbefb52e05fa9ddf7fd8371e842166a20167ae0867444c94098bd84cde76fe002148d063260c
|
7
|
+
data.tar.gz: 2b00ae003e7bf5e01feece4d89d309e85c6fc580739a68438317a9f89979512cb53b95e819b827ae4719d8aea9f320680508cb7cad23ed26358980b5fd22b549
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.153.0 (2024-03-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release updates the *InstanceStorageConfig APIs to support a new ResourceType: REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS. Use this resource type to enable streaming for real-time analysis of chat contacts and to associate a Kinesis stream where real-time analysis chat segments will be published.
|
8
|
+
|
9
|
+
1.152.0 (2024-03-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds Hierarchy based Access Control fields to Security Profile public APIs and adds support for UserAttributeFilter to SearchUsers API.
|
13
|
+
|
4
14
|
1.151.0 (2024-03-12)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.153.0
|
@@ -675,7 +675,27 @@ module Aws::Connect
|
|
675
675
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
676
676
|
#
|
677
677
|
# @option params [required, String] :resource_type
|
678
|
-
# A valid resource type.
|
678
|
+
# A valid resource type. To [enable streaming for real-time analysis of
|
679
|
+
# contacts][1], use the following types:
|
680
|
+
#
|
681
|
+
# * For chat contacts, use `REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS`.
|
682
|
+
#
|
683
|
+
# * For voice contacts, use `REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS`.
|
684
|
+
#
|
685
|
+
# <note markdown="1"> `REAL_TIME_CONTACT_ANALYSIS_SEGMENTS` is deprecated, but it is still
|
686
|
+
# supported and will apply only to VOICE channel contacts. Use
|
687
|
+
# `REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS` for voice contacts moving
|
688
|
+
# forward.
|
689
|
+
#
|
690
|
+
# If you have previously associated a stream with
|
691
|
+
# `REAL_TIME_CONTACT_ANALYSIS_SEGMENTS`, no action is needed to update
|
692
|
+
# the stream to `REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS`.
|
693
|
+
#
|
694
|
+
# </note>
|
695
|
+
#
|
696
|
+
#
|
697
|
+
#
|
698
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/enable-contact-analysis-segment-streams.html
|
679
699
|
#
|
680
700
|
# @option params [required, Types::InstanceStorageConfig] :storage_config
|
681
701
|
# A valid storage type.
|
@@ -688,7 +708,7 @@ module Aws::Connect
|
|
688
708
|
#
|
689
709
|
# resp = client.associate_instance_storage_config({
|
690
710
|
# instance_id: "InstanceId", # required
|
691
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS, SCREEN_RECORDINGS
|
711
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS, SCREEN_RECORDINGS, REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS, REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS
|
692
712
|
# storage_config: { # required
|
693
713
|
# association_id: "AssociationId",
|
694
714
|
# storage_type: "S3", # required, accepts S3, KINESIS_VIDEO_STREAM, KINESIS_STREAM, KINESIS_FIREHOSE
|
@@ -2726,6 +2746,15 @@ module Aws::Connect
|
|
2726
2746
|
# A list of third-party applications that the security profile will give
|
2727
2747
|
# access to.
|
2728
2748
|
#
|
2749
|
+
# @option params [Array<String>] :hierarchy_restricted_resources
|
2750
|
+
# The list of resources that a security profile applies hierarchy
|
2751
|
+
# restrictions to in Amazon Connect. Following are acceptable
|
2752
|
+
# ResourceNames: `User`.
|
2753
|
+
#
|
2754
|
+
# @option params [String] :allowed_access_control_hierarchy_group_id
|
2755
|
+
# The identifier of the hierarchy group that a security profile uses to
|
2756
|
+
# restrict access to resources in Amazon Connect.
|
2757
|
+
#
|
2729
2758
|
# @return [Types::CreateSecurityProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2730
2759
|
#
|
2731
2760
|
# * {Types::CreateSecurityProfileResponse#security_profile_id #security_profile_id} => String
|
@@ -2751,6 +2780,8 @@ module Aws::Connect
|
|
2751
2780
|
# application_permissions: ["Permission"],
|
2752
2781
|
# },
|
2753
2782
|
# ],
|
2783
|
+
# hierarchy_restricted_resources: ["HierarchyRestrictedResourceName"],
|
2784
|
+
# allowed_access_control_hierarchy_group_id: "HierarchyGroupId",
|
2754
2785
|
# })
|
2755
2786
|
#
|
2756
2787
|
# @example Response structure
|
@@ -4829,7 +4860,7 @@ module Aws::Connect
|
|
4829
4860
|
# resp = client.describe_instance_storage_config({
|
4830
4861
|
# instance_id: "InstanceId", # required
|
4831
4862
|
# association_id: "AssociationId", # required
|
4832
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS, SCREEN_RECORDINGS
|
4863
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS, SCREEN_RECORDINGS, REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS, REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS
|
4833
4864
|
# })
|
4834
4865
|
#
|
4835
4866
|
# @example Response structure
|
@@ -5261,6 +5292,9 @@ module Aws::Connect
|
|
5261
5292
|
# resp.security_profile.tag_restricted_resources[0] #=> String
|
5262
5293
|
# resp.security_profile.last_modified_time #=> Time
|
5263
5294
|
# resp.security_profile.last_modified_region #=> String
|
5295
|
+
# resp.security_profile.hierarchy_restricted_resources #=> Array
|
5296
|
+
# resp.security_profile.hierarchy_restricted_resources[0] #=> String
|
5297
|
+
# resp.security_profile.allowed_access_control_hierarchy_group_id #=> String
|
5264
5298
|
#
|
5265
5299
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeSecurityProfile AWS API Documentation
|
5266
5300
|
#
|
@@ -5792,7 +5826,7 @@ module Aws::Connect
|
|
5792
5826
|
# resp = client.disassociate_instance_storage_config({
|
5793
5827
|
# instance_id: "InstanceId", # required
|
5794
5828
|
# association_id: "AssociationId", # required
|
5795
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS, SCREEN_RECORDINGS
|
5829
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS, SCREEN_RECORDINGS, REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS, REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS
|
5796
5830
|
# })
|
5797
5831
|
#
|
5798
5832
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateInstanceStorageConfig AWS API Documentation
|
@@ -9252,7 +9286,7 @@ module Aws::Connect
|
|
9252
9286
|
#
|
9253
9287
|
# resp = client.list_instance_storage_configs({
|
9254
9288
|
# instance_id: "InstanceId", # required
|
9255
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS, SCREEN_RECORDINGS
|
9289
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS, SCREEN_RECORDINGS, REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS, REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS
|
9256
9290
|
# next_token: "NextToken",
|
9257
9291
|
# max_results: 1,
|
9258
9292
|
# })
|
@@ -12484,6 +12518,42 @@ module Aws::Connect
|
|
12484
12518
|
# tag_value: "String",
|
12485
12519
|
# },
|
12486
12520
|
# },
|
12521
|
+
# user_attribute_filter: {
|
12522
|
+
# or_conditions: [
|
12523
|
+
# {
|
12524
|
+
# tag_conditions: [
|
12525
|
+
# {
|
12526
|
+
# tag_key: "String",
|
12527
|
+
# tag_value: "String",
|
12528
|
+
# },
|
12529
|
+
# ],
|
12530
|
+
# hierarchy_group_condition: {
|
12531
|
+
# value: "String",
|
12532
|
+
# hierarchy_group_match_type: "EXACT", # accepts EXACT, WITH_CHILD_GROUPS
|
12533
|
+
# },
|
12534
|
+
# },
|
12535
|
+
# ],
|
12536
|
+
# and_condition: {
|
12537
|
+
# tag_conditions: [
|
12538
|
+
# {
|
12539
|
+
# tag_key: "String",
|
12540
|
+
# tag_value: "String",
|
12541
|
+
# },
|
12542
|
+
# ],
|
12543
|
+
# hierarchy_group_condition: {
|
12544
|
+
# value: "String",
|
12545
|
+
# hierarchy_group_match_type: "EXACT", # accepts EXACT, WITH_CHILD_GROUPS
|
12546
|
+
# },
|
12547
|
+
# },
|
12548
|
+
# tag_condition: {
|
12549
|
+
# tag_key: "String",
|
12550
|
+
# tag_value: "String",
|
12551
|
+
# },
|
12552
|
+
# hierarchy_group_condition: {
|
12553
|
+
# value: "String",
|
12554
|
+
# hierarchy_group_match_type: "EXACT", # accepts EXACT, WITH_CHILD_GROUPS
|
12555
|
+
# },
|
12556
|
+
# },
|
12487
12557
|
# },
|
12488
12558
|
# search_criteria: {
|
12489
12559
|
# or_conditions: [
|
@@ -14903,7 +14973,7 @@ module Aws::Connect
|
|
14903
14973
|
# resp = client.update_instance_storage_config({
|
14904
14974
|
# instance_id: "InstanceId", # required
|
14905
14975
|
# association_id: "AssociationId", # required
|
14906
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS, SCREEN_RECORDINGS
|
14976
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS, SCREEN_RECORDINGS, REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS, REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS
|
14907
14977
|
# storage_config: { # required
|
14908
14978
|
# association_id: "AssociationId",
|
14909
14979
|
# storage_type: "S3", # required, accepts S3, KINESIS_VIDEO_STREAM, KINESIS_STREAM, KINESIS_FIREHOSE
|
@@ -15905,6 +15975,15 @@ module Aws::Connect
|
|
15905
15975
|
#
|
15906
15976
|
# A list of the third-party application's metadata.
|
15907
15977
|
#
|
15978
|
+
# @option params [Array<String>] :hierarchy_restricted_resources
|
15979
|
+
# The list of resources that a security profile applies hierarchy
|
15980
|
+
# restrictions to in Amazon Connect. Following are acceptable
|
15981
|
+
# ResourceNames: `User`.
|
15982
|
+
#
|
15983
|
+
# @option params [String] :allowed_access_control_hierarchy_group_id
|
15984
|
+
# The identifier of the hierarchy group that a security profile uses to
|
15985
|
+
# restrict access to resources in Amazon Connect.
|
15986
|
+
#
|
15908
15987
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
15909
15988
|
#
|
15910
15989
|
# @example Request syntax with placeholder values
|
@@ -15924,6 +16003,8 @@ module Aws::Connect
|
|
15924
16003
|
# application_permissions: ["Permission"],
|
15925
16004
|
# },
|
15926
16005
|
# ],
|
16006
|
+
# hierarchy_restricted_resources: ["HierarchyRestrictedResourceName"],
|
16007
|
+
# allowed_access_control_hierarchy_group_id: "HierarchyGroupId",
|
15927
16008
|
# })
|
15928
16009
|
#
|
15929
16010
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateSecurityProfile AWS API Documentation
|
@@ -16600,7 +16681,7 @@ module Aws::Connect
|
|
16600
16681
|
params: params,
|
16601
16682
|
config: config)
|
16602
16683
|
context[:gem_name] = 'aws-sdk-connect'
|
16603
|
-
context[:gem_version] = '1.
|
16684
|
+
context[:gem_version] = '1.153.0'
|
16604
16685
|
Seahorse::Client::Request.new(handlers, context)
|
16605
16686
|
end
|
16606
16687
|
|
@@ -86,7 +86,9 @@ module Aws::Connect
|
|
86
86
|
Attendee = Shapes::StructureShape.new(name: 'Attendee')
|
87
87
|
AttendeeId = Shapes::StringShape.new(name: 'AttendeeId')
|
88
88
|
Attribute = Shapes::StructureShape.new(name: 'Attribute')
|
89
|
+
AttributeAndCondition = Shapes::StructureShape.new(name: 'AttributeAndCondition')
|
89
90
|
AttributeName = Shapes::StringShape.new(name: 'AttributeName')
|
91
|
+
AttributeOrConditionList = Shapes::ListShape.new(name: 'AttributeOrConditionList')
|
90
92
|
AttributeValue = Shapes::StringShape.new(name: 'AttributeValue')
|
91
93
|
Attributes = Shapes::MapShape.new(name: 'Attributes')
|
92
94
|
AttributesList = Shapes::ListShape.new(name: 'AttributesList')
|
@@ -174,6 +176,7 @@ module Aws::Connect
|
|
174
176
|
Content = Shapes::StringShape.new(name: 'Content')
|
175
177
|
ContentType = Shapes::StringShape.new(name: 'ContentType')
|
176
178
|
ControlPlaneTagFilter = Shapes::StructureShape.new(name: 'ControlPlaneTagFilter')
|
179
|
+
ControlPlaneUserAttributeFilter = Shapes::StructureShape.new(name: 'ControlPlaneUserAttributeFilter')
|
177
180
|
CreateAgentStatusRequest = Shapes::StructureShape.new(name: 'CreateAgentStatusRequest')
|
178
181
|
CreateAgentStatusResponse = Shapes::StructureShape.new(name: 'CreateAgentStatusResponse')
|
179
182
|
CreateCaseActionDefinition = Shapes::StructureShape.new(name: 'CreateCaseActionDefinition')
|
@@ -479,6 +482,8 @@ module Aws::Connect
|
|
479
482
|
HierarchyLevelUpdate = Shapes::StructureShape.new(name: 'HierarchyLevelUpdate')
|
480
483
|
HierarchyPath = Shapes::StructureShape.new(name: 'HierarchyPath')
|
481
484
|
HierarchyPathReference = Shapes::StructureShape.new(name: 'HierarchyPathReference')
|
485
|
+
HierarchyRestrictedResourceList = Shapes::ListShape.new(name: 'HierarchyRestrictedResourceList')
|
486
|
+
HierarchyRestrictedResourceName = Shapes::StringShape.new(name: 'HierarchyRestrictedResourceName')
|
482
487
|
HierarchyStructure = Shapes::StructureShape.new(name: 'HierarchyStructure')
|
483
488
|
HierarchyStructureUpdate = Shapes::StructureShape.new(name: 'HierarchyStructureUpdate')
|
484
489
|
HistoricalMetric = Shapes::StructureShape.new(name: 'HistoricalMetric')
|
@@ -1436,6 +1441,12 @@ module Aws::Connect
|
|
1436
1441
|
Attribute.add_member(:value, Shapes::ShapeRef.new(shape: InstanceAttributeValue, location_name: "Value"))
|
1437
1442
|
Attribute.struct_class = Types::Attribute
|
1438
1443
|
|
1444
|
+
AttributeAndCondition.add_member(:tag_conditions, Shapes::ShapeRef.new(shape: TagAndConditionList, location_name: "TagConditions"))
|
1445
|
+
AttributeAndCondition.add_member(:hierarchy_group_condition, Shapes::ShapeRef.new(shape: HierarchyGroupCondition, location_name: "HierarchyGroupCondition"))
|
1446
|
+
AttributeAndCondition.struct_class = Types::AttributeAndCondition
|
1447
|
+
|
1448
|
+
AttributeOrConditionList.member = Shapes::ShapeRef.new(shape: AttributeAndCondition)
|
1449
|
+
|
1439
1450
|
Attributes.key = Shapes::ShapeRef.new(shape: AttributeName)
|
1440
1451
|
Attributes.value = Shapes::ShapeRef.new(shape: AttributeValue)
|
1441
1452
|
|
@@ -1667,6 +1678,12 @@ module Aws::Connect
|
|
1667
1678
|
ControlPlaneTagFilter.add_member(:tag_condition, Shapes::ShapeRef.new(shape: TagCondition, location_name: "TagCondition"))
|
1668
1679
|
ControlPlaneTagFilter.struct_class = Types::ControlPlaneTagFilter
|
1669
1680
|
|
1681
|
+
ControlPlaneUserAttributeFilter.add_member(:or_conditions, Shapes::ShapeRef.new(shape: AttributeOrConditionList, location_name: "OrConditions"))
|
1682
|
+
ControlPlaneUserAttributeFilter.add_member(:and_condition, Shapes::ShapeRef.new(shape: AttributeAndCondition, location_name: "AndCondition"))
|
1683
|
+
ControlPlaneUserAttributeFilter.add_member(:tag_condition, Shapes::ShapeRef.new(shape: TagCondition, location_name: "TagCondition"))
|
1684
|
+
ControlPlaneUserAttributeFilter.add_member(:hierarchy_group_condition, Shapes::ShapeRef.new(shape: HierarchyGroupCondition, location_name: "HierarchyGroupCondition"))
|
1685
|
+
ControlPlaneUserAttributeFilter.struct_class = Types::ControlPlaneUserAttributeFilter
|
1686
|
+
|
1670
1687
|
CreateAgentStatusRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
1671
1688
|
CreateAgentStatusRequest.add_member(:name, Shapes::ShapeRef.new(shape: AgentStatusName, required: true, location_name: "Name"))
|
1672
1689
|
CreateAgentStatusRequest.add_member(:description, Shapes::ShapeRef.new(shape: AgentStatusDescription, location_name: "Description"))
|
@@ -1853,6 +1870,8 @@ module Aws::Connect
|
|
1853
1870
|
CreateSecurityProfileRequest.add_member(:allowed_access_control_tags, Shapes::ShapeRef.new(shape: AllowedAccessControlTags, location_name: "AllowedAccessControlTags"))
|
1854
1871
|
CreateSecurityProfileRequest.add_member(:tag_restricted_resources, Shapes::ShapeRef.new(shape: TagRestrictedResourceList, location_name: "TagRestrictedResources"))
|
1855
1872
|
CreateSecurityProfileRequest.add_member(:applications, Shapes::ShapeRef.new(shape: Applications, location_name: "Applications"))
|
1873
|
+
CreateSecurityProfileRequest.add_member(:hierarchy_restricted_resources, Shapes::ShapeRef.new(shape: HierarchyRestrictedResourceList, location_name: "HierarchyRestrictedResources"))
|
1874
|
+
CreateSecurityProfileRequest.add_member(:allowed_access_control_hierarchy_group_id, Shapes::ShapeRef.new(shape: HierarchyGroupId, location_name: "AllowedAccessControlHierarchyGroupId"))
|
1856
1875
|
CreateSecurityProfileRequest.struct_class = Types::CreateSecurityProfileRequest
|
1857
1876
|
|
1858
1877
|
CreateSecurityProfileResponse.add_member(:security_profile_id, Shapes::ShapeRef.new(shape: SecurityProfileId, location_name: "SecurityProfileId"))
|
@@ -2829,6 +2848,8 @@ module Aws::Connect
|
|
2829
2848
|
HierarchyPathReference.add_member(:level_five, Shapes::ShapeRef.new(shape: HierarchyGroupSummaryReference, location_name: "LevelFive"))
|
2830
2849
|
HierarchyPathReference.struct_class = Types::HierarchyPathReference
|
2831
2850
|
|
2851
|
+
HierarchyRestrictedResourceList.member = Shapes::ShapeRef.new(shape: HierarchyRestrictedResourceName)
|
2852
|
+
|
2832
2853
|
HierarchyStructure.add_member(:level_one, Shapes::ShapeRef.new(shape: HierarchyLevel, location_name: "LevelOne"))
|
2833
2854
|
HierarchyStructure.add_member(:level_two, Shapes::ShapeRef.new(shape: HierarchyLevel, location_name: "LevelTwo"))
|
2834
2855
|
HierarchyStructure.add_member(:level_three, Shapes::ShapeRef.new(shape: HierarchyLevel, location_name: "LevelThree"))
|
@@ -4309,6 +4330,8 @@ module Aws::Connect
|
|
4309
4330
|
SecurityProfile.add_member(:tag_restricted_resources, Shapes::ShapeRef.new(shape: TagRestrictedResourceList, location_name: "TagRestrictedResources"))
|
4310
4331
|
SecurityProfile.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
4311
4332
|
SecurityProfile.add_member(:last_modified_region, Shapes::ShapeRef.new(shape: RegionName, location_name: "LastModifiedRegion"))
|
4333
|
+
SecurityProfile.add_member(:hierarchy_restricted_resources, Shapes::ShapeRef.new(shape: HierarchyRestrictedResourceList, location_name: "HierarchyRestrictedResources"))
|
4334
|
+
SecurityProfile.add_member(:allowed_access_control_hierarchy_group_id, Shapes::ShapeRef.new(shape: HierarchyGroupId, location_name: "AllowedAccessControlHierarchyGroupId"))
|
4312
4335
|
SecurityProfile.struct_class = Types::SecurityProfile
|
4313
4336
|
|
4314
4337
|
SecurityProfileIds.member = Shapes::ShapeRef.new(shape: SecurityProfileId)
|
@@ -4951,6 +4974,8 @@ module Aws::Connect
|
|
4951
4974
|
UpdateSecurityProfileRequest.add_member(:allowed_access_control_tags, Shapes::ShapeRef.new(shape: AllowedAccessControlTags, location_name: "AllowedAccessControlTags"))
|
4952
4975
|
UpdateSecurityProfileRequest.add_member(:tag_restricted_resources, Shapes::ShapeRef.new(shape: TagRestrictedResourceList, location_name: "TagRestrictedResources"))
|
4953
4976
|
UpdateSecurityProfileRequest.add_member(:applications, Shapes::ShapeRef.new(shape: Applications, location_name: "Applications"))
|
4977
|
+
UpdateSecurityProfileRequest.add_member(:hierarchy_restricted_resources, Shapes::ShapeRef.new(shape: HierarchyRestrictedResourceList, location_name: "HierarchyRestrictedResources"))
|
4978
|
+
UpdateSecurityProfileRequest.add_member(:allowed_access_control_hierarchy_group_id, Shapes::ShapeRef.new(shape: HierarchyGroupId, location_name: "AllowedAccessControlHierarchyGroupId"))
|
4954
4979
|
UpdateSecurityProfileRequest.struct_class = Types::UpdateSecurityProfileRequest
|
4955
4980
|
|
4956
4981
|
UpdateTaskTemplateRequest.add_member(:task_template_id, Shapes::ShapeRef.new(shape: TaskTemplateId, required: true, location: "uri", location_name: "TaskTemplateId"))
|
@@ -5141,6 +5166,7 @@ module Aws::Connect
|
|
5141
5166
|
UserSearchCriteria.struct_class = Types::UserSearchCriteria
|
5142
5167
|
|
5143
5168
|
UserSearchFilter.add_member(:tag_filter, Shapes::ShapeRef.new(shape: ControlPlaneTagFilter, location_name: "TagFilter"))
|
5169
|
+
UserSearchFilter.add_member(:user_attribute_filter, Shapes::ShapeRef.new(shape: ControlPlaneUserAttributeFilter, location_name: "UserAttributeFilter"))
|
5144
5170
|
UserSearchFilter.struct_class = Types::UserSearchFilter
|
5145
5171
|
|
5146
5172
|
UserSearchSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
|
@@ -653,7 +653,28 @@ module Aws::Connect
|
|
653
653
|
# @return [String]
|
654
654
|
#
|
655
655
|
# @!attribute [rw] resource_type
|
656
|
-
# A valid resource type.
|
656
|
+
# A valid resource type. To [enable streaming for real-time analysis
|
657
|
+
# of contacts][1], use the following types:
|
658
|
+
#
|
659
|
+
# * For chat contacts, use `REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS`.
|
660
|
+
#
|
661
|
+
# * For voice contacts, use
|
662
|
+
# `REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS`.
|
663
|
+
#
|
664
|
+
# <note markdown="1"> `REAL_TIME_CONTACT_ANALYSIS_SEGMENTS` is deprecated, but it is still
|
665
|
+
# supported and will apply only to VOICE channel contacts. Use
|
666
|
+
# `REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS` for voice contacts
|
667
|
+
# moving forward.
|
668
|
+
#
|
669
|
+
# If you have previously associated a stream with
|
670
|
+
# `REAL_TIME_CONTACT_ANALYSIS_SEGMENTS`, no action is needed to update
|
671
|
+
# the stream to `REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS`.
|
672
|
+
#
|
673
|
+
# </note>
|
674
|
+
#
|
675
|
+
#
|
676
|
+
#
|
677
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/enable-contact-analysis-segment-streams.html
|
657
678
|
# @return [String]
|
658
679
|
#
|
659
680
|
# @!attribute [rw] storage_config
|
@@ -965,6 +986,27 @@ module Aws::Connect
|
|
965
986
|
include Aws::Structure
|
966
987
|
end
|
967
988
|
|
989
|
+
# A list of conditions which would be applied together with an `AND`
|
990
|
+
# condition.
|
991
|
+
#
|
992
|
+
# @!attribute [rw] tag_conditions
|
993
|
+
# A leaf node condition which can be used to specify a tag condition.
|
994
|
+
# @return [Array<Types::TagCondition>]
|
995
|
+
#
|
996
|
+
# @!attribute [rw] hierarchy_group_condition
|
997
|
+
# A leaf node condition which can be used to specify a hierarchy group
|
998
|
+
# condition.
|
999
|
+
# @return [Types::HierarchyGroupCondition]
|
1000
|
+
#
|
1001
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AttributeAndCondition AWS API Documentation
|
1002
|
+
#
|
1003
|
+
class AttributeAndCondition < Struct.new(
|
1004
|
+
:tag_conditions,
|
1005
|
+
:hierarchy_group_condition)
|
1006
|
+
SENSITIVE = []
|
1007
|
+
include Aws::Structure
|
1008
|
+
end
|
1009
|
+
|
968
1010
|
# Has audio-specific configurations as the operating parameter for Echo
|
969
1011
|
# Reduction.
|
970
1012
|
#
|
@@ -2148,6 +2190,54 @@ module Aws::Connect
|
|
2148
2190
|
include Aws::Structure
|
2149
2191
|
end
|
2150
2192
|
|
2193
|
+
# An object that can be used to specify Tag conditions or Hierarchy
|
2194
|
+
# Group conditions inside the `SearchFilter`.
|
2195
|
+
#
|
2196
|
+
# This accepts an `OR` of `AND` (List of List) input where:
|
2197
|
+
#
|
2198
|
+
# * The top level list specifies conditions that need to be applied with
|
2199
|
+
# `OR` operator
|
2200
|
+
#
|
2201
|
+
# * The inner list specifies conditions that need to be applied with
|
2202
|
+
# `AND` operator.
|
2203
|
+
#
|
2204
|
+
# <note markdown="1"> Only one field can be populated. Maximum number of allowed Tag
|
2205
|
+
# conditions is 25. Maximum number of allowed Hierarchy Group conditions
|
2206
|
+
# is 20.
|
2207
|
+
#
|
2208
|
+
# </note>
|
2209
|
+
#
|
2210
|
+
# @!attribute [rw] or_conditions
|
2211
|
+
# A list of conditions which would be applied together with an `OR`
|
2212
|
+
# condition.
|
2213
|
+
# @return [Array<Types::AttributeAndCondition>]
|
2214
|
+
#
|
2215
|
+
# @!attribute [rw] and_condition
|
2216
|
+
# A list of conditions which would be applied together with an `AND`
|
2217
|
+
# condition.
|
2218
|
+
# @return [Types::AttributeAndCondition]
|
2219
|
+
#
|
2220
|
+
# @!attribute [rw] tag_condition
|
2221
|
+
# A leaf node condition which can be used to specify a tag condition,
|
2222
|
+
# for example, `HAVE BPO = 123`.
|
2223
|
+
# @return [Types::TagCondition]
|
2224
|
+
#
|
2225
|
+
# @!attribute [rw] hierarchy_group_condition
|
2226
|
+
# A leaf node condition which can be used to specify a hierarchy group
|
2227
|
+
# condition.
|
2228
|
+
# @return [Types::HierarchyGroupCondition]
|
2229
|
+
#
|
2230
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ControlPlaneUserAttributeFilter AWS API Documentation
|
2231
|
+
#
|
2232
|
+
class ControlPlaneUserAttributeFilter < Struct.new(
|
2233
|
+
:or_conditions,
|
2234
|
+
:and_condition,
|
2235
|
+
:tag_condition,
|
2236
|
+
:hierarchy_group_condition)
|
2237
|
+
SENSITIVE = []
|
2238
|
+
include Aws::Structure
|
2239
|
+
end
|
2240
|
+
|
2151
2241
|
# @!attribute [rw] instance_id
|
2152
2242
|
# The identifier of the Amazon Connect instance. You can [find the
|
2153
2243
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -3256,6 +3346,17 @@ module Aws::Connect
|
|
3256
3346
|
# give access to.
|
3257
3347
|
# @return [Array<Types::Application>]
|
3258
3348
|
#
|
3349
|
+
# @!attribute [rw] hierarchy_restricted_resources
|
3350
|
+
# The list of resources that a security profile applies hierarchy
|
3351
|
+
# restrictions to in Amazon Connect. Following are acceptable
|
3352
|
+
# ResourceNames: `User`.
|
3353
|
+
# @return [Array<String>]
|
3354
|
+
#
|
3355
|
+
# @!attribute [rw] allowed_access_control_hierarchy_group_id
|
3356
|
+
# The identifier of the hierarchy group that a security profile uses
|
3357
|
+
# to restrict access to resources in Amazon Connect.
|
3358
|
+
# @return [String]
|
3359
|
+
#
|
3259
3360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateSecurityProfileRequest AWS API Documentation
|
3260
3361
|
#
|
3261
3362
|
class CreateSecurityProfileRequest < Struct.new(
|
@@ -3266,7 +3367,9 @@ module Aws::Connect
|
|
3266
3367
|
:tags,
|
3267
3368
|
:allowed_access_control_tags,
|
3268
3369
|
:tag_restricted_resources,
|
3269
|
-
:applications
|
3370
|
+
:applications,
|
3371
|
+
:hierarchy_restricted_resources,
|
3372
|
+
:allowed_access_control_hierarchy_group_id)
|
3270
3373
|
SENSITIVE = []
|
3271
3374
|
include Aws::Structure
|
3272
3375
|
end
|
@@ -16516,6 +16619,17 @@ module Aws::Connect
|
|
16516
16619
|
# modified.
|
16517
16620
|
# @return [String]
|
16518
16621
|
#
|
16622
|
+
# @!attribute [rw] hierarchy_restricted_resources
|
16623
|
+
# The list of resources that a security profile applies hierarchy
|
16624
|
+
# restrictions to in Amazon Connect. Following are acceptable
|
16625
|
+
# ResourceNames: `User`.
|
16626
|
+
# @return [Array<String>]
|
16627
|
+
#
|
16628
|
+
# @!attribute [rw] allowed_access_control_hierarchy_group_id
|
16629
|
+
# The identifier of the hierarchy group that a security profile uses
|
16630
|
+
# to restrict access to resources in Amazon Connect.
|
16631
|
+
# @return [String]
|
16632
|
+
#
|
16519
16633
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SecurityProfile AWS API Documentation
|
16520
16634
|
#
|
16521
16635
|
class SecurityProfile < Struct.new(
|
@@ -16528,7 +16642,9 @@ module Aws::Connect
|
|
16528
16642
|
:allowed_access_control_tags,
|
16529
16643
|
:tag_restricted_resources,
|
16530
16644
|
:last_modified_time,
|
16531
|
-
:last_modified_region
|
16645
|
+
:last_modified_region,
|
16646
|
+
:hierarchy_restricted_resources,
|
16647
|
+
:allowed_access_control_hierarchy_group_id)
|
16532
16648
|
SENSITIVE = []
|
16533
16649
|
include Aws::Structure
|
16534
16650
|
end
|
@@ -19929,6 +20045,17 @@ module Aws::Connect
|
|
19929
20045
|
# A list of the third-party application's metadata.
|
19930
20046
|
# @return [Array<Types::Application>]
|
19931
20047
|
#
|
20048
|
+
# @!attribute [rw] hierarchy_restricted_resources
|
20049
|
+
# The list of resources that a security profile applies hierarchy
|
20050
|
+
# restrictions to in Amazon Connect. Following are acceptable
|
20051
|
+
# ResourceNames: `User`.
|
20052
|
+
# @return [Array<String>]
|
20053
|
+
#
|
20054
|
+
# @!attribute [rw] allowed_access_control_hierarchy_group_id
|
20055
|
+
# The identifier of the hierarchy group that a security profile uses
|
20056
|
+
# to restrict access to resources in Amazon Connect.
|
20057
|
+
# @return [String]
|
20058
|
+
#
|
19932
20059
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateSecurityProfileRequest AWS API Documentation
|
19933
20060
|
#
|
19934
20061
|
class UpdateSecurityProfileRequest < Struct.new(
|
@@ -19938,7 +20065,9 @@ module Aws::Connect
|
|
19938
20065
|
:instance_id,
|
19939
20066
|
:allowed_access_control_tags,
|
19940
20067
|
:tag_restricted_resources,
|
19941
|
-
:applications
|
20068
|
+
:applications,
|
20069
|
+
:hierarchy_restricted_resources,
|
20070
|
+
:allowed_access_control_hierarchy_group_id)
|
19942
20071
|
SENSITIVE = []
|
19943
20072
|
include Aws::Structure
|
19944
20073
|
end
|
@@ -20890,10 +21019,32 @@ module Aws::Connect
|
|
20890
21019
|
# operator.
|
20891
21020
|
# @return [Types::ControlPlaneTagFilter]
|
20892
21021
|
#
|
21022
|
+
# @!attribute [rw] user_attribute_filter
|
21023
|
+
# An object that can be used to specify Tag conditions or Hierarchy
|
21024
|
+
# Group conditions inside the SearchFilter.
|
21025
|
+
#
|
21026
|
+
# This accepts an `OR` of `AND` (List of List) input where:
|
21027
|
+
#
|
21028
|
+
# * The top level list specifies conditions that need to be applied
|
21029
|
+
# with `OR` operator.
|
21030
|
+
#
|
21031
|
+
# * The inner list specifies conditions that need to be applied with
|
21032
|
+
# `AND` operator.
|
21033
|
+
#
|
21034
|
+
# <note markdown="1"> Only one field can be populated. This object can’t be used along
|
21035
|
+
# with TagFilter. Request can either contain TagFilter or
|
21036
|
+
# UserAttributeFilter if SearchFilter is specified, combination of
|
21037
|
+
# both is not supported and such request will throw
|
21038
|
+
# AccessDeniedException.
|
21039
|
+
#
|
21040
|
+
# </note>
|
21041
|
+
# @return [Types::ControlPlaneUserAttributeFilter]
|
21042
|
+
#
|
20893
21043
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UserSearchFilter AWS API Documentation
|
20894
21044
|
#
|
20895
21045
|
class UserSearchFilter < Struct.new(
|
20896
|
-
:tag_filter
|
21046
|
+
:tag_filter,
|
21047
|
+
:user_attribute_filter)
|
20897
21048
|
SENSITIVE = []
|
20898
21049
|
include Aws::Structure
|
20899
21050
|
end
|
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -151,7 +151,7 @@ module Aws
|
|
151
151
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#associate_instance_storage_config-instance_method
|
152
152
|
def associate_instance_storage_config: (
|
153
153
|
instance_id: ::String,
|
154
|
-
resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS"),
|
154
|
+
resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS"),
|
155
155
|
storage_config: {
|
156
156
|
association_id: ::String?,
|
157
157
|
storage_type: ("S3" | "KINESIS_VIDEO_STREAM" | "KINESIS_STREAM" | "KINESIS_FIREHOSE"),
|
@@ -779,7 +779,9 @@ module Aws
|
|
779
779
|
namespace: ::String?,
|
780
780
|
application_permissions: Array[::String]?
|
781
781
|
},
|
782
|
-
]
|
782
|
+
],
|
783
|
+
?hierarchy_restricted_resources: Array[::String],
|
784
|
+
?allowed_access_control_hierarchy_group_id: ::String
|
783
785
|
) -> _CreateSecurityProfileResponseSuccess
|
784
786
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSecurityProfileResponseSuccess
|
785
787
|
|
@@ -1266,7 +1268,7 @@ module Aws
|
|
1266
1268
|
def describe_instance_storage_config: (
|
1267
1269
|
instance_id: ::String,
|
1268
1270
|
association_id: ::String,
|
1269
|
-
resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS")
|
1271
|
+
resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS")
|
1270
1272
|
) -> _DescribeInstanceStorageConfigResponseSuccess
|
1271
1273
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInstanceStorageConfigResponseSuccess
|
1272
1274
|
|
@@ -1464,7 +1466,7 @@ module Aws
|
|
1464
1466
|
def disassociate_instance_storage_config: (
|
1465
1467
|
instance_id: ::String,
|
1466
1468
|
association_id: ::String,
|
1467
|
-
resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS")
|
1469
|
+
resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS")
|
1468
1470
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1469
1471
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1470
1472
|
|
@@ -1990,7 +1992,7 @@ module Aws
|
|
1990
1992
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_instance_storage_configs-instance_method
|
1991
1993
|
def list_instance_storage_configs: (
|
1992
1994
|
instance_id: ::String,
|
1993
|
-
resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS"),
|
1995
|
+
resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS"),
|
1994
1996
|
?next_token: ::String,
|
1995
1997
|
?max_results: ::Integer
|
1996
1998
|
) -> _ListInstanceStorageConfigsResponseSuccess
|
@@ -2935,6 +2937,42 @@ module Aws
|
|
2935
2937
|
tag_key: ::String?,
|
2936
2938
|
tag_value: ::String?
|
2937
2939
|
}?
|
2940
|
+
}?,
|
2941
|
+
user_attribute_filter: {
|
2942
|
+
or_conditions: Array[
|
2943
|
+
{
|
2944
|
+
tag_conditions: Array[
|
2945
|
+
{
|
2946
|
+
tag_key: ::String?,
|
2947
|
+
tag_value: ::String?
|
2948
|
+
},
|
2949
|
+
]?,
|
2950
|
+
hierarchy_group_condition: {
|
2951
|
+
value: ::String?,
|
2952
|
+
hierarchy_group_match_type: ("EXACT" | "WITH_CHILD_GROUPS")?
|
2953
|
+
}?
|
2954
|
+
},
|
2955
|
+
]?,
|
2956
|
+
and_condition: {
|
2957
|
+
tag_conditions: Array[
|
2958
|
+
{
|
2959
|
+
tag_key: ::String?,
|
2960
|
+
tag_value: ::String?
|
2961
|
+
},
|
2962
|
+
]?,
|
2963
|
+
hierarchy_group_condition: {
|
2964
|
+
value: ::String?,
|
2965
|
+
hierarchy_group_match_type: ("EXACT" | "WITH_CHILD_GROUPS")?
|
2966
|
+
}?
|
2967
|
+
}?,
|
2968
|
+
tag_condition: {
|
2969
|
+
tag_key: ::String?,
|
2970
|
+
tag_value: ::String?
|
2971
|
+
}?,
|
2972
|
+
hierarchy_group_condition: {
|
2973
|
+
value: ::String?,
|
2974
|
+
hierarchy_group_match_type: ("EXACT" | "WITH_CHILD_GROUPS")?
|
2975
|
+
}?
|
2938
2976
|
}?
|
2939
2977
|
},
|
2940
2978
|
?search_criteria: {
|
@@ -3545,7 +3583,7 @@ module Aws
|
|
3545
3583
|
def update_instance_storage_config: (
|
3546
3584
|
instance_id: ::String,
|
3547
3585
|
association_id: ::String,
|
3548
|
-
resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS"),
|
3586
|
+
resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS"),
|
3549
3587
|
storage_config: {
|
3550
3588
|
association_id: ::String?,
|
3551
3589
|
storage_type: ("S3" | "KINESIS_VIDEO_STREAM" | "KINESIS_STREAM" | "KINESIS_FIREHOSE"),
|
@@ -3862,7 +3900,9 @@ module Aws
|
|
3862
3900
|
namespace: ::String?,
|
3863
3901
|
application_permissions: Array[::String]?
|
3864
3902
|
},
|
3865
|
-
]
|
3903
|
+
],
|
3904
|
+
?hierarchy_restricted_resources: Array[::String],
|
3905
|
+
?allowed_access_control_hierarchy_group_id: ::String
|
3866
3906
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
3867
3907
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
3868
3908
|
|
data/sig/types.rbs
CHANGED
@@ -175,7 +175,7 @@ module Aws::Connect
|
|
175
175
|
|
176
176
|
class AssociateInstanceStorageConfigRequest
|
177
177
|
attr_accessor instance_id: ::String
|
178
|
-
attr_accessor resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS")
|
178
|
+
attr_accessor resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS")
|
179
179
|
attr_accessor storage_config: Types::InstanceStorageConfig
|
180
180
|
SENSITIVE: []
|
181
181
|
end
|
@@ -265,6 +265,12 @@ module Aws::Connect
|
|
265
265
|
SENSITIVE: []
|
266
266
|
end
|
267
267
|
|
268
|
+
class AttributeAndCondition
|
269
|
+
attr_accessor tag_conditions: ::Array[Types::TagCondition]
|
270
|
+
attr_accessor hierarchy_group_condition: Types::HierarchyGroupCondition
|
271
|
+
SENSITIVE: []
|
272
|
+
end
|
273
|
+
|
268
274
|
class AudioFeatures
|
269
275
|
attr_accessor echo_reduction: ("AVAILABLE" | "UNAVAILABLE")
|
270
276
|
SENSITIVE: []
|
@@ -530,6 +536,14 @@ module Aws::Connect
|
|
530
536
|
SENSITIVE: []
|
531
537
|
end
|
532
538
|
|
539
|
+
class ControlPlaneUserAttributeFilter
|
540
|
+
attr_accessor or_conditions: ::Array[Types::AttributeAndCondition]
|
541
|
+
attr_accessor and_condition: Types::AttributeAndCondition
|
542
|
+
attr_accessor tag_condition: Types::TagCondition
|
543
|
+
attr_accessor hierarchy_group_condition: Types::HierarchyGroupCondition
|
544
|
+
SENSITIVE: []
|
545
|
+
end
|
546
|
+
|
533
547
|
class CreateAgentStatusRequest
|
534
548
|
attr_accessor instance_id: ::String
|
535
549
|
attr_accessor name: ::String
|
@@ -777,6 +791,8 @@ module Aws::Connect
|
|
777
791
|
attr_accessor allowed_access_control_tags: ::Hash[::String, ::String]
|
778
792
|
attr_accessor tag_restricted_resources: ::Array[::String]
|
779
793
|
attr_accessor applications: ::Array[Types::Application]
|
794
|
+
attr_accessor hierarchy_restricted_resources: ::Array[::String]
|
795
|
+
attr_accessor allowed_access_control_hierarchy_group_id: ::String
|
780
796
|
SENSITIVE: []
|
781
797
|
end
|
782
798
|
|
@@ -1240,7 +1256,7 @@ module Aws::Connect
|
|
1240
1256
|
class DescribeInstanceStorageConfigRequest
|
1241
1257
|
attr_accessor instance_id: ::String
|
1242
1258
|
attr_accessor association_id: ::String
|
1243
|
-
attr_accessor resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS")
|
1259
|
+
attr_accessor resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS")
|
1244
1260
|
SENSITIVE: []
|
1245
1261
|
end
|
1246
1262
|
|
@@ -1446,7 +1462,7 @@ module Aws::Connect
|
|
1446
1462
|
class DisassociateInstanceStorageConfigRequest
|
1447
1463
|
attr_accessor instance_id: ::String
|
1448
1464
|
attr_accessor association_id: ::String
|
1449
|
-
attr_accessor resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS")
|
1465
|
+
attr_accessor resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS")
|
1450
1466
|
SENSITIVE: []
|
1451
1467
|
end
|
1452
1468
|
|
@@ -2509,7 +2525,7 @@ module Aws::Connect
|
|
2509
2525
|
|
2510
2526
|
class ListInstanceStorageConfigsRequest
|
2511
2527
|
attr_accessor instance_id: ::String
|
2512
|
-
attr_accessor resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS")
|
2528
|
+
attr_accessor resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS")
|
2513
2529
|
attr_accessor next_token: ::String
|
2514
2530
|
attr_accessor max_results: ::Integer
|
2515
2531
|
SENSITIVE: []
|
@@ -3932,6 +3948,8 @@ module Aws::Connect
|
|
3932
3948
|
attr_accessor tag_restricted_resources: ::Array[::String]
|
3933
3949
|
attr_accessor last_modified_time: ::Time
|
3934
3950
|
attr_accessor last_modified_region: ::String
|
3951
|
+
attr_accessor hierarchy_restricted_resources: ::Array[::String]
|
3952
|
+
attr_accessor allowed_access_control_hierarchy_group_id: ::String
|
3935
3953
|
SENSITIVE: []
|
3936
3954
|
end
|
3937
3955
|
|
@@ -4576,7 +4594,7 @@ module Aws::Connect
|
|
4576
4594
|
class UpdateInstanceStorageConfigRequest
|
4577
4595
|
attr_accessor instance_id: ::String
|
4578
4596
|
attr_accessor association_id: ::String
|
4579
|
-
attr_accessor resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS")
|
4597
|
+
attr_accessor resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS")
|
4580
4598
|
attr_accessor storage_config: Types::InstanceStorageConfig
|
4581
4599
|
SENSITIVE: []
|
4582
4600
|
end
|
@@ -4750,6 +4768,8 @@ module Aws::Connect
|
|
4750
4768
|
attr_accessor allowed_access_control_tags: ::Hash[::String, ::String]
|
4751
4769
|
attr_accessor tag_restricted_resources: ::Array[::String]
|
4752
4770
|
attr_accessor applications: ::Array[Types::Application]
|
4771
|
+
attr_accessor hierarchy_restricted_resources: ::Array[::String]
|
4772
|
+
attr_accessor allowed_access_control_hierarchy_group_id: ::String
|
4753
4773
|
SENSITIVE: []
|
4754
4774
|
end
|
4755
4775
|
|
@@ -4986,6 +5006,7 @@ module Aws::Connect
|
|
4986
5006
|
|
4987
5007
|
class UserSearchFilter
|
4988
5008
|
attr_accessor tag_filter: Types::ControlPlaneTagFilter
|
5009
|
+
attr_accessor user_attribute_filter: Types::ControlPlaneUserAttributeFilter
|
4989
5010
|
SENSITIVE: []
|
4990
5011
|
end
|
4991
5012
|
|
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.
|
4
|
+
version: 1.153.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-03-
|
11
|
+
date: 2024-03-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|