aws-sdk-connect 1.167.0 → 1.169.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +534 -139
- data/lib/aws-sdk-connect/client_api.rb +146 -0
- data/lib/aws-sdk-connect/endpoints.rb +28 -0
- data/lib/aws-sdk-connect/plugins/endpoints.rb +4 -0
- data/lib/aws-sdk-connect/types.rb +701 -167
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +125 -1
- data/sig/types.rbs +100 -1
- metadata +2 -2
@@ -41,9 +41,13 @@ module Aws::Connect
|
|
41
41
|
AgentStatus = Shapes::StructureShape.new(name: 'AgentStatus')
|
42
42
|
AgentStatusDescription = Shapes::StringShape.new(name: 'AgentStatusDescription')
|
43
43
|
AgentStatusId = Shapes::StringShape.new(name: 'AgentStatusId')
|
44
|
+
AgentStatusList = Shapes::ListShape.new(name: 'AgentStatusList')
|
44
45
|
AgentStatusName = Shapes::StringShape.new(name: 'AgentStatusName')
|
45
46
|
AgentStatusOrderNumber = Shapes::IntegerShape.new(name: 'AgentStatusOrderNumber')
|
46
47
|
AgentStatusReference = Shapes::StructureShape.new(name: 'AgentStatusReference')
|
48
|
+
AgentStatusSearchConditionList = Shapes::ListShape.new(name: 'AgentStatusSearchConditionList')
|
49
|
+
AgentStatusSearchCriteria = Shapes::StructureShape.new(name: 'AgentStatusSearchCriteria')
|
50
|
+
AgentStatusSearchFilter = Shapes::StructureShape.new(name: 'AgentStatusSearchFilter')
|
47
51
|
AgentStatusState = Shapes::StringShape.new(name: 'AgentStatusState')
|
48
52
|
AgentStatusSummary = Shapes::StructureShape.new(name: 'AgentStatusSummary')
|
49
53
|
AgentStatusSummaryList = Shapes::ListShape.new(name: 'AgentStatusSummaryList')
|
@@ -153,12 +157,16 @@ module Aws::Connect
|
|
153
157
|
ClaimPhoneNumberResponse = Shapes::StructureShape.new(name: 'ClaimPhoneNumberResponse')
|
154
158
|
ClaimedPhoneNumberSummary = Shapes::StructureShape.new(name: 'ClaimedPhoneNumberSummary')
|
155
159
|
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
160
|
+
CommonAttributeAndCondition = Shapes::StructureShape.new(name: 'CommonAttributeAndCondition')
|
161
|
+
CommonAttributeOrConditionList = Shapes::ListShape.new(name: 'CommonAttributeOrConditionList')
|
156
162
|
CommonNameLength127 = Shapes::StringShape.new(name: 'CommonNameLength127')
|
157
163
|
Comparison = Shapes::StringShape.new(name: 'Comparison')
|
158
164
|
ComparisonOperator = Shapes::StringShape.new(name: 'ComparisonOperator')
|
159
165
|
CompleteAttachedFileUploadRequest = Shapes::StructureShape.new(name: 'CompleteAttachedFileUploadRequest')
|
160
166
|
CompleteAttachedFileUploadResponse = Shapes::StructureShape.new(name: 'CompleteAttachedFileUploadResponse')
|
161
167
|
Concurrency = Shapes::IntegerShape.new(name: 'Concurrency')
|
168
|
+
Condition = Shapes::StructureShape.new(name: 'Condition')
|
169
|
+
Conditions = Shapes::ListShape.new(name: 'Conditions')
|
162
170
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
163
171
|
ConnectionData = Shapes::StructureShape.new(name: 'ConnectionData')
|
164
172
|
Contact = Shapes::StructureShape.new(name: 'Contact')
|
@@ -211,6 +219,7 @@ module Aws::Connect
|
|
211
219
|
Contacts = Shapes::ListShape.new(name: 'Contacts')
|
212
220
|
Content = Shapes::StringShape.new(name: 'Content')
|
213
221
|
ContentType = Shapes::StringShape.new(name: 'ContentType')
|
222
|
+
ControlPlaneAttributeFilter = Shapes::StructureShape.new(name: 'ControlPlaneAttributeFilter')
|
214
223
|
ControlPlaneTagFilter = Shapes::StructureShape.new(name: 'ControlPlaneTagFilter')
|
215
224
|
ControlPlaneUserAttributeFilter = Shapes::StructureShape.new(name: 'ControlPlaneUserAttributeFilter')
|
216
225
|
CreateAgentStatusRequest = Shapes::StructureShape.new(name: 'CreateAgentStatusRequest')
|
@@ -634,6 +643,7 @@ module Aws::Connect
|
|
634
643
|
ListAuthenticationProfilesResponse = Shapes::StructureShape.new(name: 'ListAuthenticationProfilesResponse')
|
635
644
|
ListBotsRequest = Shapes::StructureShape.new(name: 'ListBotsRequest')
|
636
645
|
ListBotsResponse = Shapes::StructureShape.new(name: 'ListBotsResponse')
|
646
|
+
ListCondition = Shapes::StructureShape.new(name: 'ListCondition')
|
637
647
|
ListContactEvaluationsRequest = Shapes::StructureShape.new(name: 'ListContactEvaluationsRequest')
|
638
648
|
ListContactEvaluationsResponse = Shapes::StructureShape.new(name: 'ListContactEvaluationsResponse')
|
639
649
|
ListContactFlowModulesRequest = Shapes::StructureShape.new(name: 'ListContactFlowModulesRequest')
|
@@ -765,6 +775,9 @@ module Aws::Connect
|
|
765
775
|
NotificationDeliveryType = Shapes::StringShape.new(name: 'NotificationDeliveryType')
|
766
776
|
NotificationRecipientType = Shapes::StructureShape.new(name: 'NotificationRecipientType')
|
767
777
|
NullableProficiencyLevel = Shapes::FloatShape.new(name: 'NullableProficiencyLevel')
|
778
|
+
NullableProficiencyLimitValue = Shapes::IntegerShape.new(name: 'NullableProficiencyLimitValue')
|
779
|
+
NumberComparisonType = Shapes::StringShape.new(name: 'NumberComparisonType')
|
780
|
+
NumberCondition = Shapes::StructureShape.new(name: 'NumberCondition')
|
768
781
|
NumberReference = Shapes::StructureShape.new(name: 'NumberReference')
|
769
782
|
NumericQuestionPropertyAutomationLabel = Shapes::StringShape.new(name: 'NumericQuestionPropertyAutomationLabel')
|
770
783
|
NumericQuestionPropertyValueAutomation = Shapes::StructureShape.new(name: 'NumericQuestionPropertyValueAutomation')
|
@@ -905,10 +918,14 @@ module Aws::Connect
|
|
905
918
|
RealTimeContactAnalysisOutputType = Shapes::StringShape.new(name: 'RealTimeContactAnalysisOutputType')
|
906
919
|
RealTimeContactAnalysisPointOfInterest = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisPointOfInterest')
|
907
920
|
RealTimeContactAnalysisPointsOfInterest = Shapes::ListShape.new(name: 'RealTimeContactAnalysisPointsOfInterest')
|
921
|
+
RealTimeContactAnalysisPostContactSummaryContent = Shapes::StringShape.new(name: 'RealTimeContactAnalysisPostContactSummaryContent')
|
922
|
+
RealTimeContactAnalysisPostContactSummaryFailureCode = Shapes::StringShape.new(name: 'RealTimeContactAnalysisPostContactSummaryFailureCode')
|
923
|
+
RealTimeContactAnalysisPostContactSummaryStatus = Shapes::StringShape.new(name: 'RealTimeContactAnalysisPostContactSummaryStatus')
|
908
924
|
RealTimeContactAnalysisSegmentAttachments = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentAttachments')
|
909
925
|
RealTimeContactAnalysisSegmentCategories = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentCategories')
|
910
926
|
RealTimeContactAnalysisSegmentEvent = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentEvent')
|
911
927
|
RealTimeContactAnalysisSegmentIssues = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentIssues')
|
928
|
+
RealTimeContactAnalysisSegmentPostContactSummary = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentPostContactSummary')
|
912
929
|
RealTimeContactAnalysisSegmentTranscript = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentTranscript')
|
913
930
|
RealTimeContactAnalysisSegmentType = Shapes::StringShape.new(name: 'RealTimeContactAnalysisSegmentType')
|
914
931
|
RealTimeContactAnalysisSegmentTypes = Shapes::ListShape.new(name: 'RealTimeContactAnalysisSegmentTypes')
|
@@ -990,6 +1007,8 @@ module Aws::Connect
|
|
990
1007
|
RuleTriggerEventSource = Shapes::StructureShape.new(name: 'RuleTriggerEventSource')
|
991
1008
|
S3Config = Shapes::StructureShape.new(name: 'S3Config')
|
992
1009
|
S3Uri = Shapes::StringShape.new(name: 'S3Uri')
|
1010
|
+
SearchAgentStatusesRequest = Shapes::StructureShape.new(name: 'SearchAgentStatusesRequest')
|
1011
|
+
SearchAgentStatusesResponse = Shapes::StructureShape.new(name: 'SearchAgentStatusesResponse')
|
993
1012
|
SearchAvailablePhoneNumbersRequest = Shapes::StructureShape.new(name: 'SearchAvailablePhoneNumbersRequest')
|
994
1013
|
SearchAvailablePhoneNumbersResponse = Shapes::StructureShape.new(name: 'SearchAvailablePhoneNumbersResponse')
|
995
1014
|
SearchContactFlowModulesRequest = Shapes::StructureShape.new(name: 'SearchContactFlowModulesRequest')
|
@@ -1020,6 +1039,8 @@ module Aws::Connect
|
|
1020
1039
|
SearchSecurityProfilesResponse = Shapes::StructureShape.new(name: 'SearchSecurityProfilesResponse')
|
1021
1040
|
SearchText = Shapes::StringShape.new(name: 'SearchText')
|
1022
1041
|
SearchTextList = Shapes::ListShape.new(name: 'SearchTextList')
|
1042
|
+
SearchUserHierarchyGroupsRequest = Shapes::StructureShape.new(name: 'SearchUserHierarchyGroupsRequest')
|
1043
|
+
SearchUserHierarchyGroupsResponse = Shapes::StructureShape.new(name: 'SearchUserHierarchyGroupsResponse')
|
1023
1044
|
SearchUsersRequest = Shapes::StructureShape.new(name: 'SearchUsersRequest')
|
1024
1045
|
SearchUsersResponse = Shapes::StructureShape.new(name: 'SearchUsersResponse')
|
1025
1046
|
SearchVocabulariesRequest = Shapes::StructureShape.new(name: 'SearchVocabulariesRequest')
|
@@ -1130,6 +1151,7 @@ module Aws::Connect
|
|
1130
1151
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
1131
1152
|
TagValueString = Shapes::StringShape.new(name: 'TagValueString')
|
1132
1153
|
TagsList = Shapes::ListShape.new(name: 'TagsList')
|
1154
|
+
TargetListType = Shapes::StringShape.new(name: 'TargetListType')
|
1133
1155
|
TaskActionDefinition = Shapes::StructureShape.new(name: 'TaskActionDefinition')
|
1134
1156
|
TaskDescriptionExpression = Shapes::StringShape.new(name: 'TaskDescriptionExpression')
|
1135
1157
|
TaskNameExpression = Shapes::StringShape.new(name: 'TaskNameExpression')
|
@@ -1272,6 +1294,10 @@ module Aws::Connect
|
|
1272
1294
|
UserDataFilters = Shapes::StructureShape.new(name: 'UserDataFilters')
|
1273
1295
|
UserDataHierarchyGroups = Shapes::ListShape.new(name: 'UserDataHierarchyGroups')
|
1274
1296
|
UserDataList = Shapes::ListShape.new(name: 'UserDataList')
|
1297
|
+
UserHierarchyGroupList = Shapes::ListShape.new(name: 'UserHierarchyGroupList')
|
1298
|
+
UserHierarchyGroupSearchConditionList = Shapes::ListShape.new(name: 'UserHierarchyGroupSearchConditionList')
|
1299
|
+
UserHierarchyGroupSearchCriteria = Shapes::StructureShape.new(name: 'UserHierarchyGroupSearchCriteria')
|
1300
|
+
UserHierarchyGroupSearchFilter = Shapes::StructureShape.new(name: 'UserHierarchyGroupSearchFilter')
|
1275
1301
|
UserId = Shapes::StringShape.new(name: 'UserId')
|
1276
1302
|
UserIdList = Shapes::ListShape.new(name: 'UserIdList')
|
1277
1303
|
UserIdentityInfo = Shapes::StructureShape.new(name: 'UserIdentityInfo')
|
@@ -1402,11 +1428,23 @@ module Aws::Connect
|
|
1402
1428
|
AgentStatus.add_member(:last_modified_region, Shapes::ShapeRef.new(shape: RegionName, location_name: "LastModifiedRegion"))
|
1403
1429
|
AgentStatus.struct_class = Types::AgentStatus
|
1404
1430
|
|
1431
|
+
AgentStatusList.member = Shapes::ShapeRef.new(shape: AgentStatus)
|
1432
|
+
|
1405
1433
|
AgentStatusReference.add_member(:status_start_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StatusStartTimestamp"))
|
1406
1434
|
AgentStatusReference.add_member(:status_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "StatusArn"))
|
1407
1435
|
AgentStatusReference.add_member(:status_name, Shapes::ShapeRef.new(shape: AgentStatusName, location_name: "StatusName"))
|
1408
1436
|
AgentStatusReference.struct_class = Types::AgentStatusReference
|
1409
1437
|
|
1438
|
+
AgentStatusSearchConditionList.member = Shapes::ShapeRef.new(shape: AgentStatusSearchCriteria)
|
1439
|
+
|
1440
|
+
AgentStatusSearchCriteria.add_member(:or_conditions, Shapes::ShapeRef.new(shape: AgentStatusSearchConditionList, location_name: "OrConditions"))
|
1441
|
+
AgentStatusSearchCriteria.add_member(:and_conditions, Shapes::ShapeRef.new(shape: AgentStatusSearchConditionList, location_name: "AndConditions"))
|
1442
|
+
AgentStatusSearchCriteria.add_member(:string_condition, Shapes::ShapeRef.new(shape: StringCondition, location_name: "StringCondition"))
|
1443
|
+
AgentStatusSearchCriteria.struct_class = Types::AgentStatusSearchCriteria
|
1444
|
+
|
1445
|
+
AgentStatusSearchFilter.add_member(:attribute_filter, Shapes::ShapeRef.new(shape: ControlPlaneAttributeFilter, location_name: "AttributeFilter"))
|
1446
|
+
AgentStatusSearchFilter.struct_class = Types::AgentStatusSearchFilter
|
1447
|
+
|
1410
1448
|
AgentStatusSummary.add_member(:id, Shapes::ShapeRef.new(shape: AgentStatusId, location_name: "Id"))
|
1411
1449
|
AgentStatusSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
|
1412
1450
|
AgentStatusSummary.add_member(:name, Shapes::ShapeRef.new(shape: AgentStatusName, location_name: "Name"))
|
@@ -1726,6 +1764,11 @@ module Aws::Connect
|
|
1726
1764
|
ClaimedPhoneNumberSummary.add_member(:source_phone_number_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "SourcePhoneNumberArn"))
|
1727
1765
|
ClaimedPhoneNumberSummary.struct_class = Types::ClaimedPhoneNumberSummary
|
1728
1766
|
|
1767
|
+
CommonAttributeAndCondition.add_member(:tag_conditions, Shapes::ShapeRef.new(shape: TagAndConditionList, location_name: "TagConditions"))
|
1768
|
+
CommonAttributeAndCondition.struct_class = Types::CommonAttributeAndCondition
|
1769
|
+
|
1770
|
+
CommonAttributeOrConditionList.member = Shapes::ShapeRef.new(shape: CommonAttributeAndCondition)
|
1771
|
+
|
1729
1772
|
CompleteAttachedFileUploadRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
1730
1773
|
CompleteAttachedFileUploadRequest.add_member(:file_id, Shapes::ShapeRef.new(shape: FileId, required: true, location: "uri", location_name: "FileId"))
|
1731
1774
|
CompleteAttachedFileUploadRequest.add_member(:associated_resource_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location: "querystring", location_name: "associatedResourceArn"))
|
@@ -1733,6 +1776,12 @@ module Aws::Connect
|
|
1733
1776
|
|
1734
1777
|
CompleteAttachedFileUploadResponse.struct_class = Types::CompleteAttachedFileUploadResponse
|
1735
1778
|
|
1779
|
+
Condition.add_member(:string_condition, Shapes::ShapeRef.new(shape: StringCondition, location_name: "StringCondition"))
|
1780
|
+
Condition.add_member(:number_condition, Shapes::ShapeRef.new(shape: NumberCondition, location_name: "NumberCondition"))
|
1781
|
+
Condition.struct_class = Types::Condition
|
1782
|
+
|
1783
|
+
Conditions.member = Shapes::ShapeRef.new(shape: Condition)
|
1784
|
+
|
1736
1785
|
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
1737
1786
|
ConflictException.struct_class = Types::ConflictException
|
1738
1787
|
|
@@ -1897,6 +1946,11 @@ module Aws::Connect
|
|
1897
1946
|
|
1898
1947
|
Contacts.member = Shapes::ShapeRef.new(shape: ContactSearchSummary)
|
1899
1948
|
|
1949
|
+
ControlPlaneAttributeFilter.add_member(:or_conditions, Shapes::ShapeRef.new(shape: CommonAttributeOrConditionList, location_name: "OrConditions"))
|
1950
|
+
ControlPlaneAttributeFilter.add_member(:and_condition, Shapes::ShapeRef.new(shape: CommonAttributeAndCondition, location_name: "AndCondition"))
|
1951
|
+
ControlPlaneAttributeFilter.add_member(:tag_condition, Shapes::ShapeRef.new(shape: TagCondition, location_name: "TagCondition"))
|
1952
|
+
ControlPlaneAttributeFilter.struct_class = Types::ControlPlaneAttributeFilter
|
1953
|
+
|
1900
1954
|
ControlPlaneTagFilter.add_member(:or_conditions, Shapes::ShapeRef.new(shape: TagOrConditionList, location_name: "OrConditions"))
|
1901
1955
|
ControlPlaneTagFilter.add_member(:and_conditions, Shapes::ShapeRef.new(shape: TagAndConditionList, location_name: "AndConditions"))
|
1902
1956
|
ControlPlaneTagFilter.add_member(:tag_condition, Shapes::ShapeRef.new(shape: TagCondition, location_name: "TagCondition"))
|
@@ -3415,6 +3469,10 @@ module Aws::Connect
|
|
3415
3469
|
ListBotsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3416
3470
|
ListBotsResponse.struct_class = Types::ListBotsResponse
|
3417
3471
|
|
3472
|
+
ListCondition.add_member(:target_list_type, Shapes::ShapeRef.new(shape: TargetListType, location_name: "TargetListType"))
|
3473
|
+
ListCondition.add_member(:conditions, Shapes::ShapeRef.new(shape: Conditions, location_name: "Conditions"))
|
3474
|
+
ListCondition.struct_class = Types::ListCondition
|
3475
|
+
|
3418
3476
|
ListContactEvaluationsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
3419
3477
|
ListContactEvaluationsRequest.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, required: true, location: "querystring", location_name: "contactId"))
|
3420
3478
|
ListContactEvaluationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
@@ -3912,6 +3970,12 @@ module Aws::Connect
|
|
3912
3970
|
NotificationRecipientType.add_member(:user_ids, Shapes::ShapeRef.new(shape: UserIdList, location_name: "UserIds"))
|
3913
3971
|
NotificationRecipientType.struct_class = Types::NotificationRecipientType
|
3914
3972
|
|
3973
|
+
NumberCondition.add_member(:field_name, Shapes::ShapeRef.new(shape: String, location_name: "FieldName"))
|
3974
|
+
NumberCondition.add_member(:min_value, Shapes::ShapeRef.new(shape: NullableProficiencyLimitValue, location_name: "MinValue"))
|
3975
|
+
NumberCondition.add_member(:max_value, Shapes::ShapeRef.new(shape: NullableProficiencyLimitValue, location_name: "MaxValue"))
|
3976
|
+
NumberCondition.add_member(:comparison_type, Shapes::ShapeRef.new(shape: NumberComparisonType, location_name: "ComparisonType"))
|
3977
|
+
NumberCondition.struct_class = Types::NumberCondition
|
3978
|
+
|
3915
3979
|
NumberReference.add_member(:name, Shapes::ShapeRef.new(shape: ReferenceKey, location_name: "Name"))
|
3916
3980
|
NumberReference.add_member(:value, Shapes::ShapeRef.new(shape: ReferenceValue, location_name: "Value"))
|
3917
3981
|
NumberReference.struct_class = Types::NumberReference
|
@@ -4236,6 +4300,11 @@ module Aws::Connect
|
|
4236
4300
|
RealTimeContactAnalysisSegmentIssues.add_member(:issues_detected, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisIssuesDetected, required: true, location_name: "IssuesDetected"))
|
4237
4301
|
RealTimeContactAnalysisSegmentIssues.struct_class = Types::RealTimeContactAnalysisSegmentIssues
|
4238
4302
|
|
4303
|
+
RealTimeContactAnalysisSegmentPostContactSummary.add_member(:content, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisPostContactSummaryContent, location_name: "Content"))
|
4304
|
+
RealTimeContactAnalysisSegmentPostContactSummary.add_member(:status, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisPostContactSummaryStatus, required: true, location_name: "Status"))
|
4305
|
+
RealTimeContactAnalysisSegmentPostContactSummary.add_member(:failure_code, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisPostContactSummaryFailureCode, location_name: "FailureCode"))
|
4306
|
+
RealTimeContactAnalysisSegmentPostContactSummary.struct_class = Types::RealTimeContactAnalysisSegmentPostContactSummary
|
4307
|
+
|
4239
4308
|
RealTimeContactAnalysisSegmentTranscript.add_member(:id, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisId256, required: true, location_name: "Id"))
|
4240
4309
|
RealTimeContactAnalysisSegmentTranscript.add_member(:participant_id, Shapes::ShapeRef.new(shape: ParticipantId, required: true, location_name: "ParticipantId"))
|
4241
4310
|
RealTimeContactAnalysisSegmentTranscript.add_member(:participant_role, Shapes::ShapeRef.new(shape: ParticipantRole, required: true, location_name: "ParticipantRole"))
|
@@ -4276,12 +4345,14 @@ module Aws::Connect
|
|
4276
4345
|
RealtimeContactAnalysisSegment.add_member(:issues, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisSegmentIssues, location_name: "Issues"))
|
4277
4346
|
RealtimeContactAnalysisSegment.add_member(:event, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisSegmentEvent, location_name: "Event"))
|
4278
4347
|
RealtimeContactAnalysisSegment.add_member(:attachments, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisSegmentAttachments, location_name: "Attachments"))
|
4348
|
+
RealtimeContactAnalysisSegment.add_member(:post_contact_summary, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisSegmentPostContactSummary, location_name: "PostContactSummary"))
|
4279
4349
|
RealtimeContactAnalysisSegment.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
4280
4350
|
RealtimeContactAnalysisSegment.add_member_subclass(:transcript, Types::RealtimeContactAnalysisSegment::Transcript)
|
4281
4351
|
RealtimeContactAnalysisSegment.add_member_subclass(:categories, Types::RealtimeContactAnalysisSegment::Categories)
|
4282
4352
|
RealtimeContactAnalysisSegment.add_member_subclass(:issues, Types::RealtimeContactAnalysisSegment::Issues)
|
4283
4353
|
RealtimeContactAnalysisSegment.add_member_subclass(:event, Types::RealtimeContactAnalysisSegment::Event)
|
4284
4354
|
RealtimeContactAnalysisSegment.add_member_subclass(:attachments, Types::RealtimeContactAnalysisSegment::Attachments)
|
4355
|
+
RealtimeContactAnalysisSegment.add_member_subclass(:post_contact_summary, Types::RealtimeContactAnalysisSegment::PostContactSummary)
|
4285
4356
|
RealtimeContactAnalysisSegment.add_member_subclass(:unknown, Types::RealtimeContactAnalysisSegment::Unknown)
|
4286
4357
|
RealtimeContactAnalysisSegment.struct_class = Types::RealtimeContactAnalysisSegment
|
4287
4358
|
|
@@ -4484,6 +4555,18 @@ module Aws::Connect
|
|
4484
4555
|
S3Config.add_member(:encryption_config, Shapes::ShapeRef.new(shape: EncryptionConfig, location_name: "EncryptionConfig"))
|
4485
4556
|
S3Config.struct_class = Types::S3Config
|
4486
4557
|
|
4558
|
+
SearchAgentStatusesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
4559
|
+
SearchAgentStatusesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
4560
|
+
SearchAgentStatusesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location_name: "MaxResults", metadata: {"box"=>true}))
|
4561
|
+
SearchAgentStatusesRequest.add_member(:search_filter, Shapes::ShapeRef.new(shape: AgentStatusSearchFilter, location_name: "SearchFilter"))
|
4562
|
+
SearchAgentStatusesRequest.add_member(:search_criteria, Shapes::ShapeRef.new(shape: AgentStatusSearchCriteria, location_name: "SearchCriteria"))
|
4563
|
+
SearchAgentStatusesRequest.struct_class = Types::SearchAgentStatusesRequest
|
4564
|
+
|
4565
|
+
SearchAgentStatusesResponse.add_member(:agent_statuses, Shapes::ShapeRef.new(shape: AgentStatusList, location_name: "AgentStatuses"))
|
4566
|
+
SearchAgentStatusesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
4567
|
+
SearchAgentStatusesResponse.add_member(:approximate_total_count, Shapes::ShapeRef.new(shape: ApproximateTotalCount, location_name: "ApproximateTotalCount"))
|
4568
|
+
SearchAgentStatusesResponse.struct_class = Types::SearchAgentStatusesResponse
|
4569
|
+
|
4487
4570
|
SearchAvailablePhoneNumbersRequest.add_member(:target_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "TargetArn"))
|
4488
4571
|
SearchAvailablePhoneNumbersRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
|
4489
4572
|
SearchAvailablePhoneNumbersRequest.add_member(:phone_number_country_code, Shapes::ShapeRef.new(shape: PhoneNumberCountryCode, required: true, location_name: "PhoneNumberCountryCode"))
|
@@ -4644,6 +4727,18 @@ module Aws::Connect
|
|
4644
4727
|
|
4645
4728
|
SearchTextList.member = Shapes::ShapeRef.new(shape: SearchText)
|
4646
4729
|
|
4730
|
+
SearchUserHierarchyGroupsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
4731
|
+
SearchUserHierarchyGroupsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
4732
|
+
SearchUserHierarchyGroupsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location_name: "MaxResults", metadata: {"box"=>true}))
|
4733
|
+
SearchUserHierarchyGroupsRequest.add_member(:search_filter, Shapes::ShapeRef.new(shape: UserHierarchyGroupSearchFilter, location_name: "SearchFilter"))
|
4734
|
+
SearchUserHierarchyGroupsRequest.add_member(:search_criteria, Shapes::ShapeRef.new(shape: UserHierarchyGroupSearchCriteria, location_name: "SearchCriteria"))
|
4735
|
+
SearchUserHierarchyGroupsRequest.struct_class = Types::SearchUserHierarchyGroupsRequest
|
4736
|
+
|
4737
|
+
SearchUserHierarchyGroupsResponse.add_member(:user_hierarchy_groups, Shapes::ShapeRef.new(shape: UserHierarchyGroupList, location_name: "UserHierarchyGroups"))
|
4738
|
+
SearchUserHierarchyGroupsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
4739
|
+
SearchUserHierarchyGroupsResponse.add_member(:approximate_total_count, Shapes::ShapeRef.new(shape: ApproximateTotalCount, location_name: "ApproximateTotalCount"))
|
4740
|
+
SearchUserHierarchyGroupsResponse.struct_class = Types::SearchUserHierarchyGroupsResponse
|
4741
|
+
|
4647
4742
|
SearchUsersRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
4648
4743
|
SearchUsersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
4649
4744
|
SearchUsersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult500, location_name: "MaxResults", metadata: {"box"=>true}))
|
@@ -5527,6 +5622,18 @@ module Aws::Connect
|
|
5527
5622
|
|
5528
5623
|
UserDataList.member = Shapes::ShapeRef.new(shape: UserData)
|
5529
5624
|
|
5625
|
+
UserHierarchyGroupList.member = Shapes::ShapeRef.new(shape: HierarchyGroup)
|
5626
|
+
|
5627
|
+
UserHierarchyGroupSearchConditionList.member = Shapes::ShapeRef.new(shape: UserHierarchyGroupSearchCriteria)
|
5628
|
+
|
5629
|
+
UserHierarchyGroupSearchCriteria.add_member(:or_conditions, Shapes::ShapeRef.new(shape: UserHierarchyGroupSearchConditionList, location_name: "OrConditions"))
|
5630
|
+
UserHierarchyGroupSearchCriteria.add_member(:and_conditions, Shapes::ShapeRef.new(shape: UserHierarchyGroupSearchConditionList, location_name: "AndConditions"))
|
5631
|
+
UserHierarchyGroupSearchCriteria.add_member(:string_condition, Shapes::ShapeRef.new(shape: StringCondition, location_name: "StringCondition"))
|
5632
|
+
UserHierarchyGroupSearchCriteria.struct_class = Types::UserHierarchyGroupSearchCriteria
|
5633
|
+
|
5634
|
+
UserHierarchyGroupSearchFilter.add_member(:attribute_filter, Shapes::ShapeRef.new(shape: ControlPlaneAttributeFilter, location_name: "AttributeFilter"))
|
5635
|
+
UserHierarchyGroupSearchFilter.struct_class = Types::UserHierarchyGroupSearchFilter
|
5636
|
+
|
5530
5637
|
UserIdList.member = Shapes::ShapeRef.new(shape: UserId)
|
5531
5638
|
|
5532
5639
|
UserIdentityInfo.add_member(:first_name, Shapes::ShapeRef.new(shape: AgentFirstName, location_name: "FirstName"))
|
@@ -5575,6 +5682,7 @@ module Aws::Connect
|
|
5575
5682
|
UserSearchCriteria.add_member(:or_conditions, Shapes::ShapeRef.new(shape: UserSearchConditionList, location_name: "OrConditions"))
|
5576
5683
|
UserSearchCriteria.add_member(:and_conditions, Shapes::ShapeRef.new(shape: UserSearchConditionList, location_name: "AndConditions"))
|
5577
5684
|
UserSearchCriteria.add_member(:string_condition, Shapes::ShapeRef.new(shape: StringCondition, location_name: "StringCondition"))
|
5685
|
+
UserSearchCriteria.add_member(:list_condition, Shapes::ShapeRef.new(shape: ListCondition, location_name: "ListCondition"))
|
5578
5686
|
UserSearchCriteria.add_member(:hierarchy_group_condition, Shapes::ShapeRef.new(shape: HierarchyGroupCondition, location_name: "HierarchyGroupCondition"))
|
5579
5687
|
UserSearchCriteria.struct_class = Types::UserSearchCriteria
|
5580
5688
|
|
@@ -8312,6 +8420,25 @@ module Aws::Connect
|
|
8312
8420
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
8313
8421
|
end)
|
8314
8422
|
|
8423
|
+
api.add_operation(:search_agent_statuses, Seahorse::Model::Operation.new.tap do |o|
|
8424
|
+
o.name = "SearchAgentStatuses"
|
8425
|
+
o.http_method = "POST"
|
8426
|
+
o.http_request_uri = "/search-agent-statuses"
|
8427
|
+
o.input = Shapes::ShapeRef.new(shape: SearchAgentStatusesRequest)
|
8428
|
+
o.output = Shapes::ShapeRef.new(shape: SearchAgentStatusesResponse)
|
8429
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
8430
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
8431
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
8432
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
8433
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
8434
|
+
o[:pager] = Aws::Pager.new(
|
8435
|
+
limit_key: "max_results",
|
8436
|
+
tokens: {
|
8437
|
+
"next_token" => "next_token"
|
8438
|
+
}
|
8439
|
+
)
|
8440
|
+
end)
|
8441
|
+
|
8315
8442
|
api.add_operation(:search_available_phone_numbers, Seahorse::Model::Operation.new.tap do |o|
|
8316
8443
|
o.name = "SearchAvailablePhoneNumbers"
|
8317
8444
|
o.http_method = "POST"
|
@@ -8540,6 +8667,25 @@ module Aws::Connect
|
|
8540
8667
|
)
|
8541
8668
|
end)
|
8542
8669
|
|
8670
|
+
api.add_operation(:search_user_hierarchy_groups, Seahorse::Model::Operation.new.tap do |o|
|
8671
|
+
o.name = "SearchUserHierarchyGroups"
|
8672
|
+
o.http_method = "POST"
|
8673
|
+
o.http_request_uri = "/search-user-hierarchy-groups"
|
8674
|
+
o.input = Shapes::ShapeRef.new(shape: SearchUserHierarchyGroupsRequest)
|
8675
|
+
o.output = Shapes::ShapeRef.new(shape: SearchUserHierarchyGroupsResponse)
|
8676
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
8677
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
8678
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
8679
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
8680
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
8681
|
+
o[:pager] = Aws::Pager.new(
|
8682
|
+
limit_key: "max_results",
|
8683
|
+
tokens: {
|
8684
|
+
"next_token" => "next_token"
|
8685
|
+
}
|
8686
|
+
)
|
8687
|
+
end)
|
8688
|
+
|
8543
8689
|
api.add_operation(:search_users, Seahorse::Model::Operation.new.tap do |o|
|
8544
8690
|
o.name = "SearchUsers"
|
8545
8691
|
o.http_method = "POST"
|
@@ -2434,6 +2434,20 @@ module Aws::Connect
|
|
2434
2434
|
end
|
2435
2435
|
end
|
2436
2436
|
|
2437
|
+
class SearchAgentStatuses
|
2438
|
+
def self.build(context)
|
2439
|
+
unless context.config.regional_endpoint
|
2440
|
+
endpoint = context.config.endpoint.to_s
|
2441
|
+
end
|
2442
|
+
Aws::Connect::EndpointParameters.new(
|
2443
|
+
region: context.config.region,
|
2444
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
2445
|
+
use_fips: context.config.use_fips_endpoint,
|
2446
|
+
endpoint: endpoint,
|
2447
|
+
)
|
2448
|
+
end
|
2449
|
+
end
|
2450
|
+
|
2437
2451
|
class SearchAvailablePhoneNumbers
|
2438
2452
|
def self.build(context)
|
2439
2453
|
unless context.config.regional_endpoint
|
@@ -2602,6 +2616,20 @@ module Aws::Connect
|
|
2602
2616
|
end
|
2603
2617
|
end
|
2604
2618
|
|
2619
|
+
class SearchUserHierarchyGroups
|
2620
|
+
def self.build(context)
|
2621
|
+
unless context.config.regional_endpoint
|
2622
|
+
endpoint = context.config.endpoint.to_s
|
2623
|
+
end
|
2624
|
+
Aws::Connect::EndpointParameters.new(
|
2625
|
+
region: context.config.region,
|
2626
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
2627
|
+
use_fips: context.config.use_fips_endpoint,
|
2628
|
+
endpoint: endpoint,
|
2629
|
+
)
|
2630
|
+
end
|
2631
|
+
end
|
2632
|
+
|
2605
2633
|
class SearchUsers
|
2606
2634
|
def self.build(context)
|
2607
2635
|
unless context.config.regional_endpoint
|
@@ -404,6 +404,8 @@ module Aws::Connect
|
|
404
404
|
Aws::Connect::Endpoints::ResumeContact.build(context)
|
405
405
|
when :resume_contact_recording
|
406
406
|
Aws::Connect::Endpoints::ResumeContactRecording.build(context)
|
407
|
+
when :search_agent_statuses
|
408
|
+
Aws::Connect::Endpoints::SearchAgentStatuses.build(context)
|
407
409
|
when :search_available_phone_numbers
|
408
410
|
Aws::Connect::Endpoints::SearchAvailablePhoneNumbers.build(context)
|
409
411
|
when :search_contact_flow_modules
|
@@ -428,6 +430,8 @@ module Aws::Connect
|
|
428
430
|
Aws::Connect::Endpoints::SearchRoutingProfiles.build(context)
|
429
431
|
when :search_security_profiles
|
430
432
|
Aws::Connect::Endpoints::SearchSecurityProfiles.build(context)
|
433
|
+
when :search_user_hierarchy_groups
|
434
|
+
Aws::Connect::Endpoints::SearchUserHierarchyGroups.build(context)
|
431
435
|
when :search_users
|
432
436
|
Aws::Connect::Endpoints::SearchUsers.build(context)
|
433
437
|
when :search_vocabularies
|