aws-sdk-connect 1.220.0 → 1.222.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 +839 -9
- data/lib/aws-sdk-connect/client_api.rb +445 -1
- data/lib/aws-sdk-connect/types.rb +1501 -72
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +319 -15
- data/sig/types.rbs +390 -2
- metadata +1 -1
|
@@ -29,6 +29,7 @@ module Aws::Connect
|
|
|
29
29
|
AgentConfig = Shapes::StructureShape.new(name: 'AgentConfig')
|
|
30
30
|
AgentContactReference = Shapes::StructureShape.new(name: 'AgentContactReference')
|
|
31
31
|
AgentContactReferenceList = Shapes::ListShape.new(name: 'AgentContactReferenceList')
|
|
32
|
+
AgentFirst = Shapes::StructureShape.new(name: 'AgentFirst')
|
|
32
33
|
AgentFirstName = Shapes::StringShape.new(name: 'AgentFirstName')
|
|
33
34
|
AgentHierarchyGroup = Shapes::StructureShape.new(name: 'AgentHierarchyGroup')
|
|
34
35
|
AgentHierarchyGroups = Shapes::StructureShape.new(name: 'AgentHierarchyGroups')
|
|
@@ -61,9 +62,13 @@ module Aws::Connect
|
|
|
61
62
|
AgentsCriteria = Shapes::StructureShape.new(name: 'AgentsCriteria')
|
|
62
63
|
AgentsMinOneMaxHundred = Shapes::ListShape.new(name: 'AgentsMinOneMaxHundred')
|
|
63
64
|
AliasArn = Shapes::StringShape.new(name: 'AliasArn')
|
|
65
|
+
AliasConfiguration = Shapes::StructureShape.new(name: 'AliasConfiguration')
|
|
66
|
+
AliasConfigurationList = Shapes::ListShape.new(name: 'AliasConfigurationList')
|
|
64
67
|
AllowedAccessControlTags = Shapes::MapShape.new(name: 'AllowedAccessControlTags')
|
|
65
68
|
AllowedCapabilities = Shapes::StructureShape.new(name: 'AllowedCapabilities')
|
|
66
69
|
AllowedMonitorCapabilities = Shapes::ListShape.new(name: 'AllowedMonitorCapabilities')
|
|
70
|
+
AllowedUserAction = Shapes::StringShape.new(name: 'AllowedUserAction')
|
|
71
|
+
AllowedUserActions = Shapes::ListShape.new(name: 'AllowedUserActions')
|
|
67
72
|
AnalyticsDataAssociationResult = Shapes::StructureShape.new(name: 'AnalyticsDataAssociationResult')
|
|
68
73
|
AnalyticsDataAssociationResults = Shapes::ListShape.new(name: 'AnalyticsDataAssociationResults')
|
|
69
74
|
AnalyticsDataSetsResult = Shapes::StructureShape.new(name: 'AnalyticsDataSetsResult')
|
|
@@ -86,6 +91,8 @@ module Aws::Connect
|
|
|
86
91
|
AssociateContactWithUserResponse = Shapes::StructureShape.new(name: 'AssociateContactWithUserResponse')
|
|
87
92
|
AssociateDefaultVocabularyRequest = Shapes::StructureShape.new(name: 'AssociateDefaultVocabularyRequest')
|
|
88
93
|
AssociateDefaultVocabularyResponse = Shapes::StructureShape.new(name: 'AssociateDefaultVocabularyResponse')
|
|
94
|
+
AssociateEmailAddressAliasRequest = Shapes::StructureShape.new(name: 'AssociateEmailAddressAliasRequest')
|
|
95
|
+
AssociateEmailAddressAliasResponse = Shapes::StructureShape.new(name: 'AssociateEmailAddressAliasResponse')
|
|
89
96
|
AssociateFlowRequest = Shapes::StructureShape.new(name: 'AssociateFlowRequest')
|
|
90
97
|
AssociateFlowResponse = Shapes::StructureShape.new(name: 'AssociateFlowResponse')
|
|
91
98
|
AssociateInstanceStorageConfigRequest = Shapes::StructureShape.new(name: 'AssociateInstanceStorageConfigRequest')
|
|
@@ -135,6 +142,10 @@ module Aws::Connect
|
|
|
135
142
|
AuthenticationProfileSummaryList = Shapes::ListShape.new(name: 'AuthenticationProfileSummaryList')
|
|
136
143
|
AuthorizationCode = Shapes::StringShape.new(name: 'AuthorizationCode')
|
|
137
144
|
AutoAccept = Shapes::BooleanShape.new(name: 'AutoAccept')
|
|
145
|
+
AutoEvaluationConfiguration = Shapes::StructureShape.new(name: 'AutoEvaluationConfiguration')
|
|
146
|
+
AutoEvaluationDetails = Shapes::StructureShape.new(name: 'AutoEvaluationDetails')
|
|
147
|
+
AutoEvaluationStatus = Shapes::StringShape.new(name: 'AutoEvaluationStatus')
|
|
148
|
+
AutomaticFailConfiguration = Shapes::StructureShape.new(name: 'AutomaticFailConfiguration')
|
|
138
149
|
AvailableNumberSummary = Shapes::StructureShape.new(name: 'AvailableNumberSummary')
|
|
139
150
|
AvailableNumbersList = Shapes::ListShape.new(name: 'AvailableNumbersList')
|
|
140
151
|
AwsRegion = Shapes::StringShape.new(name: 'AwsRegion')
|
|
@@ -151,6 +162,8 @@ module Aws::Connect
|
|
|
151
162
|
BehaviorType = Shapes::StringShape.new(name: 'BehaviorType')
|
|
152
163
|
Body = Shapes::StringShape.new(name: 'Body')
|
|
153
164
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
165
|
+
BooleanComparisonType = Shapes::StringShape.new(name: 'BooleanComparisonType')
|
|
166
|
+
BooleanCondition = Shapes::StructureShape.new(name: 'BooleanCondition')
|
|
154
167
|
BotName = Shapes::StringShape.new(name: 'BotName')
|
|
155
168
|
BoxedBoolean = Shapes::BooleanShape.new(name: 'BoxedBoolean')
|
|
156
169
|
BucketName = Shapes::StringShape.new(name: 'BucketName')
|
|
@@ -344,9 +357,14 @@ module Aws::Connect
|
|
|
344
357
|
DateComparisonType = Shapes::StringShape.new(name: 'DateComparisonType')
|
|
345
358
|
DateCondition = Shapes::StructureShape.new(name: 'DateCondition')
|
|
346
359
|
DateReference = Shapes::StructureShape.new(name: 'DateReference')
|
|
360
|
+
DateTimeComparisonType = Shapes::StringShape.new(name: 'DateTimeComparisonType')
|
|
361
|
+
DateTimeCondition = Shapes::StructureShape.new(name: 'DateTimeCondition')
|
|
362
|
+
DateTimeFormat = Shapes::StringShape.new(name: 'DateTimeFormat')
|
|
347
363
|
DateYearMonthDayFormat = Shapes::StringShape.new(name: 'DateYearMonthDayFormat')
|
|
348
364
|
DeactivateEvaluationFormRequest = Shapes::StructureShape.new(name: 'DeactivateEvaluationFormRequest')
|
|
349
365
|
DeactivateEvaluationFormResponse = Shapes::StructureShape.new(name: 'DeactivateEvaluationFormResponse')
|
|
366
|
+
DecimalComparisonType = Shapes::StringShape.new(name: 'DecimalComparisonType')
|
|
367
|
+
DecimalCondition = Shapes::StructureShape.new(name: 'DecimalCondition')
|
|
350
368
|
DefaultVocabulary = Shapes::StructureShape.new(name: 'DefaultVocabulary')
|
|
351
369
|
DefaultVocabularyList = Shapes::ListShape.new(name: 'DefaultVocabularyList')
|
|
352
370
|
Delay = Shapes::IntegerShape.new(name: 'Delay')
|
|
@@ -460,6 +478,8 @@ module Aws::Connect
|
|
|
460
478
|
DisassociateAnalyticsDataSetRequest = Shapes::StructureShape.new(name: 'DisassociateAnalyticsDataSetRequest')
|
|
461
479
|
DisassociateApprovedOriginRequest = Shapes::StructureShape.new(name: 'DisassociateApprovedOriginRequest')
|
|
462
480
|
DisassociateBotRequest = Shapes::StructureShape.new(name: 'DisassociateBotRequest')
|
|
481
|
+
DisassociateEmailAddressAliasRequest = Shapes::StructureShape.new(name: 'DisassociateEmailAddressAliasRequest')
|
|
482
|
+
DisassociateEmailAddressAliasResponse = Shapes::StructureShape.new(name: 'DisassociateEmailAddressAliasResponse')
|
|
463
483
|
DisassociateFlowRequest = Shapes::StructureShape.new(name: 'DisassociateFlowRequest')
|
|
464
484
|
DisassociateFlowResponse = Shapes::StructureShape.new(name: 'DisassociateFlowResponse')
|
|
465
485
|
DisassociateInstanceStorageConfigRequest = Shapes::StructureShape.new(name: 'DisassociateInstanceStorageConfigRequest')
|
|
@@ -525,6 +545,9 @@ module Aws::Connect
|
|
|
525
545
|
ErrorResult = Shapes::StructureShape.new(name: 'ErrorResult')
|
|
526
546
|
ErrorResults = Shapes::ListShape.new(name: 'ErrorResults')
|
|
527
547
|
Evaluation = Shapes::StructureShape.new(name: 'Evaluation')
|
|
548
|
+
EvaluationAcknowledgement = Shapes::StructureShape.new(name: 'EvaluationAcknowledgement')
|
|
549
|
+
EvaluationAcknowledgementSummary = Shapes::StructureShape.new(name: 'EvaluationAcknowledgementSummary')
|
|
550
|
+
EvaluationAcknowledgerCommentString = Shapes::StringShape.new(name: 'EvaluationAcknowledgerCommentString')
|
|
528
551
|
EvaluationAnswerData = Shapes::UnionShape.new(name: 'EvaluationAnswerData')
|
|
529
552
|
EvaluationAnswerDataNumericValue = Shapes::FloatShape.new(name: 'EvaluationAnswerDataNumericValue')
|
|
530
553
|
EvaluationAnswerDataStringValue = Shapes::StringShape.new(name: 'EvaluationAnswerDataStringValue')
|
|
@@ -533,11 +556,28 @@ module Aws::Connect
|
|
|
533
556
|
EvaluationAnswersInputMap = Shapes::MapShape.new(name: 'EvaluationAnswersInputMap')
|
|
534
557
|
EvaluationAnswersOutputMap = Shapes::MapShape.new(name: 'EvaluationAnswersOutputMap')
|
|
535
558
|
EvaluationArn = Shapes::StringShape.new(name: 'EvaluationArn')
|
|
559
|
+
EvaluationAutomationRuleCategory = Shapes::StructureShape.new(name: 'EvaluationAutomationRuleCategory')
|
|
560
|
+
EvaluationAutomationRuleCategoryList = Shapes::ListShape.new(name: 'EvaluationAutomationRuleCategoryList')
|
|
561
|
+
EvaluationContactLensAnswerAnalysisDetails = Shapes::StructureShape.new(name: 'EvaluationContactLensAnswerAnalysisDetails')
|
|
536
562
|
EvaluationForm = Shapes::StructureShape.new(name: 'EvaluationForm')
|
|
563
|
+
EvaluationFormAutoEvaluationConfiguration = Shapes::StructureShape.new(name: 'EvaluationFormAutoEvaluationConfiguration')
|
|
537
564
|
EvaluationFormContent = Shapes::StructureShape.new(name: 'EvaluationFormContent')
|
|
538
565
|
EvaluationFormDescription = Shapes::StringShape.new(name: 'EvaluationFormDescription')
|
|
539
566
|
EvaluationFormId = Shapes::StringShape.new(name: 'EvaluationFormId')
|
|
540
567
|
EvaluationFormItem = Shapes::UnionShape.new(name: 'EvaluationFormItem')
|
|
568
|
+
EvaluationFormItemEnablementAction = Shapes::StringShape.new(name: 'EvaluationFormItemEnablementAction')
|
|
569
|
+
EvaluationFormItemEnablementCondition = Shapes::StructureShape.new(name: 'EvaluationFormItemEnablementCondition')
|
|
570
|
+
EvaluationFormItemEnablementConditionOperand = Shapes::UnionShape.new(name: 'EvaluationFormItemEnablementConditionOperand')
|
|
571
|
+
EvaluationFormItemEnablementConditionOperandList = Shapes::ListShape.new(name: 'EvaluationFormItemEnablementConditionOperandList')
|
|
572
|
+
EvaluationFormItemEnablementConfiguration = Shapes::StructureShape.new(name: 'EvaluationFormItemEnablementConfiguration')
|
|
573
|
+
EvaluationFormItemEnablementExpression = Shapes::StructureShape.new(name: 'EvaluationFormItemEnablementExpression')
|
|
574
|
+
EvaluationFormItemEnablementOperator = Shapes::StringShape.new(name: 'EvaluationFormItemEnablementOperator')
|
|
575
|
+
EvaluationFormItemEnablementSource = Shapes::StructureShape.new(name: 'EvaluationFormItemEnablementSource')
|
|
576
|
+
EvaluationFormItemEnablementSourceType = Shapes::StringShape.new(name: 'EvaluationFormItemEnablementSourceType')
|
|
577
|
+
EvaluationFormItemEnablementSourceValue = Shapes::StructureShape.new(name: 'EvaluationFormItemEnablementSourceValue')
|
|
578
|
+
EvaluationFormItemEnablementSourceValueList = Shapes::ListShape.new(name: 'EvaluationFormItemEnablementSourceValueList')
|
|
579
|
+
EvaluationFormItemEnablementSourceValueType = Shapes::StringShape.new(name: 'EvaluationFormItemEnablementSourceValueType')
|
|
580
|
+
EvaluationFormItemSourceValuesComparator = Shapes::StringShape.new(name: 'EvaluationFormItemSourceValuesComparator')
|
|
541
581
|
EvaluationFormItemWeight = Shapes::FloatShape.new(name: 'EvaluationFormItemWeight')
|
|
542
582
|
EvaluationFormItemsList = Shapes::ListShape.new(name: 'EvaluationFormItemsList')
|
|
543
583
|
EvaluationFormNumericQuestionAutomation = Shapes::UnionShape.new(name: 'EvaluationFormNumericQuestionAutomation')
|
|
@@ -546,6 +586,8 @@ module Aws::Connect
|
|
|
546
586
|
EvaluationFormNumericQuestionProperties = Shapes::StructureShape.new(name: 'EvaluationFormNumericQuestionProperties')
|
|
547
587
|
EvaluationFormQuestion = Shapes::StructureShape.new(name: 'EvaluationFormQuestion')
|
|
548
588
|
EvaluationFormQuestionAnswerScore = Shapes::IntegerShape.new(name: 'EvaluationFormQuestionAnswerScore')
|
|
589
|
+
EvaluationFormQuestionAutomationAnswerSource = Shapes::StructureShape.new(name: 'EvaluationFormQuestionAutomationAnswerSource')
|
|
590
|
+
EvaluationFormQuestionAutomationAnswerSourceType = Shapes::StringShape.new(name: 'EvaluationFormQuestionAutomationAnswerSourceType')
|
|
549
591
|
EvaluationFormQuestionInstructions = Shapes::StringShape.new(name: 'EvaluationFormQuestionInstructions')
|
|
550
592
|
EvaluationFormQuestionTitle = Shapes::StringShape.new(name: 'EvaluationFormQuestionTitle')
|
|
551
593
|
EvaluationFormQuestionType = Shapes::StringShape.new(name: 'EvaluationFormQuestionType')
|
|
@@ -553,6 +595,11 @@ module Aws::Connect
|
|
|
553
595
|
EvaluationFormScoringMode = Shapes::StringShape.new(name: 'EvaluationFormScoringMode')
|
|
554
596
|
EvaluationFormScoringStatus = Shapes::StringShape.new(name: 'EvaluationFormScoringStatus')
|
|
555
597
|
EvaluationFormScoringStrategy = Shapes::StructureShape.new(name: 'EvaluationFormScoringStrategy')
|
|
598
|
+
EvaluationFormSearchConditionList = Shapes::ListShape.new(name: 'EvaluationFormSearchConditionList')
|
|
599
|
+
EvaluationFormSearchCriteria = Shapes::StructureShape.new(name: 'EvaluationFormSearchCriteria')
|
|
600
|
+
EvaluationFormSearchFilter = Shapes::StructureShape.new(name: 'EvaluationFormSearchFilter')
|
|
601
|
+
EvaluationFormSearchSummary = Shapes::StructureShape.new(name: 'EvaluationFormSearchSummary')
|
|
602
|
+
EvaluationFormSearchSummaryList = Shapes::ListShape.new(name: 'EvaluationFormSearchSummaryList')
|
|
556
603
|
EvaluationFormSection = Shapes::StructureShape.new(name: 'EvaluationFormSection')
|
|
557
604
|
EvaluationFormSectionTitle = Shapes::StringShape.new(name: 'EvaluationFormSectionTitle')
|
|
558
605
|
EvaluationFormSingleSelectQuestionAutomation = Shapes::StructureShape.new(name: 'EvaluationFormSingleSelectQuestionAutomation')
|
|
@@ -565,22 +612,46 @@ module Aws::Connect
|
|
|
565
612
|
EvaluationFormSingleSelectQuestionProperties = Shapes::StructureShape.new(name: 'EvaluationFormSingleSelectQuestionProperties')
|
|
566
613
|
EvaluationFormSummary = Shapes::StructureShape.new(name: 'EvaluationFormSummary')
|
|
567
614
|
EvaluationFormSummaryList = Shapes::ListShape.new(name: 'EvaluationFormSummaryList')
|
|
615
|
+
EvaluationFormTextQuestionAutomation = Shapes::StructureShape.new(name: 'EvaluationFormTextQuestionAutomation')
|
|
616
|
+
EvaluationFormTextQuestionProperties = Shapes::StructureShape.new(name: 'EvaluationFormTextQuestionProperties')
|
|
568
617
|
EvaluationFormTitle = Shapes::StringShape.new(name: 'EvaluationFormTitle')
|
|
569
618
|
EvaluationFormVersionIsLocked = Shapes::BooleanShape.new(name: 'EvaluationFormVersionIsLocked')
|
|
570
619
|
EvaluationFormVersionStatus = Shapes::StringShape.new(name: 'EvaluationFormVersionStatus')
|
|
571
620
|
EvaluationFormVersionSummary = Shapes::StructureShape.new(name: 'EvaluationFormVersionSummary')
|
|
572
621
|
EvaluationFormVersionSummaryList = Shapes::ListShape.new(name: 'EvaluationFormVersionSummaryList')
|
|
622
|
+
EvaluationGenAIAnswerAnalysisDetails = Shapes::StructureShape.new(name: 'EvaluationGenAIAnswerAnalysisDetails')
|
|
573
623
|
EvaluationId = Shapes::StringShape.new(name: 'EvaluationId')
|
|
574
624
|
EvaluationMetadata = Shapes::StructureShape.new(name: 'EvaluationMetadata')
|
|
575
625
|
EvaluationNote = Shapes::StructureShape.new(name: 'EvaluationNote')
|
|
576
626
|
EvaluationNoteString = Shapes::StringShape.new(name: 'EvaluationNoteString')
|
|
577
627
|
EvaluationNotesMap = Shapes::MapShape.new(name: 'EvaluationNotesMap')
|
|
628
|
+
EvaluationQuestionAnswerAnalysisDetails = Shapes::UnionShape.new(name: 'EvaluationQuestionAnswerAnalysisDetails')
|
|
629
|
+
EvaluationQuestionAnswerAnalysisType = Shapes::StringShape.new(name: 'EvaluationQuestionAnswerAnalysisType')
|
|
630
|
+
EvaluationQuestionInputDetails = Shapes::StructureShape.new(name: 'EvaluationQuestionInputDetails')
|
|
578
631
|
EvaluationScore = Shapes::StructureShape.new(name: 'EvaluationScore')
|
|
579
632
|
EvaluationScorePercentage = Shapes::FloatShape.new(name: 'EvaluationScorePercentage')
|
|
580
633
|
EvaluationScoresMap = Shapes::MapShape.new(name: 'EvaluationScoresMap')
|
|
634
|
+
EvaluationSearchConditionList = Shapes::ListShape.new(name: 'EvaluationSearchConditionList')
|
|
635
|
+
EvaluationSearchCriteria = Shapes::StructureShape.new(name: 'EvaluationSearchCriteria')
|
|
636
|
+
EvaluationSearchFilter = Shapes::StructureShape.new(name: 'EvaluationSearchFilter')
|
|
637
|
+
EvaluationSearchMetadata = Shapes::StructureShape.new(name: 'EvaluationSearchMetadata')
|
|
638
|
+
EvaluationSearchSummary = Shapes::StructureShape.new(name: 'EvaluationSearchSummary')
|
|
639
|
+
EvaluationSearchSummaryList = Shapes::ListShape.new(name: 'EvaluationSearchSummaryList')
|
|
581
640
|
EvaluationStatus = Shapes::StringShape.new(name: 'EvaluationStatus')
|
|
641
|
+
EvaluationSuggestedAnswer = Shapes::StructureShape.new(name: 'EvaluationSuggestedAnswer')
|
|
642
|
+
EvaluationSuggestedAnswerJustification = Shapes::StringShape.new(name: 'EvaluationSuggestedAnswerJustification')
|
|
643
|
+
EvaluationSuggestedAnswerStatus = Shapes::StringShape.new(name: 'EvaluationSuggestedAnswerStatus')
|
|
644
|
+
EvaluationSuggestedAnswerTranscriptMillisOffset = Shapes::IntegerShape.new(name: 'EvaluationSuggestedAnswerTranscriptMillisOffset')
|
|
645
|
+
EvaluationSuggestedAnswerTranscriptMillisecondOffsets = Shapes::StructureShape.new(name: 'EvaluationSuggestedAnswerTranscriptMillisecondOffsets')
|
|
646
|
+
EvaluationSuggestedAnswerTranscriptSegment = Shapes::StringShape.new(name: 'EvaluationSuggestedAnswerTranscriptSegment')
|
|
647
|
+
EvaluationSuggestedAnswersList = Shapes::ListShape.new(name: 'EvaluationSuggestedAnswersList')
|
|
582
648
|
EvaluationSummary = Shapes::StructureShape.new(name: 'EvaluationSummary')
|
|
583
649
|
EvaluationSummaryList = Shapes::ListShape.new(name: 'EvaluationSummaryList')
|
|
650
|
+
EvaluationTranscriptPointOfInterest = Shapes::StructureShape.new(name: 'EvaluationTranscriptPointOfInterest')
|
|
651
|
+
EvaluationTranscriptPointsOfInterest = Shapes::ListShape.new(name: 'EvaluationTranscriptPointsOfInterest')
|
|
652
|
+
EvaluationTranscriptType = Shapes::StringShape.new(name: 'EvaluationTranscriptType')
|
|
653
|
+
EvaluationType = Shapes::StringShape.new(name: 'EvaluationType')
|
|
654
|
+
EvaluatorUserUnion = Shapes::UnionShape.new(name: 'EvaluatorUserUnion')
|
|
584
655
|
EventBridgeActionDefinition = Shapes::StructureShape.new(name: 'EventBridgeActionDefinition')
|
|
585
656
|
EventBridgeActionName = Shapes::StringShape.new(name: 'EventBridgeActionName')
|
|
586
657
|
EventSourceName = Shapes::StringShape.new(name: 'EventSourceName')
|
|
@@ -917,6 +988,7 @@ module Aws::Connect
|
|
|
917
988
|
NotificationDeliveryType = Shapes::StringShape.new(name: 'NotificationDeliveryType')
|
|
918
989
|
NotificationRecipientType = Shapes::StructureShape.new(name: 'NotificationRecipientType')
|
|
919
990
|
NullableBoolean = Shapes::BooleanShape.new(name: 'NullableBoolean')
|
|
991
|
+
NullableDouble = Shapes::FloatShape.new(name: 'NullableDouble')
|
|
920
992
|
NullableProficiencyLevel = Shapes::FloatShape.new(name: 'NullableProficiencyLevel')
|
|
921
993
|
NullableProficiencyLimitValue = Shapes::IntegerShape.new(name: 'NullableProficiencyLimitValue')
|
|
922
994
|
NumberComparisonType = Shapes::StringShape.new(name: 'NumberComparisonType')
|
|
@@ -939,6 +1011,9 @@ module Aws::Connect
|
|
|
939
1011
|
OutboundMessageSourceType = Shapes::StringShape.new(name: 'OutboundMessageSourceType')
|
|
940
1012
|
OutboundRawMessage = Shapes::StructureShape.new(name: 'OutboundRawMessage')
|
|
941
1013
|
OutboundRequestId = Shapes::StringShape.new(name: 'OutboundRequestId')
|
|
1014
|
+
OutboundStrategy = Shapes::StructureShape.new(name: 'OutboundStrategy')
|
|
1015
|
+
OutboundStrategyConfig = Shapes::StructureShape.new(name: 'OutboundStrategyConfig')
|
|
1016
|
+
OutboundStrategyType = Shapes::StringShape.new(name: 'OutboundStrategyType')
|
|
942
1017
|
OutboundSubject = Shapes::StringShape.new(name: 'OutboundSubject')
|
|
943
1018
|
OutputTypeNotFoundException = Shapes::StructureShape.new(name: 'OutputTypeNotFoundException')
|
|
944
1019
|
OverrideDays = Shapes::StringShape.new(name: 'OverrideDays')
|
|
@@ -985,6 +1060,8 @@ module Aws::Connect
|
|
|
985
1060
|
PhoneType = Shapes::StringShape.new(name: 'PhoneType')
|
|
986
1061
|
PlatformName = Shapes::StringShape.new(name: 'PlatformName')
|
|
987
1062
|
PlatformVersion = Shapes::StringShape.new(name: 'PlatformVersion')
|
|
1063
|
+
PostAcceptPreviewTimeoutDurationInSeconds = Shapes::IntegerShape.new(name: 'PostAcceptPreviewTimeoutDurationInSeconds')
|
|
1064
|
+
PostAcceptTimeoutConfig = Shapes::StructureShape.new(name: 'PostAcceptTimeoutConfig')
|
|
988
1065
|
PotentialAudioQualityIssue = Shapes::StringShape.new(name: 'PotentialAudioQualityIssue')
|
|
989
1066
|
PotentialAudioQualityIssues = Shapes::ListShape.new(name: 'PotentialAudioQualityIssues')
|
|
990
1067
|
PotentialDisconnectIssue = Shapes::StringShape.new(name: 'PotentialDisconnectIssue')
|
|
@@ -1003,6 +1080,7 @@ module Aws::Connect
|
|
|
1003
1080
|
PredefinedAttributeSummaryList = Shapes::ListShape.new(name: 'PredefinedAttributeSummaryList')
|
|
1004
1081
|
PredefinedAttributeValues = Shapes::UnionShape.new(name: 'PredefinedAttributeValues')
|
|
1005
1082
|
Prefix = Shapes::StringShape.new(name: 'Prefix')
|
|
1083
|
+
Preview = Shapes::StructureShape.new(name: 'Preview')
|
|
1006
1084
|
Priority = Shapes::IntegerShape.new(name: 'Priority')
|
|
1007
1085
|
ProblemDetail = Shapes::StructureShape.new(name: 'ProblemDetail')
|
|
1008
1086
|
ProblemMessageString = Shapes::StringShape.new(name: 'ProblemMessageString')
|
|
@@ -1027,6 +1105,8 @@ module Aws::Connect
|
|
|
1027
1105
|
PutUserStatusRequest = Shapes::StructureShape.new(name: 'PutUserStatusRequest')
|
|
1028
1106
|
PutUserStatusResponse = Shapes::StructureShape.new(name: 'PutUserStatusResponse')
|
|
1029
1107
|
QualityMetrics = Shapes::StructureShape.new(name: 'QualityMetrics')
|
|
1108
|
+
QuestionRuleCategoryAutomationCondition = Shapes::StringShape.new(name: 'QuestionRuleCategoryAutomationCondition')
|
|
1109
|
+
QuestionRuleCategoryAutomationLabel = Shapes::StringShape.new(name: 'QuestionRuleCategoryAutomationLabel')
|
|
1030
1110
|
Queue = Shapes::StructureShape.new(name: 'Queue')
|
|
1031
1111
|
QueueDescription = Shapes::StringShape.new(name: 'QueueDescription')
|
|
1032
1112
|
QueueId = Shapes::StringShape.new(name: 'QueueId')
|
|
@@ -1197,6 +1277,8 @@ module Aws::Connect
|
|
|
1197
1277
|
SearchAgentStatusesResponse = Shapes::StructureShape.new(name: 'SearchAgentStatusesResponse')
|
|
1198
1278
|
SearchAvailablePhoneNumbersRequest = Shapes::StructureShape.new(name: 'SearchAvailablePhoneNumbersRequest')
|
|
1199
1279
|
SearchAvailablePhoneNumbersResponse = Shapes::StructureShape.new(name: 'SearchAvailablePhoneNumbersResponse')
|
|
1280
|
+
SearchContactEvaluationsRequest = Shapes::StructureShape.new(name: 'SearchContactEvaluationsRequest')
|
|
1281
|
+
SearchContactEvaluationsResponse = Shapes::StructureShape.new(name: 'SearchContactEvaluationsResponse')
|
|
1200
1282
|
SearchContactFlowModulesRequest = Shapes::StructureShape.new(name: 'SearchContactFlowModulesRequest')
|
|
1201
1283
|
SearchContactFlowModulesResponse = Shapes::StructureShape.new(name: 'SearchContactFlowModulesResponse')
|
|
1202
1284
|
SearchContactFlowsRequest = Shapes::StructureShape.new(name: 'SearchContactFlowsRequest')
|
|
@@ -1214,6 +1296,8 @@ module Aws::Connect
|
|
|
1214
1296
|
SearchCriteria = Shapes::StructureShape.new(name: 'SearchCriteria')
|
|
1215
1297
|
SearchEmailAddressesRequest = Shapes::StructureShape.new(name: 'SearchEmailAddressesRequest')
|
|
1216
1298
|
SearchEmailAddressesResponse = Shapes::StructureShape.new(name: 'SearchEmailAddressesResponse')
|
|
1299
|
+
SearchEvaluationFormsRequest = Shapes::StructureShape.new(name: 'SearchEvaluationFormsRequest')
|
|
1300
|
+
SearchEvaluationFormsResponse = Shapes::StructureShape.new(name: 'SearchEvaluationFormsResponse')
|
|
1217
1301
|
SearchHoursOfOperationOverridesRequest = Shapes::StructureShape.new(name: 'SearchHoursOfOperationOverridesRequest')
|
|
1218
1302
|
SearchHoursOfOperationOverridesResponse = Shapes::StructureShape.new(name: 'SearchHoursOfOperationOverridesResponse')
|
|
1219
1303
|
SearchHoursOfOperationsRequest = Shapes::StructureShape.new(name: 'SearchHoursOfOperationsRequest')
|
|
@@ -1633,6 +1717,9 @@ module Aws::Connect
|
|
|
1633
1717
|
|
|
1634
1718
|
AgentContactReferenceList.member = Shapes::ShapeRef.new(shape: AgentContactReference)
|
|
1635
1719
|
|
|
1720
|
+
AgentFirst.add_member(:preview, Shapes::ShapeRef.new(shape: Preview, location_name: "Preview"))
|
|
1721
|
+
AgentFirst.struct_class = Types::AgentFirst
|
|
1722
|
+
|
|
1636
1723
|
AgentHierarchyGroup.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
|
|
1637
1724
|
AgentHierarchyGroup.struct_class = Types::AgentHierarchyGroup
|
|
1638
1725
|
|
|
@@ -1646,6 +1733,8 @@ module Aws::Connect
|
|
|
1646
1733
|
AgentIds.member = Shapes::ShapeRef.new(shape: AgentId)
|
|
1647
1734
|
|
|
1648
1735
|
AgentInfo.add_member(:id, Shapes::ShapeRef.new(shape: AgentResourceId, location_name: "Id"))
|
|
1736
|
+
AgentInfo.add_member(:accepted_by_agent_timestamp, Shapes::ShapeRef.new(shape: timestamp, location_name: "AcceptedByAgentTimestamp"))
|
|
1737
|
+
AgentInfo.add_member(:preview_end_timestamp, Shapes::ShapeRef.new(shape: timestamp, location_name: "PreviewEndTimestamp"))
|
|
1649
1738
|
AgentInfo.add_member(:connected_to_agent_timestamp, Shapes::ShapeRef.new(shape: timestamp, location_name: "ConnectedToAgentTimestamp"))
|
|
1650
1739
|
AgentInfo.add_member(:agent_pause_duration_in_seconds, Shapes::ShapeRef.new(shape: AgentPauseDurationInSeconds, location_name: "AgentPauseDurationInSeconds"))
|
|
1651
1740
|
AgentInfo.add_member(:hierarchy_groups, Shapes::ShapeRef.new(shape: HierarchyGroups, location_name: "HierarchyGroups"))
|
|
@@ -1715,6 +1804,11 @@ module Aws::Connect
|
|
|
1715
1804
|
|
|
1716
1805
|
AgentsMinOneMaxHundred.member = Shapes::ShapeRef.new(shape: UserId)
|
|
1717
1806
|
|
|
1807
|
+
AliasConfiguration.add_member(:email_address_id, Shapes::ShapeRef.new(shape: EmailAddressId, required: true, location_name: "EmailAddressId"))
|
|
1808
|
+
AliasConfiguration.struct_class = Types::AliasConfiguration
|
|
1809
|
+
|
|
1810
|
+
AliasConfigurationList.member = Shapes::ShapeRef.new(shape: AliasConfiguration)
|
|
1811
|
+
|
|
1718
1812
|
AllowedAccessControlTags.key = Shapes::ShapeRef.new(shape: SecurityProfilePolicyKey)
|
|
1719
1813
|
AllowedAccessControlTags.value = Shapes::ShapeRef.new(shape: SecurityProfilePolicyValue)
|
|
1720
1814
|
|
|
@@ -1724,6 +1818,8 @@ module Aws::Connect
|
|
|
1724
1818
|
|
|
1725
1819
|
AllowedMonitorCapabilities.member = Shapes::ShapeRef.new(shape: MonitorCapability)
|
|
1726
1820
|
|
|
1821
|
+
AllowedUserActions.member = Shapes::ShapeRef.new(shape: AllowedUserAction)
|
|
1822
|
+
|
|
1727
1823
|
AnalyticsDataAssociationResult.add_member(:data_set_id, Shapes::ShapeRef.new(shape: DataSetId, location_name: "DataSetId"))
|
|
1728
1824
|
AnalyticsDataAssociationResult.add_member(:target_account_id, Shapes::ShapeRef.new(shape: AWSAccountId, location_name: "TargetAccountId"))
|
|
1729
1825
|
AnalyticsDataAssociationResult.add_member(:resource_share_id, Shapes::ShapeRef.new(shape: String, location_name: "ResourceShareId"))
|
|
@@ -1793,6 +1889,14 @@ module Aws::Connect
|
|
|
1793
1889
|
|
|
1794
1890
|
AssociateDefaultVocabularyResponse.struct_class = Types::AssociateDefaultVocabularyResponse
|
|
1795
1891
|
|
|
1892
|
+
AssociateEmailAddressAliasRequest.add_member(:email_address_id, Shapes::ShapeRef.new(shape: EmailAddressId, required: true, location: "uri", location_name: "EmailAddressId"))
|
|
1893
|
+
AssociateEmailAddressAliasRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
1894
|
+
AssociateEmailAddressAliasRequest.add_member(:alias_configuration, Shapes::ShapeRef.new(shape: AliasConfiguration, required: true, location_name: "AliasConfiguration"))
|
|
1895
|
+
AssociateEmailAddressAliasRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
1896
|
+
AssociateEmailAddressAliasRequest.struct_class = Types::AssociateEmailAddressAliasRequest
|
|
1897
|
+
|
|
1898
|
+
AssociateEmailAddressAliasResponse.struct_class = Types::AssociateEmailAddressAliasResponse
|
|
1899
|
+
|
|
1796
1900
|
AssociateFlowRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
1797
1901
|
AssociateFlowRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "ResourceId"))
|
|
1798
1902
|
AssociateFlowRequest.add_member(:flow_id, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "FlowId"))
|
|
@@ -1956,6 +2060,16 @@ module Aws::Connect
|
|
|
1956
2060
|
|
|
1957
2061
|
AuthenticationProfileSummaryList.member = Shapes::ShapeRef.new(shape: AuthenticationProfileSummary)
|
|
1958
2062
|
|
|
2063
|
+
AutoEvaluationConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Enabled"))
|
|
2064
|
+
AutoEvaluationConfiguration.struct_class = Types::AutoEvaluationConfiguration
|
|
2065
|
+
|
|
2066
|
+
AutoEvaluationDetails.add_member(:auto_evaluation_enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "AutoEvaluationEnabled"))
|
|
2067
|
+
AutoEvaluationDetails.add_member(:auto_evaluation_status, Shapes::ShapeRef.new(shape: AutoEvaluationStatus, location_name: "AutoEvaluationStatus"))
|
|
2068
|
+
AutoEvaluationDetails.struct_class = Types::AutoEvaluationDetails
|
|
2069
|
+
|
|
2070
|
+
AutomaticFailConfiguration.add_member(:target_section, Shapes::ShapeRef.new(shape: ReferenceId, location_name: "TargetSection"))
|
|
2071
|
+
AutomaticFailConfiguration.struct_class = Types::AutomaticFailConfiguration
|
|
2072
|
+
|
|
1959
2073
|
AvailableNumberSummary.add_member(:phone_number, Shapes::ShapeRef.new(shape: PhoneNumber, location_name: "PhoneNumber"))
|
|
1960
2074
|
AvailableNumberSummary.add_member(:phone_number_country_code, Shapes::ShapeRef.new(shape: PhoneNumberCountryCode, location_name: "PhoneNumberCountryCode"))
|
|
1961
2075
|
AvailableNumberSummary.add_member(:phone_number_type, Shapes::ShapeRef.new(shape: PhoneNumberType, location_name: "PhoneNumberType"))
|
|
@@ -2007,6 +2121,10 @@ module Aws::Connect
|
|
|
2007
2121
|
BatchPutContactResponse.add_member(:failed_request_list, Shapes::ShapeRef.new(shape: FailedRequestList, location_name: "FailedRequestList"))
|
|
2008
2122
|
BatchPutContactResponse.struct_class = Types::BatchPutContactResponse
|
|
2009
2123
|
|
|
2124
|
+
BooleanCondition.add_member(:field_name, Shapes::ShapeRef.new(shape: String, location_name: "FieldName"))
|
|
2125
|
+
BooleanCondition.add_member(:comparison_type, Shapes::ShapeRef.new(shape: BooleanComparisonType, location_name: "ComparisonType"))
|
|
2126
|
+
BooleanCondition.struct_class = Types::BooleanCondition
|
|
2127
|
+
|
|
2010
2128
|
Campaign.add_member(:campaign_id, Shapes::ShapeRef.new(shape: CampaignId, location_name: "CampaignId"))
|
|
2011
2129
|
Campaign.struct_class = Types::Campaign
|
|
2012
2130
|
|
|
@@ -2150,6 +2268,7 @@ module Aws::Connect
|
|
|
2150
2268
|
Contact.add_member(:contact_evaluations, Shapes::ShapeRef.new(shape: ContactEvaluations, location_name: "ContactEvaluations"))
|
|
2151
2269
|
Contact.add_member(:task_template_info, Shapes::ShapeRef.new(shape: TaskTemplateInfoV2, location_name: "TaskTemplateInfo"))
|
|
2152
2270
|
Contact.add_member(:contact_details, Shapes::ShapeRef.new(shape: ContactDetails, location_name: "ContactDetails"))
|
|
2271
|
+
Contact.add_member(:outbound_strategy, Shapes::ShapeRef.new(shape: OutboundStrategy, location_name: "OutboundStrategy"))
|
|
2153
2272
|
Contact.add_member(:attributes, Shapes::ShapeRef.new(shape: Attributes, location_name: "Attributes"))
|
|
2154
2273
|
Contact.struct_class = Types::Contact
|
|
2155
2274
|
|
|
@@ -2167,6 +2286,7 @@ module Aws::Connect
|
|
|
2167
2286
|
ContactDataRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, location_name: "QueueId"))
|
|
2168
2287
|
ContactDataRequest.add_member(:attributes, Shapes::ShapeRef.new(shape: Attributes, location_name: "Attributes"))
|
|
2169
2288
|
ContactDataRequest.add_member(:campaign, Shapes::ShapeRef.new(shape: Campaign, location_name: "Campaign"))
|
|
2289
|
+
ContactDataRequest.add_member(:outbound_strategy, Shapes::ShapeRef.new(shape: OutboundStrategy, location_name: "OutboundStrategy"))
|
|
2170
2290
|
ContactDataRequest.struct_class = Types::ContactDataRequest
|
|
2171
2291
|
|
|
2172
2292
|
ContactDataRequestList.member = Shapes::ShapeRef.new(shape: ContactDataRequest)
|
|
@@ -2446,7 +2566,9 @@ module Aws::Connect
|
|
|
2446
2566
|
CreateEvaluationFormRequest.add_member(:description, Shapes::ShapeRef.new(shape: EvaluationFormDescription, location_name: "Description"))
|
|
2447
2567
|
CreateEvaluationFormRequest.add_member(:items, Shapes::ShapeRef.new(shape: EvaluationFormItemsList, required: true, location_name: "Items"))
|
|
2448
2568
|
CreateEvaluationFormRequest.add_member(:scoring_strategy, Shapes::ShapeRef.new(shape: EvaluationFormScoringStrategy, location_name: "ScoringStrategy"))
|
|
2569
|
+
CreateEvaluationFormRequest.add_member(:auto_evaluation_configuration, Shapes::ShapeRef.new(shape: EvaluationFormAutoEvaluationConfiguration, location_name: "AutoEvaluationConfiguration"))
|
|
2449
2570
|
CreateEvaluationFormRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
2571
|
+
CreateEvaluationFormRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
2450
2572
|
CreateEvaluationFormRequest.struct_class = Types::CreateEvaluationFormRequest
|
|
2451
2573
|
|
|
2452
2574
|
CreateEvaluationFormResponse.add_member(:evaluation_form_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "EvaluationFormId"))
|
|
@@ -2782,6 +2904,12 @@ module Aws::Connect
|
|
|
2782
2904
|
DateReference.add_member(:value, Shapes::ShapeRef.new(shape: ReferenceValue, location_name: "Value"))
|
|
2783
2905
|
DateReference.struct_class = Types::DateReference
|
|
2784
2906
|
|
|
2907
|
+
DateTimeCondition.add_member(:field_name, Shapes::ShapeRef.new(shape: String, location_name: "FieldName"))
|
|
2908
|
+
DateTimeCondition.add_member(:min_value, Shapes::ShapeRef.new(shape: DateTimeFormat, location_name: "MinValue"))
|
|
2909
|
+
DateTimeCondition.add_member(:max_value, Shapes::ShapeRef.new(shape: DateTimeFormat, location_name: "MaxValue"))
|
|
2910
|
+
DateTimeCondition.add_member(:comparison_type, Shapes::ShapeRef.new(shape: DateTimeComparisonType, location_name: "ComparisonType"))
|
|
2911
|
+
DateTimeCondition.struct_class = Types::DateTimeCondition
|
|
2912
|
+
|
|
2785
2913
|
DeactivateEvaluationFormRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
2786
2914
|
DeactivateEvaluationFormRequest.add_member(:evaluation_form_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "EvaluationFormId"))
|
|
2787
2915
|
DeactivateEvaluationFormRequest.add_member(:evaluation_form_version, Shapes::ShapeRef.new(shape: VersionNumber, required: true, location_name: "EvaluationFormVersion"))
|
|
@@ -2792,6 +2920,12 @@ module Aws::Connect
|
|
|
2792
2920
|
DeactivateEvaluationFormResponse.add_member(:evaluation_form_version, Shapes::ShapeRef.new(shape: VersionNumber, required: true, location_name: "EvaluationFormVersion"))
|
|
2793
2921
|
DeactivateEvaluationFormResponse.struct_class = Types::DeactivateEvaluationFormResponse
|
|
2794
2922
|
|
|
2923
|
+
DecimalCondition.add_member(:field_name, Shapes::ShapeRef.new(shape: String, location_name: "FieldName"))
|
|
2924
|
+
DecimalCondition.add_member(:min_value, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "MinValue"))
|
|
2925
|
+
DecimalCondition.add_member(:max_value, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "MaxValue"))
|
|
2926
|
+
DecimalCondition.add_member(:comparison_type, Shapes::ShapeRef.new(shape: DecimalComparisonType, location_name: "ComparisonType"))
|
|
2927
|
+
DecimalCondition.struct_class = Types::DecimalCondition
|
|
2928
|
+
|
|
2795
2929
|
DefaultVocabulary.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
|
2796
2930
|
DefaultVocabulary.add_member(:language_code, Shapes::ShapeRef.new(shape: VocabularyLanguageCode, required: true, location_name: "LanguageCode"))
|
|
2797
2931
|
DefaultVocabulary.add_member(:vocabulary_id, Shapes::ShapeRef.new(shape: VocabularyId, required: true, location_name: "VocabularyId"))
|
|
@@ -2993,6 +3127,7 @@ module Aws::Connect
|
|
|
2993
3127
|
DescribeEmailAddressResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
|
2994
3128
|
DescribeEmailAddressResponse.add_member(:create_timestamp, Shapes::ShapeRef.new(shape: ISO8601Datetime, location_name: "CreateTimestamp"))
|
|
2995
3129
|
DescribeEmailAddressResponse.add_member(:modified_timestamp, Shapes::ShapeRef.new(shape: ISO8601Datetime, location_name: "ModifiedTimestamp"))
|
|
3130
|
+
DescribeEmailAddressResponse.add_member(:alias_configurations, Shapes::ShapeRef.new(shape: AliasConfigurationList, location_name: "AliasConfigurations"))
|
|
2996
3131
|
DescribeEmailAddressResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
2997
3132
|
DescribeEmailAddressResponse.struct_class = Types::DescribeEmailAddressResponse
|
|
2998
3133
|
|
|
@@ -3170,6 +3305,14 @@ module Aws::Connect
|
|
|
3170
3305
|
DisassociateBotRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
3171
3306
|
DisassociateBotRequest.struct_class = Types::DisassociateBotRequest
|
|
3172
3307
|
|
|
3308
|
+
DisassociateEmailAddressAliasRequest.add_member(:email_address_id, Shapes::ShapeRef.new(shape: EmailAddressId, required: true, location: "uri", location_name: "EmailAddressId"))
|
|
3309
|
+
DisassociateEmailAddressAliasRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
3310
|
+
DisassociateEmailAddressAliasRequest.add_member(:alias_configuration, Shapes::ShapeRef.new(shape: AliasConfiguration, required: true, location_name: "AliasConfiguration"))
|
|
3311
|
+
DisassociateEmailAddressAliasRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
3312
|
+
DisassociateEmailAddressAliasRequest.struct_class = Types::DisassociateEmailAddressAliasRequest
|
|
3313
|
+
|
|
3314
|
+
DisassociateEmailAddressAliasResponse.struct_class = Types::DisassociateEmailAddressAliasResponse
|
|
3315
|
+
|
|
3173
3316
|
DisassociateFlowRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
3174
3317
|
DisassociateFlowRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: ARN, required: true, location: "uri", location_name: "ResourceId"))
|
|
3175
3318
|
DisassociateFlowRequest.add_member(:resource_type, Shapes::ShapeRef.new(shape: FlowAssociationResourceType, required: true, location: "uri", location_name: "ResourceType"))
|
|
@@ -3269,6 +3412,7 @@ module Aws::Connect
|
|
|
3269
3412
|
EmailAddressMetadata.add_member(:email_address, Shapes::ShapeRef.new(shape: EmailAddress, location_name: "EmailAddress"))
|
|
3270
3413
|
EmailAddressMetadata.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
|
3271
3414
|
EmailAddressMetadata.add_member(:display_name, Shapes::ShapeRef.new(shape: EmailAddressDisplayName, location_name: "DisplayName"))
|
|
3415
|
+
EmailAddressMetadata.add_member(:alias_configurations, Shapes::ShapeRef.new(shape: AliasConfigurationList, location_name: "AliasConfigurations"))
|
|
3272
3416
|
EmailAddressMetadata.struct_class = Types::EmailAddressMetadata
|
|
3273
3417
|
|
|
3274
3418
|
EmailAddressRecipientList.member = Shapes::ShapeRef.new(shape: EmailAddressInfo)
|
|
@@ -3338,9 +3482,20 @@ module Aws::Connect
|
|
|
3338
3482
|
Evaluation.add_member(:scores, Shapes::ShapeRef.new(shape: EvaluationScoresMap, location_name: "Scores"))
|
|
3339
3483
|
Evaluation.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreatedTime"))
|
|
3340
3484
|
Evaluation.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "LastModifiedTime"))
|
|
3485
|
+
Evaluation.add_member(:evaluation_type, Shapes::ShapeRef.new(shape: EvaluationType, location_name: "EvaluationType"))
|
|
3341
3486
|
Evaluation.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
3342
3487
|
Evaluation.struct_class = Types::Evaluation
|
|
3343
3488
|
|
|
3489
|
+
EvaluationAcknowledgement.add_member(:acknowledged_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "AcknowledgedTime"))
|
|
3490
|
+
EvaluationAcknowledgement.add_member(:acknowledged_by, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "AcknowledgedBy"))
|
|
3491
|
+
EvaluationAcknowledgement.add_member(:acknowledger_comment, Shapes::ShapeRef.new(shape: EvaluationAcknowledgerCommentString, location_name: "AcknowledgerComment"))
|
|
3492
|
+
EvaluationAcknowledgement.struct_class = Types::EvaluationAcknowledgement
|
|
3493
|
+
|
|
3494
|
+
EvaluationAcknowledgementSummary.add_member(:acknowledged_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "AcknowledgedTime"))
|
|
3495
|
+
EvaluationAcknowledgementSummary.add_member(:acknowledged_by, Shapes::ShapeRef.new(shape: ARN, location_name: "AcknowledgedBy"))
|
|
3496
|
+
EvaluationAcknowledgementSummary.add_member(:acknowledger_comment, Shapes::ShapeRef.new(shape: EvaluationAcknowledgerCommentString, location_name: "AcknowledgerComment"))
|
|
3497
|
+
EvaluationAcknowledgementSummary.struct_class = Types::EvaluationAcknowledgementSummary
|
|
3498
|
+
|
|
3344
3499
|
EvaluationAnswerData.add_member(:string_value, Shapes::ShapeRef.new(shape: EvaluationAnswerDataStringValue, location_name: "StringValue"))
|
|
3345
3500
|
EvaluationAnswerData.add_member(:numeric_value, Shapes::ShapeRef.new(shape: EvaluationAnswerDataNumericValue, location_name: "NumericValue"))
|
|
3346
3501
|
EvaluationAnswerData.add_member(:not_applicable, Shapes::ShapeRef.new(shape: Boolean, location_name: "NotApplicable"))
|
|
@@ -3356,6 +3511,7 @@ module Aws::Connect
|
|
|
3356
3511
|
|
|
3357
3512
|
EvaluationAnswerOutput.add_member(:value, Shapes::ShapeRef.new(shape: EvaluationAnswerData, location_name: "Value"))
|
|
3358
3513
|
EvaluationAnswerOutput.add_member(:system_suggested_value, Shapes::ShapeRef.new(shape: EvaluationAnswerData, location_name: "SystemSuggestedValue"))
|
|
3514
|
+
EvaluationAnswerOutput.add_member(:suggested_answers, Shapes::ShapeRef.new(shape: EvaluationSuggestedAnswersList, location_name: "SuggestedAnswers"))
|
|
3359
3515
|
EvaluationAnswerOutput.struct_class = Types::EvaluationAnswerOutput
|
|
3360
3516
|
|
|
3361
3517
|
EvaluationAnswersInputMap.key = Shapes::ShapeRef.new(shape: ResourceId)
|
|
@@ -3364,6 +3520,16 @@ module Aws::Connect
|
|
|
3364
3520
|
EvaluationAnswersOutputMap.key = Shapes::ShapeRef.new(shape: ResourceId)
|
|
3365
3521
|
EvaluationAnswersOutputMap.value = Shapes::ShapeRef.new(shape: EvaluationAnswerOutput)
|
|
3366
3522
|
|
|
3523
|
+
EvaluationAutomationRuleCategory.add_member(:category, Shapes::ShapeRef.new(shape: QuestionRuleCategoryAutomationLabel, required: true, location_name: "Category"))
|
|
3524
|
+
EvaluationAutomationRuleCategory.add_member(:condition, Shapes::ShapeRef.new(shape: QuestionRuleCategoryAutomationCondition, required: true, location_name: "Condition"))
|
|
3525
|
+
EvaluationAutomationRuleCategory.add_member(:points_of_interest, Shapes::ShapeRef.new(shape: EvaluationTranscriptPointsOfInterest, location_name: "PointsOfInterest"))
|
|
3526
|
+
EvaluationAutomationRuleCategory.struct_class = Types::EvaluationAutomationRuleCategory
|
|
3527
|
+
|
|
3528
|
+
EvaluationAutomationRuleCategoryList.member = Shapes::ShapeRef.new(shape: EvaluationAutomationRuleCategory)
|
|
3529
|
+
|
|
3530
|
+
EvaluationContactLensAnswerAnalysisDetails.add_member(:matched_rule_categories, Shapes::ShapeRef.new(shape: EvaluationAutomationRuleCategoryList, location_name: "MatchedRuleCategories"))
|
|
3531
|
+
EvaluationContactLensAnswerAnalysisDetails.struct_class = Types::EvaluationContactLensAnswerAnalysisDetails
|
|
3532
|
+
|
|
3367
3533
|
EvaluationForm.add_member(:evaluation_form_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "EvaluationFormId"))
|
|
3368
3534
|
EvaluationForm.add_member(:evaluation_form_version, Shapes::ShapeRef.new(shape: VersionNumber, required: true, location_name: "EvaluationFormVersion"))
|
|
3369
3535
|
EvaluationForm.add_member(:locked, Shapes::ShapeRef.new(shape: EvaluationFormVersionIsLocked, required: true, location_name: "Locked"))
|
|
@@ -3377,9 +3543,13 @@ module Aws::Connect
|
|
|
3377
3543
|
EvaluationForm.add_member(:created_by, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "CreatedBy"))
|
|
3378
3544
|
EvaluationForm.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "LastModifiedTime"))
|
|
3379
3545
|
EvaluationForm.add_member(:last_modified_by, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "LastModifiedBy"))
|
|
3546
|
+
EvaluationForm.add_member(:auto_evaluation_configuration, Shapes::ShapeRef.new(shape: EvaluationFormAutoEvaluationConfiguration, location_name: "AutoEvaluationConfiguration"))
|
|
3380
3547
|
EvaluationForm.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
3381
3548
|
EvaluationForm.struct_class = Types::EvaluationForm
|
|
3382
3549
|
|
|
3550
|
+
EvaluationFormAutoEvaluationConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Enabled"))
|
|
3551
|
+
EvaluationFormAutoEvaluationConfiguration.struct_class = Types::EvaluationFormAutoEvaluationConfiguration
|
|
3552
|
+
|
|
3383
3553
|
EvaluationFormContent.add_member(:evaluation_form_version, Shapes::ShapeRef.new(shape: VersionNumber, required: true, location_name: "EvaluationFormVersion"))
|
|
3384
3554
|
EvaluationFormContent.add_member(:evaluation_form_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "EvaluationFormId"))
|
|
3385
3555
|
EvaluationFormContent.add_member(:evaluation_form_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "EvaluationFormArn"))
|
|
@@ -3387,6 +3557,7 @@ module Aws::Connect
|
|
|
3387
3557
|
EvaluationFormContent.add_member(:description, Shapes::ShapeRef.new(shape: EvaluationFormDescription, location_name: "Description"))
|
|
3388
3558
|
EvaluationFormContent.add_member(:items, Shapes::ShapeRef.new(shape: EvaluationFormItemsList, required: true, location_name: "Items"))
|
|
3389
3559
|
EvaluationFormContent.add_member(:scoring_strategy, Shapes::ShapeRef.new(shape: EvaluationFormScoringStrategy, location_name: "ScoringStrategy"))
|
|
3560
|
+
EvaluationFormContent.add_member(:auto_evaluation_configuration, Shapes::ShapeRef.new(shape: EvaluationFormAutoEvaluationConfiguration, location_name: "AutoEvaluationConfiguration"))
|
|
3390
3561
|
EvaluationFormContent.struct_class = Types::EvaluationFormContent
|
|
3391
3562
|
|
|
3392
3563
|
EvaluationFormItem.add_member(:section, Shapes::ShapeRef.new(shape: EvaluationFormSection, location_name: "Section"))
|
|
@@ -3397,11 +3568,47 @@ module Aws::Connect
|
|
|
3397
3568
|
EvaluationFormItem.add_member_subclass(:unknown, Types::EvaluationFormItem::Unknown)
|
|
3398
3569
|
EvaluationFormItem.struct_class = Types::EvaluationFormItem
|
|
3399
3570
|
|
|
3571
|
+
EvaluationFormItemEnablementCondition.add_member(:operands, Shapes::ShapeRef.new(shape: EvaluationFormItemEnablementConditionOperandList, required: true, location_name: "Operands"))
|
|
3572
|
+
EvaluationFormItemEnablementCondition.add_member(:operator, Shapes::ShapeRef.new(shape: EvaluationFormItemEnablementOperator, location_name: "Operator"))
|
|
3573
|
+
EvaluationFormItemEnablementCondition.struct_class = Types::EvaluationFormItemEnablementCondition
|
|
3574
|
+
|
|
3575
|
+
EvaluationFormItemEnablementConditionOperand.add_member(:expression, Shapes::ShapeRef.new(shape: EvaluationFormItemEnablementExpression, location_name: "Expression"))
|
|
3576
|
+
EvaluationFormItemEnablementConditionOperand.add_member(:condition, Shapes::ShapeRef.new(shape: EvaluationFormItemEnablementCondition, location_name: "Condition"))
|
|
3577
|
+
EvaluationFormItemEnablementConditionOperand.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
3578
|
+
EvaluationFormItemEnablementConditionOperand.add_member_subclass(:expression, Types::EvaluationFormItemEnablementConditionOperand::Expression)
|
|
3579
|
+
EvaluationFormItemEnablementConditionOperand.add_member_subclass(:condition, Types::EvaluationFormItemEnablementConditionOperand::Condition)
|
|
3580
|
+
EvaluationFormItemEnablementConditionOperand.add_member_subclass(:unknown, Types::EvaluationFormItemEnablementConditionOperand::Unknown)
|
|
3581
|
+
EvaluationFormItemEnablementConditionOperand.struct_class = Types::EvaluationFormItemEnablementConditionOperand
|
|
3582
|
+
|
|
3583
|
+
EvaluationFormItemEnablementConditionOperandList.member = Shapes::ShapeRef.new(shape: EvaluationFormItemEnablementConditionOperand)
|
|
3584
|
+
|
|
3585
|
+
EvaluationFormItemEnablementConfiguration.add_member(:condition, Shapes::ShapeRef.new(shape: EvaluationFormItemEnablementCondition, required: true, location_name: "Condition"))
|
|
3586
|
+
EvaluationFormItemEnablementConfiguration.add_member(:action, Shapes::ShapeRef.new(shape: EvaluationFormItemEnablementAction, required: true, location_name: "Action"))
|
|
3587
|
+
EvaluationFormItemEnablementConfiguration.add_member(:default_action, Shapes::ShapeRef.new(shape: EvaluationFormItemEnablementAction, location_name: "DefaultAction"))
|
|
3588
|
+
EvaluationFormItemEnablementConfiguration.struct_class = Types::EvaluationFormItemEnablementConfiguration
|
|
3589
|
+
|
|
3590
|
+
EvaluationFormItemEnablementExpression.add_member(:source, Shapes::ShapeRef.new(shape: EvaluationFormItemEnablementSource, required: true, location_name: "Source"))
|
|
3591
|
+
EvaluationFormItemEnablementExpression.add_member(:values, Shapes::ShapeRef.new(shape: EvaluationFormItemEnablementSourceValueList, required: true, location_name: "Values"))
|
|
3592
|
+
EvaluationFormItemEnablementExpression.add_member(:comparator, Shapes::ShapeRef.new(shape: EvaluationFormItemSourceValuesComparator, required: true, location_name: "Comparator"))
|
|
3593
|
+
EvaluationFormItemEnablementExpression.struct_class = Types::EvaluationFormItemEnablementExpression
|
|
3594
|
+
|
|
3595
|
+
EvaluationFormItemEnablementSource.add_member(:type, Shapes::ShapeRef.new(shape: EvaluationFormItemEnablementSourceType, required: true, location_name: "Type"))
|
|
3596
|
+
EvaluationFormItemEnablementSource.add_member(:ref_id, Shapes::ShapeRef.new(shape: ReferenceId, location_name: "RefId"))
|
|
3597
|
+
EvaluationFormItemEnablementSource.struct_class = Types::EvaluationFormItemEnablementSource
|
|
3598
|
+
|
|
3599
|
+
EvaluationFormItemEnablementSourceValue.add_member(:type, Shapes::ShapeRef.new(shape: EvaluationFormItemEnablementSourceValueType, required: true, location_name: "Type"))
|
|
3600
|
+
EvaluationFormItemEnablementSourceValue.add_member(:ref_id, Shapes::ShapeRef.new(shape: ReferenceId, location_name: "RefId"))
|
|
3601
|
+
EvaluationFormItemEnablementSourceValue.struct_class = Types::EvaluationFormItemEnablementSourceValue
|
|
3602
|
+
|
|
3603
|
+
EvaluationFormItemEnablementSourceValueList.member = Shapes::ShapeRef.new(shape: EvaluationFormItemEnablementSourceValue)
|
|
3604
|
+
|
|
3400
3605
|
EvaluationFormItemsList.member = Shapes::ShapeRef.new(shape: EvaluationFormItem)
|
|
3401
3606
|
|
|
3402
3607
|
EvaluationFormNumericQuestionAutomation.add_member(:property_value, Shapes::ShapeRef.new(shape: NumericQuestionPropertyValueAutomation, location_name: "PropertyValue"))
|
|
3608
|
+
EvaluationFormNumericQuestionAutomation.add_member(:answer_source, Shapes::ShapeRef.new(shape: EvaluationFormQuestionAutomationAnswerSource, location_name: "AnswerSource"))
|
|
3403
3609
|
EvaluationFormNumericQuestionAutomation.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
3404
3610
|
EvaluationFormNumericQuestionAutomation.add_member_subclass(:property_value, Types::EvaluationFormNumericQuestionAutomation::PropertyValue)
|
|
3611
|
+
EvaluationFormNumericQuestionAutomation.add_member_subclass(:answer_source, Types::EvaluationFormNumericQuestionAutomation::AnswerSource)
|
|
3405
3612
|
EvaluationFormNumericQuestionAutomation.add_member_subclass(:unknown, Types::EvaluationFormNumericQuestionAutomation::Unknown)
|
|
3406
3613
|
EvaluationFormNumericQuestionAutomation.struct_class = Types::EvaluationFormNumericQuestionAutomation
|
|
3407
3614
|
|
|
@@ -3409,6 +3616,7 @@ module Aws::Connect
|
|
|
3409
3616
|
EvaluationFormNumericQuestionOption.add_member(:max_value, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "MaxValue"))
|
|
3410
3617
|
EvaluationFormNumericQuestionOption.add_member(:score, Shapes::ShapeRef.new(shape: EvaluationFormQuestionAnswerScore, location_name: "Score"))
|
|
3411
3618
|
EvaluationFormNumericQuestionOption.add_member(:automatic_fail, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutomaticFail"))
|
|
3619
|
+
EvaluationFormNumericQuestionOption.add_member(:automatic_fail_configuration, Shapes::ShapeRef.new(shape: AutomaticFailConfiguration, location_name: "AutomaticFailConfiguration"))
|
|
3412
3620
|
EvaluationFormNumericQuestionOption.struct_class = Types::EvaluationFormNumericQuestionOption
|
|
3413
3621
|
|
|
3414
3622
|
EvaluationFormNumericQuestionOptionList.member = Shapes::ShapeRef.new(shape: EvaluationFormNumericQuestionOption)
|
|
@@ -3425,14 +3633,20 @@ module Aws::Connect
|
|
|
3425
3633
|
EvaluationFormQuestion.add_member(:not_applicable_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "NotApplicableEnabled"))
|
|
3426
3634
|
EvaluationFormQuestion.add_member(:question_type, Shapes::ShapeRef.new(shape: EvaluationFormQuestionType, required: true, location_name: "QuestionType"))
|
|
3427
3635
|
EvaluationFormQuestion.add_member(:question_type_properties, Shapes::ShapeRef.new(shape: EvaluationFormQuestionTypeProperties, location_name: "QuestionTypeProperties"))
|
|
3636
|
+
EvaluationFormQuestion.add_member(:enablement, Shapes::ShapeRef.new(shape: EvaluationFormItemEnablementConfiguration, location_name: "Enablement"))
|
|
3428
3637
|
EvaluationFormQuestion.add_member(:weight, Shapes::ShapeRef.new(shape: EvaluationFormItemWeight, location_name: "Weight"))
|
|
3429
3638
|
EvaluationFormQuestion.struct_class = Types::EvaluationFormQuestion
|
|
3430
3639
|
|
|
3640
|
+
EvaluationFormQuestionAutomationAnswerSource.add_member(:source_type, Shapes::ShapeRef.new(shape: EvaluationFormQuestionAutomationAnswerSourceType, required: true, location_name: "SourceType"))
|
|
3641
|
+
EvaluationFormQuestionAutomationAnswerSource.struct_class = Types::EvaluationFormQuestionAutomationAnswerSource
|
|
3642
|
+
|
|
3431
3643
|
EvaluationFormQuestionTypeProperties.add_member(:numeric, Shapes::ShapeRef.new(shape: EvaluationFormNumericQuestionProperties, location_name: "Numeric"))
|
|
3432
3644
|
EvaluationFormQuestionTypeProperties.add_member(:single_select, Shapes::ShapeRef.new(shape: EvaluationFormSingleSelectQuestionProperties, location_name: "SingleSelect"))
|
|
3645
|
+
EvaluationFormQuestionTypeProperties.add_member(:text, Shapes::ShapeRef.new(shape: EvaluationFormTextQuestionProperties, location_name: "Text"))
|
|
3433
3646
|
EvaluationFormQuestionTypeProperties.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
3434
3647
|
EvaluationFormQuestionTypeProperties.add_member_subclass(:numeric, Types::EvaluationFormQuestionTypeProperties::Numeric)
|
|
3435
3648
|
EvaluationFormQuestionTypeProperties.add_member_subclass(:single_select, Types::EvaluationFormQuestionTypeProperties::SingleSelect)
|
|
3649
|
+
EvaluationFormQuestionTypeProperties.add_member_subclass(:text, Types::EvaluationFormQuestionTypeProperties::Text)
|
|
3436
3650
|
EvaluationFormQuestionTypeProperties.add_member_subclass(:unknown, Types::EvaluationFormQuestionTypeProperties::Unknown)
|
|
3437
3651
|
EvaluationFormQuestionTypeProperties.struct_class = Types::EvaluationFormQuestionTypeProperties
|
|
3438
3652
|
|
|
@@ -3440,6 +3654,38 @@ module Aws::Connect
|
|
|
3440
3654
|
EvaluationFormScoringStrategy.add_member(:status, Shapes::ShapeRef.new(shape: EvaluationFormScoringStatus, required: true, location_name: "Status"))
|
|
3441
3655
|
EvaluationFormScoringStrategy.struct_class = Types::EvaluationFormScoringStrategy
|
|
3442
3656
|
|
|
3657
|
+
EvaluationFormSearchConditionList.member = Shapes::ShapeRef.new(shape: EvaluationFormSearchCriteria)
|
|
3658
|
+
|
|
3659
|
+
EvaluationFormSearchCriteria.add_member(:or_conditions, Shapes::ShapeRef.new(shape: EvaluationFormSearchConditionList, location_name: "OrConditions"))
|
|
3660
|
+
EvaluationFormSearchCriteria.add_member(:and_conditions, Shapes::ShapeRef.new(shape: EvaluationFormSearchConditionList, location_name: "AndConditions"))
|
|
3661
|
+
EvaluationFormSearchCriteria.add_member(:string_condition, Shapes::ShapeRef.new(shape: StringCondition, location_name: "StringCondition"))
|
|
3662
|
+
EvaluationFormSearchCriteria.add_member(:number_condition, Shapes::ShapeRef.new(shape: NumberCondition, location_name: "NumberCondition"))
|
|
3663
|
+
EvaluationFormSearchCriteria.add_member(:boolean_condition, Shapes::ShapeRef.new(shape: BooleanCondition, location_name: "BooleanCondition"))
|
|
3664
|
+
EvaluationFormSearchCriteria.add_member(:date_time_condition, Shapes::ShapeRef.new(shape: DateTimeCondition, location_name: "DateTimeCondition"))
|
|
3665
|
+
EvaluationFormSearchCriteria.struct_class = Types::EvaluationFormSearchCriteria
|
|
3666
|
+
|
|
3667
|
+
EvaluationFormSearchFilter.add_member(:attribute_filter, Shapes::ShapeRef.new(shape: ControlPlaneAttributeFilter, location_name: "AttributeFilter"))
|
|
3668
|
+
EvaluationFormSearchFilter.struct_class = Types::EvaluationFormSearchFilter
|
|
3669
|
+
|
|
3670
|
+
EvaluationFormSearchSummary.add_member(:evaluation_form_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "EvaluationFormId"))
|
|
3671
|
+
EvaluationFormSearchSummary.add_member(:evaluation_form_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "EvaluationFormArn"))
|
|
3672
|
+
EvaluationFormSearchSummary.add_member(:title, Shapes::ShapeRef.new(shape: EvaluationFormTitle, required: true, location_name: "Title"))
|
|
3673
|
+
EvaluationFormSearchSummary.add_member(:status, Shapes::ShapeRef.new(shape: EvaluationFormVersionStatus, required: true, location_name: "Status"))
|
|
3674
|
+
EvaluationFormSearchSummary.add_member(:description, Shapes::ShapeRef.new(shape: EvaluationFormDescription, location_name: "Description"))
|
|
3675
|
+
EvaluationFormSearchSummary.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreatedTime"))
|
|
3676
|
+
EvaluationFormSearchSummary.add_member(:created_by, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "CreatedBy"))
|
|
3677
|
+
EvaluationFormSearchSummary.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "LastModifiedTime"))
|
|
3678
|
+
EvaluationFormSearchSummary.add_member(:last_modified_by, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "LastModifiedBy"))
|
|
3679
|
+
EvaluationFormSearchSummary.add_member(:last_activated_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastActivatedTime"))
|
|
3680
|
+
EvaluationFormSearchSummary.add_member(:last_activated_by, Shapes::ShapeRef.new(shape: ARN, location_name: "LastActivatedBy"))
|
|
3681
|
+
EvaluationFormSearchSummary.add_member(:latest_version, Shapes::ShapeRef.new(shape: VersionNumber, required: true, location_name: "LatestVersion", metadata: {"box" => true}))
|
|
3682
|
+
EvaluationFormSearchSummary.add_member(:active_version, Shapes::ShapeRef.new(shape: VersionNumber, location_name: "ActiveVersion", metadata: {"box" => true}))
|
|
3683
|
+
EvaluationFormSearchSummary.add_member(:auto_evaluation_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoEvaluationEnabled"))
|
|
3684
|
+
EvaluationFormSearchSummary.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
3685
|
+
EvaluationFormSearchSummary.struct_class = Types::EvaluationFormSearchSummary
|
|
3686
|
+
|
|
3687
|
+
EvaluationFormSearchSummaryList.member = Shapes::ShapeRef.new(shape: EvaluationFormSearchSummary)
|
|
3688
|
+
|
|
3443
3689
|
EvaluationFormSection.add_member(:title, Shapes::ShapeRef.new(shape: EvaluationFormSectionTitle, required: true, location_name: "Title"))
|
|
3444
3690
|
EvaluationFormSection.add_member(:ref_id, Shapes::ShapeRef.new(shape: ReferenceId, required: true, location_name: "RefId"))
|
|
3445
3691
|
EvaluationFormSection.add_member(:instructions, Shapes::ShapeRef.new(shape: EvaluationFormQuestionInstructions, location_name: "Instructions"))
|
|
@@ -3447,8 +3693,9 @@ module Aws::Connect
|
|
|
3447
3693
|
EvaluationFormSection.add_member(:weight, Shapes::ShapeRef.new(shape: EvaluationFormItemWeight, location_name: "Weight"))
|
|
3448
3694
|
EvaluationFormSection.struct_class = Types::EvaluationFormSection
|
|
3449
3695
|
|
|
3450
|
-
EvaluationFormSingleSelectQuestionAutomation.add_member(:options, Shapes::ShapeRef.new(shape: EvaluationFormSingleSelectQuestionAutomationOptionList,
|
|
3696
|
+
EvaluationFormSingleSelectQuestionAutomation.add_member(:options, Shapes::ShapeRef.new(shape: EvaluationFormSingleSelectQuestionAutomationOptionList, location_name: "Options"))
|
|
3451
3697
|
EvaluationFormSingleSelectQuestionAutomation.add_member(:default_option_ref_id, Shapes::ShapeRef.new(shape: ReferenceId, location_name: "DefaultOptionRefId"))
|
|
3698
|
+
EvaluationFormSingleSelectQuestionAutomation.add_member(:answer_source, Shapes::ShapeRef.new(shape: EvaluationFormQuestionAutomationAnswerSource, location_name: "AnswerSource"))
|
|
3452
3699
|
EvaluationFormSingleSelectQuestionAutomation.struct_class = Types::EvaluationFormSingleSelectQuestionAutomation
|
|
3453
3700
|
|
|
3454
3701
|
EvaluationFormSingleSelectQuestionAutomationOption.add_member(:rule_category, Shapes::ShapeRef.new(shape: SingleSelectQuestionRuleCategoryAutomation, location_name: "RuleCategory"))
|
|
@@ -3463,6 +3710,7 @@ module Aws::Connect
|
|
|
3463
3710
|
EvaluationFormSingleSelectQuestionOption.add_member(:text, Shapes::ShapeRef.new(shape: EvaluationFormSingleSelectQuestionOptionText, required: true, location_name: "Text"))
|
|
3464
3711
|
EvaluationFormSingleSelectQuestionOption.add_member(:score, Shapes::ShapeRef.new(shape: EvaluationFormQuestionAnswerScore, location_name: "Score"))
|
|
3465
3712
|
EvaluationFormSingleSelectQuestionOption.add_member(:automatic_fail, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutomaticFail"))
|
|
3713
|
+
EvaluationFormSingleSelectQuestionOption.add_member(:automatic_fail_configuration, Shapes::ShapeRef.new(shape: AutomaticFailConfiguration, location_name: "AutomaticFailConfiguration"))
|
|
3466
3714
|
EvaluationFormSingleSelectQuestionOption.struct_class = Types::EvaluationFormSingleSelectQuestionOption
|
|
3467
3715
|
|
|
3468
3716
|
EvaluationFormSingleSelectQuestionOptionList.member = Shapes::ShapeRef.new(shape: EvaluationFormSingleSelectQuestionOption)
|
|
@@ -3487,6 +3735,12 @@ module Aws::Connect
|
|
|
3487
3735
|
|
|
3488
3736
|
EvaluationFormSummaryList.member = Shapes::ShapeRef.new(shape: EvaluationFormSummary)
|
|
3489
3737
|
|
|
3738
|
+
EvaluationFormTextQuestionAutomation.add_member(:answer_source, Shapes::ShapeRef.new(shape: EvaluationFormQuestionAutomationAnswerSource, location_name: "AnswerSource"))
|
|
3739
|
+
EvaluationFormTextQuestionAutomation.struct_class = Types::EvaluationFormTextQuestionAutomation
|
|
3740
|
+
|
|
3741
|
+
EvaluationFormTextQuestionProperties.add_member(:automation, Shapes::ShapeRef.new(shape: EvaluationFormTextQuestionAutomation, location_name: "Automation"))
|
|
3742
|
+
EvaluationFormTextQuestionProperties.struct_class = Types::EvaluationFormTextQuestionProperties
|
|
3743
|
+
|
|
3490
3744
|
EvaluationFormVersionSummary.add_member(:evaluation_form_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "EvaluationFormArn"))
|
|
3491
3745
|
EvaluationFormVersionSummary.add_member(:evaluation_form_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "EvaluationFormId"))
|
|
3492
3746
|
EvaluationFormVersionSummary.add_member(:evaluation_form_version, Shapes::ShapeRef.new(shape: VersionNumber, required: true, location_name: "EvaluationFormVersion"))
|
|
@@ -3500,10 +3754,17 @@ module Aws::Connect
|
|
|
3500
3754
|
|
|
3501
3755
|
EvaluationFormVersionSummaryList.member = Shapes::ShapeRef.new(shape: EvaluationFormVersionSummary)
|
|
3502
3756
|
|
|
3757
|
+
EvaluationGenAIAnswerAnalysisDetails.add_member(:justification, Shapes::ShapeRef.new(shape: EvaluationSuggestedAnswerJustification, location_name: "Justification"))
|
|
3758
|
+
EvaluationGenAIAnswerAnalysisDetails.add_member(:points_of_interest, Shapes::ShapeRef.new(shape: EvaluationTranscriptPointsOfInterest, location_name: "PointsOfInterest"))
|
|
3759
|
+
EvaluationGenAIAnswerAnalysisDetails.struct_class = Types::EvaluationGenAIAnswerAnalysisDetails
|
|
3760
|
+
|
|
3503
3761
|
EvaluationMetadata.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, required: true, location_name: "ContactId"))
|
|
3504
3762
|
EvaluationMetadata.add_member(:evaluator_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "EvaluatorArn"))
|
|
3505
3763
|
EvaluationMetadata.add_member(:contact_agent_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "ContactAgentId"))
|
|
3764
|
+
EvaluationMetadata.add_member(:calibration_session_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "CalibrationSessionId"))
|
|
3506
3765
|
EvaluationMetadata.add_member(:score, Shapes::ShapeRef.new(shape: EvaluationScore, location_name: "Score"))
|
|
3766
|
+
EvaluationMetadata.add_member(:auto_evaluation, Shapes::ShapeRef.new(shape: AutoEvaluationDetails, location_name: "AutoEvaluation"))
|
|
3767
|
+
EvaluationMetadata.add_member(:acknowledgement, Shapes::ShapeRef.new(shape: EvaluationAcknowledgement, location_name: "Acknowledgement"))
|
|
3507
3768
|
EvaluationMetadata.struct_class = Types::EvaluationMetadata
|
|
3508
3769
|
|
|
3509
3770
|
EvaluationNote.add_member(:value, Shapes::ShapeRef.new(shape: EvaluationNoteString, location_name: "Value"))
|
|
@@ -3512,6 +3773,17 @@ module Aws::Connect
|
|
|
3512
3773
|
EvaluationNotesMap.key = Shapes::ShapeRef.new(shape: ResourceId)
|
|
3513
3774
|
EvaluationNotesMap.value = Shapes::ShapeRef.new(shape: EvaluationNote)
|
|
3514
3775
|
|
|
3776
|
+
EvaluationQuestionAnswerAnalysisDetails.add_member(:gen_ai, Shapes::ShapeRef.new(shape: EvaluationGenAIAnswerAnalysisDetails, location_name: "GenAI"))
|
|
3777
|
+
EvaluationQuestionAnswerAnalysisDetails.add_member(:contact_lens, Shapes::ShapeRef.new(shape: EvaluationContactLensAnswerAnalysisDetails, location_name: "ContactLens"))
|
|
3778
|
+
EvaluationQuestionAnswerAnalysisDetails.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
3779
|
+
EvaluationQuestionAnswerAnalysisDetails.add_member_subclass(:gen_ai, Types::EvaluationQuestionAnswerAnalysisDetails::GenAi)
|
|
3780
|
+
EvaluationQuestionAnswerAnalysisDetails.add_member_subclass(:contact_lens, Types::EvaluationQuestionAnswerAnalysisDetails::ContactLens)
|
|
3781
|
+
EvaluationQuestionAnswerAnalysisDetails.add_member_subclass(:unknown, Types::EvaluationQuestionAnswerAnalysisDetails::Unknown)
|
|
3782
|
+
EvaluationQuestionAnswerAnalysisDetails.struct_class = Types::EvaluationQuestionAnswerAnalysisDetails
|
|
3783
|
+
|
|
3784
|
+
EvaluationQuestionInputDetails.add_member(:transcript_type, Shapes::ShapeRef.new(shape: EvaluationTranscriptType, location_name: "TranscriptType"))
|
|
3785
|
+
EvaluationQuestionInputDetails.struct_class = Types::EvaluationQuestionInputDetails
|
|
3786
|
+
|
|
3515
3787
|
EvaluationScore.add_member(:percentage, Shapes::ShapeRef.new(shape: EvaluationScorePercentage, location_name: "Percentage"))
|
|
3516
3788
|
EvaluationScore.add_member(:not_applicable, Shapes::ShapeRef.new(shape: Boolean, location_name: "NotApplicable"))
|
|
3517
3789
|
EvaluationScore.add_member(:automatic_fail, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutomaticFail"))
|
|
@@ -3520,19 +3792,90 @@ module Aws::Connect
|
|
|
3520
3792
|
EvaluationScoresMap.key = Shapes::ShapeRef.new(shape: ResourceId)
|
|
3521
3793
|
EvaluationScoresMap.value = Shapes::ShapeRef.new(shape: EvaluationScore)
|
|
3522
3794
|
|
|
3795
|
+
EvaluationSearchConditionList.member = Shapes::ShapeRef.new(shape: EvaluationSearchCriteria)
|
|
3796
|
+
|
|
3797
|
+
EvaluationSearchCriteria.add_member(:or_conditions, Shapes::ShapeRef.new(shape: EvaluationSearchConditionList, location_name: "OrConditions"))
|
|
3798
|
+
EvaluationSearchCriteria.add_member(:and_conditions, Shapes::ShapeRef.new(shape: EvaluationSearchConditionList, location_name: "AndConditions"))
|
|
3799
|
+
EvaluationSearchCriteria.add_member(:string_condition, Shapes::ShapeRef.new(shape: StringCondition, location_name: "StringCondition"))
|
|
3800
|
+
EvaluationSearchCriteria.add_member(:number_condition, Shapes::ShapeRef.new(shape: NumberCondition, location_name: "NumberCondition"))
|
|
3801
|
+
EvaluationSearchCriteria.add_member(:boolean_condition, Shapes::ShapeRef.new(shape: BooleanCondition, location_name: "BooleanCondition"))
|
|
3802
|
+
EvaluationSearchCriteria.add_member(:date_time_condition, Shapes::ShapeRef.new(shape: DateTimeCondition, location_name: "DateTimeCondition"))
|
|
3803
|
+
EvaluationSearchCriteria.add_member(:decimal_condition, Shapes::ShapeRef.new(shape: DecimalCondition, location_name: "DecimalCondition"))
|
|
3804
|
+
EvaluationSearchCriteria.struct_class = Types::EvaluationSearchCriteria
|
|
3805
|
+
|
|
3806
|
+
EvaluationSearchFilter.add_member(:attribute_filter, Shapes::ShapeRef.new(shape: ControlPlaneAttributeFilter, location_name: "AttributeFilter"))
|
|
3807
|
+
EvaluationSearchFilter.struct_class = Types::EvaluationSearchFilter
|
|
3808
|
+
|
|
3809
|
+
EvaluationSearchMetadata.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, required: true, location_name: "ContactId"))
|
|
3810
|
+
EvaluationSearchMetadata.add_member(:evaluator_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "EvaluatorArn"))
|
|
3811
|
+
EvaluationSearchMetadata.add_member(:contact_agent_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "ContactAgentId"))
|
|
3812
|
+
EvaluationSearchMetadata.add_member(:calibration_session_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "CalibrationSessionId"))
|
|
3813
|
+
EvaluationSearchMetadata.add_member(:score_percentage, Shapes::ShapeRef.new(shape: EvaluationScorePercentage, location_name: "ScorePercentage"))
|
|
3814
|
+
EvaluationSearchMetadata.add_member(:score_automatic_fail, Shapes::ShapeRef.new(shape: Boolean, location_name: "ScoreAutomaticFail"))
|
|
3815
|
+
EvaluationSearchMetadata.add_member(:score_not_applicable, Shapes::ShapeRef.new(shape: Boolean, location_name: "ScoreNotApplicable"))
|
|
3816
|
+
EvaluationSearchMetadata.add_member(:auto_evaluation_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoEvaluationEnabled"))
|
|
3817
|
+
EvaluationSearchMetadata.add_member(:auto_evaluation_status, Shapes::ShapeRef.new(shape: AutoEvaluationStatus, location_name: "AutoEvaluationStatus"))
|
|
3818
|
+
EvaluationSearchMetadata.add_member(:acknowledged_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "AcknowledgedTime"))
|
|
3819
|
+
EvaluationSearchMetadata.add_member(:acknowledged_by, Shapes::ShapeRef.new(shape: ARN, location_name: "AcknowledgedBy"))
|
|
3820
|
+
EvaluationSearchMetadata.add_member(:acknowledger_comment, Shapes::ShapeRef.new(shape: EvaluationAcknowledgerCommentString, location_name: "AcknowledgerComment"))
|
|
3821
|
+
EvaluationSearchMetadata.struct_class = Types::EvaluationSearchMetadata
|
|
3822
|
+
|
|
3823
|
+
EvaluationSearchSummary.add_member(:evaluation_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "EvaluationId"))
|
|
3824
|
+
EvaluationSearchSummary.add_member(:evaluation_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "EvaluationArn"))
|
|
3825
|
+
EvaluationSearchSummary.add_member(:evaluation_form_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "EvaluationFormId"))
|
|
3826
|
+
EvaluationSearchSummary.add_member(:evaluation_form_version, Shapes::ShapeRef.new(shape: VersionNumber, required: true, location_name: "EvaluationFormVersion", metadata: {"box" => true}))
|
|
3827
|
+
EvaluationSearchSummary.add_member(:metadata, Shapes::ShapeRef.new(shape: EvaluationSearchMetadata, required: true, location_name: "Metadata"))
|
|
3828
|
+
EvaluationSearchSummary.add_member(:status, Shapes::ShapeRef.new(shape: EvaluationStatus, required: true, location_name: "Status"))
|
|
3829
|
+
EvaluationSearchSummary.add_member(:evaluation_type, Shapes::ShapeRef.new(shape: EvaluationType, location_name: "EvaluationType"))
|
|
3830
|
+
EvaluationSearchSummary.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreatedTime"))
|
|
3831
|
+
EvaluationSearchSummary.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "LastModifiedTime"))
|
|
3832
|
+
EvaluationSearchSummary.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
3833
|
+
EvaluationSearchSummary.struct_class = Types::EvaluationSearchSummary
|
|
3834
|
+
|
|
3835
|
+
EvaluationSearchSummaryList.member = Shapes::ShapeRef.new(shape: EvaluationSearchSummary)
|
|
3836
|
+
|
|
3837
|
+
EvaluationSuggestedAnswer.add_member(:value, Shapes::ShapeRef.new(shape: EvaluationAnswerData, location_name: "Value"))
|
|
3838
|
+
EvaluationSuggestedAnswer.add_member(:status, Shapes::ShapeRef.new(shape: EvaluationSuggestedAnswerStatus, required: true, location_name: "Status"))
|
|
3839
|
+
EvaluationSuggestedAnswer.add_member(:input, Shapes::ShapeRef.new(shape: EvaluationQuestionInputDetails, location_name: "Input"))
|
|
3840
|
+
EvaluationSuggestedAnswer.add_member(:analysis_type, Shapes::ShapeRef.new(shape: EvaluationQuestionAnswerAnalysisType, required: true, location_name: "AnalysisType"))
|
|
3841
|
+
EvaluationSuggestedAnswer.add_member(:analysis_details, Shapes::ShapeRef.new(shape: EvaluationQuestionAnswerAnalysisDetails, location_name: "AnalysisDetails"))
|
|
3842
|
+
EvaluationSuggestedAnswer.struct_class = Types::EvaluationSuggestedAnswer
|
|
3843
|
+
|
|
3844
|
+
EvaluationSuggestedAnswerTranscriptMillisecondOffsets.add_member(:begin_offset_millis, Shapes::ShapeRef.new(shape: EvaluationSuggestedAnswerTranscriptMillisOffset, required: true, location_name: "BeginOffsetMillis"))
|
|
3845
|
+
EvaluationSuggestedAnswerTranscriptMillisecondOffsets.struct_class = Types::EvaluationSuggestedAnswerTranscriptMillisecondOffsets
|
|
3846
|
+
|
|
3847
|
+
EvaluationSuggestedAnswersList.member = Shapes::ShapeRef.new(shape: EvaluationSuggestedAnswer)
|
|
3848
|
+
|
|
3523
3849
|
EvaluationSummary.add_member(:evaluation_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "EvaluationId"))
|
|
3524
3850
|
EvaluationSummary.add_member(:evaluation_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "EvaluationArn"))
|
|
3525
3851
|
EvaluationSummary.add_member(:evaluation_form_title, Shapes::ShapeRef.new(shape: EvaluationFormTitle, required: true, location_name: "EvaluationFormTitle"))
|
|
3526
3852
|
EvaluationSummary.add_member(:evaluation_form_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "EvaluationFormId"))
|
|
3853
|
+
EvaluationSummary.add_member(:calibration_session_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "CalibrationSessionId"))
|
|
3527
3854
|
EvaluationSummary.add_member(:status, Shapes::ShapeRef.new(shape: EvaluationStatus, required: true, location_name: "Status"))
|
|
3855
|
+
EvaluationSummary.add_member(:auto_evaluation_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoEvaluationEnabled"))
|
|
3856
|
+
EvaluationSummary.add_member(:auto_evaluation_status, Shapes::ShapeRef.new(shape: AutoEvaluationStatus, location_name: "AutoEvaluationStatus"))
|
|
3528
3857
|
EvaluationSummary.add_member(:evaluator_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "EvaluatorArn"))
|
|
3529
3858
|
EvaluationSummary.add_member(:score, Shapes::ShapeRef.new(shape: EvaluationScore, location_name: "Score"))
|
|
3859
|
+
EvaluationSummary.add_member(:acknowledgement, Shapes::ShapeRef.new(shape: EvaluationAcknowledgementSummary, location_name: "Acknowledgement"))
|
|
3860
|
+
EvaluationSummary.add_member(:evaluation_type, Shapes::ShapeRef.new(shape: EvaluationType, location_name: "EvaluationType"))
|
|
3530
3861
|
EvaluationSummary.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreatedTime"))
|
|
3531
3862
|
EvaluationSummary.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "LastModifiedTime"))
|
|
3532
3863
|
EvaluationSummary.struct_class = Types::EvaluationSummary
|
|
3533
3864
|
|
|
3534
3865
|
EvaluationSummaryList.member = Shapes::ShapeRef.new(shape: EvaluationSummary)
|
|
3535
3866
|
|
|
3867
|
+
EvaluationTranscriptPointOfInterest.add_member(:millisecond_offsets, Shapes::ShapeRef.new(shape: EvaluationSuggestedAnswerTranscriptMillisecondOffsets, location_name: "MillisecondOffsets"))
|
|
3868
|
+
EvaluationTranscriptPointOfInterest.add_member(:transcript_segment, Shapes::ShapeRef.new(shape: EvaluationSuggestedAnswerTranscriptSegment, location_name: "TranscriptSegment"))
|
|
3869
|
+
EvaluationTranscriptPointOfInterest.struct_class = Types::EvaluationTranscriptPointOfInterest
|
|
3870
|
+
|
|
3871
|
+
EvaluationTranscriptPointsOfInterest.member = Shapes::ShapeRef.new(shape: EvaluationTranscriptPointOfInterest)
|
|
3872
|
+
|
|
3873
|
+
EvaluatorUserUnion.add_member(:connect_user_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ConnectUserArn"))
|
|
3874
|
+
EvaluatorUserUnion.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
3875
|
+
EvaluatorUserUnion.add_member_subclass(:connect_user_arn, Types::EvaluatorUserUnion::ConnectUserArn)
|
|
3876
|
+
EvaluatorUserUnion.add_member_subclass(:unknown, Types::EvaluatorUserUnion::Unknown)
|
|
3877
|
+
EvaluatorUserUnion.struct_class = Types::EvaluatorUserUnion
|
|
3878
|
+
|
|
3536
3879
|
EventBridgeActionDefinition.add_member(:name, Shapes::ShapeRef.new(shape: EventBridgeActionName, required: true, location_name: "Name"))
|
|
3537
3880
|
EventBridgeActionDefinition.struct_class = Types::EventBridgeActionDefinition
|
|
3538
3881
|
|
|
@@ -4722,6 +5065,13 @@ module Aws::Connect
|
|
|
4722
5065
|
OutboundRawMessage.add_member(:content_type, Shapes::ShapeRef.new(shape: EmailMessageContentType, required: true, location_name: "ContentType"))
|
|
4723
5066
|
OutboundRawMessage.struct_class = Types::OutboundRawMessage
|
|
4724
5067
|
|
|
5068
|
+
OutboundStrategy.add_member(:type, Shapes::ShapeRef.new(shape: OutboundStrategyType, required: true, location_name: "Type"))
|
|
5069
|
+
OutboundStrategy.add_member(:config, Shapes::ShapeRef.new(shape: OutboundStrategyConfig, location_name: "Config"))
|
|
5070
|
+
OutboundStrategy.struct_class = Types::OutboundStrategy
|
|
5071
|
+
|
|
5072
|
+
OutboundStrategyConfig.add_member(:agent_first, Shapes::ShapeRef.new(shape: AgentFirst, location_name: "AgentFirst"))
|
|
5073
|
+
OutboundStrategyConfig.struct_class = Types::OutboundStrategyConfig
|
|
5074
|
+
|
|
4725
5075
|
OutputTypeNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
|
4726
5076
|
OutputTypeNotFoundException.struct_class = Types::OutputTypeNotFoundException
|
|
4727
5077
|
|
|
@@ -4804,6 +5154,9 @@ module Aws::Connect
|
|
|
4804
5154
|
|
|
4805
5155
|
PhoneNumberTypes.member = Shapes::ShapeRef.new(shape: PhoneNumberType)
|
|
4806
5156
|
|
|
5157
|
+
PostAcceptTimeoutConfig.add_member(:duration_in_seconds, Shapes::ShapeRef.new(shape: PostAcceptPreviewTimeoutDurationInSeconds, required: true, location_name: "DurationInSeconds"))
|
|
5158
|
+
PostAcceptTimeoutConfig.struct_class = Types::PostAcceptTimeoutConfig
|
|
5159
|
+
|
|
4807
5160
|
PotentialAudioQualityIssues.member = Shapes::ShapeRef.new(shape: PotentialAudioQualityIssue)
|
|
4808
5161
|
|
|
4809
5162
|
PredefinedAttribute.add_member(:name, Shapes::ShapeRef.new(shape: PredefinedAttributeName, location_name: "Name"))
|
|
@@ -4844,6 +5197,10 @@ module Aws::Connect
|
|
|
4844
5197
|
PredefinedAttributeValues.add_member_subclass(:unknown, Types::PredefinedAttributeValues::Unknown)
|
|
4845
5198
|
PredefinedAttributeValues.struct_class = Types::PredefinedAttributeValues
|
|
4846
5199
|
|
|
5200
|
+
Preview.add_member(:post_accept_timeout_config, Shapes::ShapeRef.new(shape: PostAcceptTimeoutConfig, required: true, location_name: "PostAcceptTimeoutConfig"))
|
|
5201
|
+
Preview.add_member(:allowed_user_actions, Shapes::ShapeRef.new(shape: AllowedUserActions, required: true, location_name: "AllowedUserActions"))
|
|
5202
|
+
Preview.struct_class = Types::Preview
|
|
5203
|
+
|
|
4847
5204
|
ProblemDetail.add_member(:message, Shapes::ShapeRef.new(shape: ProblemMessageString, location_name: "message"))
|
|
4848
5205
|
ProblemDetail.struct_class = Types::ProblemDetail
|
|
4849
5206
|
|
|
@@ -5402,6 +5759,18 @@ module Aws::Connect
|
|
|
5402
5759
|
SearchAvailablePhoneNumbersResponse.add_member(:available_numbers_list, Shapes::ShapeRef.new(shape: AvailableNumbersList, location_name: "AvailableNumbersList"))
|
|
5403
5760
|
SearchAvailablePhoneNumbersResponse.struct_class = Types::SearchAvailablePhoneNumbersResponse
|
|
5404
5761
|
|
|
5762
|
+
SearchContactEvaluationsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
|
5763
|
+
SearchContactEvaluationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
5764
|
+
SearchContactEvaluationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location_name: "MaxResults", metadata: {"box" => true}))
|
|
5765
|
+
SearchContactEvaluationsRequest.add_member(:search_criteria, Shapes::ShapeRef.new(shape: EvaluationSearchCriteria, location_name: "SearchCriteria"))
|
|
5766
|
+
SearchContactEvaluationsRequest.add_member(:search_filter, Shapes::ShapeRef.new(shape: EvaluationSearchFilter, location_name: "SearchFilter"))
|
|
5767
|
+
SearchContactEvaluationsRequest.struct_class = Types::SearchContactEvaluationsRequest
|
|
5768
|
+
|
|
5769
|
+
SearchContactEvaluationsResponse.add_member(:evaluation_search_summary_list, Shapes::ShapeRef.new(shape: EvaluationSearchSummaryList, location_name: "EvaluationSearchSummaryList"))
|
|
5770
|
+
SearchContactEvaluationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
5771
|
+
SearchContactEvaluationsResponse.add_member(:approximate_total_count, Shapes::ShapeRef.new(shape: ApproximateTotalCount, location_name: "ApproximateTotalCount"))
|
|
5772
|
+
SearchContactEvaluationsResponse.struct_class = Types::SearchContactEvaluationsResponse
|
|
5773
|
+
|
|
5405
5774
|
SearchContactFlowModulesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
|
5406
5775
|
SearchContactFlowModulesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
|
5407
5776
|
SearchContactFlowModulesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location_name: "MaxResults", metadata: {"box" => true}))
|
|
@@ -5483,6 +5852,18 @@ module Aws::Connect
|
|
|
5483
5852
|
SearchEmailAddressesResponse.add_member(:approximate_total_count, Shapes::ShapeRef.new(shape: ApproximateTotalCount, location_name: "ApproximateTotalCount"))
|
|
5484
5853
|
SearchEmailAddressesResponse.struct_class = Types::SearchEmailAddressesResponse
|
|
5485
5854
|
|
|
5855
|
+
SearchEvaluationFormsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
|
5856
|
+
SearchEvaluationFormsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
5857
|
+
SearchEvaluationFormsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location_name: "MaxResults", metadata: {"box" => true}))
|
|
5858
|
+
SearchEvaluationFormsRequest.add_member(:search_criteria, Shapes::ShapeRef.new(shape: EvaluationFormSearchCriteria, location_name: "SearchCriteria"))
|
|
5859
|
+
SearchEvaluationFormsRequest.add_member(:search_filter, Shapes::ShapeRef.new(shape: EvaluationFormSearchFilter, location_name: "SearchFilter"))
|
|
5860
|
+
SearchEvaluationFormsRequest.struct_class = Types::SearchEvaluationFormsRequest
|
|
5861
|
+
|
|
5862
|
+
SearchEvaluationFormsResponse.add_member(:evaluation_form_search_summary_list, Shapes::ShapeRef.new(shape: EvaluationFormSearchSummaryList, location_name: "EvaluationFormSearchSummaryList"))
|
|
5863
|
+
SearchEvaluationFormsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
5864
|
+
SearchEvaluationFormsResponse.add_member(:approximate_total_count, Shapes::ShapeRef.new(shape: ApproximateTotalCount, location_name: "ApproximateTotalCount"))
|
|
5865
|
+
SearchEvaluationFormsResponse.struct_class = Types::SearchEvaluationFormsResponse
|
|
5866
|
+
|
|
5486
5867
|
SearchHoursOfOperationOverridesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
|
5487
5868
|
SearchHoursOfOperationOverridesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
|
5488
5869
|
SearchHoursOfOperationOverridesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location_name: "MaxResults", metadata: {"box" => true}))
|
|
@@ -5838,7 +6219,9 @@ module Aws::Connect
|
|
|
5838
6219
|
StartContactEvaluationRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
5839
6220
|
StartContactEvaluationRequest.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, required: true, location_name: "ContactId"))
|
|
5840
6221
|
StartContactEvaluationRequest.add_member(:evaluation_form_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "EvaluationFormId"))
|
|
6222
|
+
StartContactEvaluationRequest.add_member(:auto_evaluation_configuration, Shapes::ShapeRef.new(shape: AutoEvaluationConfiguration, location_name: "AutoEvaluationConfiguration"))
|
|
5841
6223
|
StartContactEvaluationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
6224
|
+
StartContactEvaluationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
5842
6225
|
StartContactEvaluationRequest.struct_class = Types::StartContactEvaluationRequest
|
|
5843
6226
|
|
|
5844
6227
|
StartContactEvaluationResponse.add_member(:evaluation_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "EvaluationId"))
|
|
@@ -5924,6 +6307,7 @@ module Aws::Connect
|
|
|
5924
6307
|
StartOutboundVoiceContactRequest.add_member(:answer_machine_detection_config, Shapes::ShapeRef.new(shape: AnswerMachineDetectionConfig, location_name: "AnswerMachineDetectionConfig"))
|
|
5925
6308
|
StartOutboundVoiceContactRequest.add_member(:campaign_id, Shapes::ShapeRef.new(shape: CampaignId, location_name: "CampaignId"))
|
|
5926
6309
|
StartOutboundVoiceContactRequest.add_member(:traffic_type, Shapes::ShapeRef.new(shape: TrafficType, location_name: "TrafficType"))
|
|
6310
|
+
StartOutboundVoiceContactRequest.add_member(:outbound_strategy, Shapes::ShapeRef.new(shape: OutboundStrategy, location_name: "OutboundStrategy"))
|
|
5927
6311
|
StartOutboundVoiceContactRequest.struct_class = Types::StartOutboundVoiceContactRequest
|
|
5928
6312
|
|
|
5929
6313
|
StartOutboundVoiceContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContactId"))
|
|
@@ -6023,6 +6407,7 @@ module Aws::Connect
|
|
|
6023
6407
|
SubmitContactEvaluationRequest.add_member(:evaluation_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "EvaluationId"))
|
|
6024
6408
|
SubmitContactEvaluationRequest.add_member(:answers, Shapes::ShapeRef.new(shape: EvaluationAnswersInputMap, location_name: "Answers"))
|
|
6025
6409
|
SubmitContactEvaluationRequest.add_member(:notes, Shapes::ShapeRef.new(shape: EvaluationNotesMap, location_name: "Notes"))
|
|
6410
|
+
SubmitContactEvaluationRequest.add_member(:submitted_by, Shapes::ShapeRef.new(shape: EvaluatorUserUnion, location_name: "SubmittedBy"))
|
|
6026
6411
|
SubmitContactEvaluationRequest.struct_class = Types::SubmitContactEvaluationRequest
|
|
6027
6412
|
|
|
6028
6413
|
SubmitContactEvaluationResponse.add_member(:evaluation_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "EvaluationId"))
|
|
@@ -6248,6 +6633,7 @@ module Aws::Connect
|
|
|
6248
6633
|
UpdateContactEvaluationRequest.add_member(:evaluation_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "EvaluationId"))
|
|
6249
6634
|
UpdateContactEvaluationRequest.add_member(:answers, Shapes::ShapeRef.new(shape: EvaluationAnswersInputMap, location_name: "Answers"))
|
|
6250
6635
|
UpdateContactEvaluationRequest.add_member(:notes, Shapes::ShapeRef.new(shape: EvaluationNotesMap, location_name: "Notes"))
|
|
6636
|
+
UpdateContactEvaluationRequest.add_member(:updated_by, Shapes::ShapeRef.new(shape: EvaluatorUserUnion, location_name: "UpdatedBy"))
|
|
6251
6637
|
UpdateContactEvaluationRequest.struct_class = Types::UpdateContactEvaluationRequest
|
|
6252
6638
|
|
|
6253
6639
|
UpdateContactEvaluationResponse.add_member(:evaluation_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "EvaluationId"))
|
|
@@ -6343,6 +6729,7 @@ module Aws::Connect
|
|
|
6343
6729
|
UpdateEvaluationFormRequest.add_member(:description, Shapes::ShapeRef.new(shape: EvaluationFormDescription, location_name: "Description"))
|
|
6344
6730
|
UpdateEvaluationFormRequest.add_member(:items, Shapes::ShapeRef.new(shape: EvaluationFormItemsList, required: true, location_name: "Items"))
|
|
6345
6731
|
UpdateEvaluationFormRequest.add_member(:scoring_strategy, Shapes::ShapeRef.new(shape: EvaluationFormScoringStrategy, location_name: "ScoringStrategy"))
|
|
6732
|
+
UpdateEvaluationFormRequest.add_member(:auto_evaluation_configuration, Shapes::ShapeRef.new(shape: EvaluationFormAutoEvaluationConfiguration, location_name: "AutoEvaluationConfiguration"))
|
|
6346
6733
|
UpdateEvaluationFormRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
6347
6734
|
UpdateEvaluationFormRequest.struct_class = Types::UpdateEvaluationFormRequest
|
|
6348
6735
|
|
|
@@ -6950,6 +7337,22 @@ module Aws::Connect
|
|
|
6950
7337
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
6951
7338
|
end)
|
|
6952
7339
|
|
|
7340
|
+
api.add_operation(:associate_email_address_alias, Seahorse::Model::Operation.new.tap do |o|
|
|
7341
|
+
o.name = "AssociateEmailAddressAlias"
|
|
7342
|
+
o.http_method = "POST"
|
|
7343
|
+
o.http_request_uri = "/email-addresses/{InstanceId}/{EmailAddressId}/associate-alias"
|
|
7344
|
+
o.input = Shapes::ShapeRef.new(shape: AssociateEmailAddressAliasRequest)
|
|
7345
|
+
o.output = Shapes::ShapeRef.new(shape: AssociateEmailAddressAliasResponse)
|
|
7346
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
7347
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
7348
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
7349
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
7350
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
|
7351
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
7352
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceConflictException)
|
|
7353
|
+
o.errors << Shapes::ShapeRef.new(shape: IdempotencyException)
|
|
7354
|
+
end)
|
|
7355
|
+
|
|
6953
7356
|
api.add_operation(:associate_flow, Seahorse::Model::Operation.new.tap do |o|
|
|
6954
7357
|
o.name = "AssociateFlow"
|
|
6955
7358
|
o.http_method = "PUT"
|
|
@@ -8385,6 +8788,21 @@ module Aws::Connect
|
|
|
8385
8788
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
8386
8789
|
end)
|
|
8387
8790
|
|
|
8791
|
+
api.add_operation(:disassociate_email_address_alias, Seahorse::Model::Operation.new.tap do |o|
|
|
8792
|
+
o.name = "DisassociateEmailAddressAlias"
|
|
8793
|
+
o.http_method = "POST"
|
|
8794
|
+
o.http_request_uri = "/email-addresses/{InstanceId}/{EmailAddressId}/disassociate-alias"
|
|
8795
|
+
o.input = Shapes::ShapeRef.new(shape: DisassociateEmailAddressAliasRequest)
|
|
8796
|
+
o.output = Shapes::ShapeRef.new(shape: DisassociateEmailAddressAliasResponse)
|
|
8797
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
8798
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
8799
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
8800
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
8801
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
|
8802
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
8803
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceConflictException)
|
|
8804
|
+
end)
|
|
8805
|
+
|
|
8388
8806
|
api.add_operation(:disassociate_flow, Seahorse::Model::Operation.new.tap do |o|
|
|
8389
8807
|
o.name = "DisassociateFlow"
|
|
8390
8808
|
o.http_method = "DELETE"
|
|
@@ -9797,6 +10215,19 @@ module Aws::Connect
|
|
|
9797
10215
|
)
|
|
9798
10216
|
end)
|
|
9799
10217
|
|
|
10218
|
+
api.add_operation(:search_contact_evaluations, Seahorse::Model::Operation.new.tap do |o|
|
|
10219
|
+
o.name = "SearchContactEvaluations"
|
|
10220
|
+
o.http_method = "POST"
|
|
10221
|
+
o.http_request_uri = "/search-contact-evaluations"
|
|
10222
|
+
o.input = Shapes::ShapeRef.new(shape: SearchContactEvaluationsRequest)
|
|
10223
|
+
o.output = Shapes::ShapeRef.new(shape: SearchContactEvaluationsResponse)
|
|
10224
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
|
10225
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
10226
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
10227
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
10228
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
10229
|
+
end)
|
|
10230
|
+
|
|
9800
10231
|
api.add_operation(:search_contact_flow_modules, Seahorse::Model::Operation.new.tap do |o|
|
|
9801
10232
|
o.name = "SearchContactFlowModules"
|
|
9802
10233
|
o.http_method = "POST"
|
|
@@ -9868,6 +10299,19 @@ module Aws::Connect
|
|
|
9868
10299
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
9869
10300
|
end)
|
|
9870
10301
|
|
|
10302
|
+
api.add_operation(:search_evaluation_forms, Seahorse::Model::Operation.new.tap do |o|
|
|
10303
|
+
o.name = "SearchEvaluationForms"
|
|
10304
|
+
o.http_method = "POST"
|
|
10305
|
+
o.http_request_uri = "/search-evaluation-forms"
|
|
10306
|
+
o.input = Shapes::ShapeRef.new(shape: SearchEvaluationFormsRequest)
|
|
10307
|
+
o.output = Shapes::ShapeRef.new(shape: SearchEvaluationFormsResponse)
|
|
10308
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
|
10309
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
10310
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
10311
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
10312
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
10313
|
+
end)
|
|
10314
|
+
|
|
9871
10315
|
api.add_operation(:search_hours_of_operation_overrides, Seahorse::Model::Operation.new.tap do |o|
|
|
9872
10316
|
o.name = "SearchHoursOfOperationOverrides"
|
|
9873
10317
|
o.http_method = "POST"
|