aws-sdk-connect 1.226.0 → 1.227.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +3577 -150
- data/lib/aws-sdk-connect/client_api.rb +1956 -12
- data/lib/aws-sdk-connect/types.rb +9031 -4344
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +1220 -29
- data/sig/types.rbs +1211 -24
- metadata +1 -1
data/sig/client.rbs
CHANGED
|
@@ -287,6 +287,19 @@ module Aws
|
|
|
287
287
|
) -> _AssociateSecurityKeyResponseSuccess
|
|
288
288
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateSecurityKeyResponseSuccess
|
|
289
289
|
|
|
290
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#associate_security_profiles-instance_method
|
|
291
|
+
def associate_security_profiles: (
|
|
292
|
+
instance_id: ::String,
|
|
293
|
+
security_profiles: Array[
|
|
294
|
+
{
|
|
295
|
+
id: ::String?
|
|
296
|
+
},
|
|
297
|
+
],
|
|
298
|
+
entity_type: ("USER" | "AI_AGENT"),
|
|
299
|
+
entity_arn: ::String
|
|
300
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
301
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
302
|
+
|
|
290
303
|
interface _AssociateTrafficDistributionGroupUserResponseSuccess
|
|
291
304
|
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateTrafficDistributionGroupUserResponse]
|
|
292
305
|
end
|
|
@@ -312,6 +325,19 @@ module Aws
|
|
|
312
325
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
313
326
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
314
327
|
|
|
328
|
+
interface _AssociateWorkspaceResponseSuccess
|
|
329
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateWorkspaceResponse]
|
|
330
|
+
def successful_list: () -> ::Array[Types::SuccessfulBatchAssociationSummary]
|
|
331
|
+
def failed_list: () -> ::Array[Types::FailedBatchAssociationSummary]
|
|
332
|
+
end
|
|
333
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#associate_workspace-instance_method
|
|
334
|
+
def associate_workspace: (
|
|
335
|
+
instance_id: ::String,
|
|
336
|
+
workspace_id: ::String,
|
|
337
|
+
resource_arns: Array[::String]
|
|
338
|
+
) -> _AssociateWorkspaceResponseSuccess
|
|
339
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateWorkspaceResponseSuccess
|
|
340
|
+
|
|
315
341
|
interface _BatchAssociateAnalyticsDataSetResponseSuccess
|
|
316
342
|
include ::Seahorse::Client::_ResponseSuccess[Types::BatchAssociateAnalyticsDataSetResponse]
|
|
317
343
|
def created: () -> ::Array[Types::AnalyticsDataAssociationResult]
|
|
@@ -325,6 +351,90 @@ module Aws
|
|
|
325
351
|
) -> _BatchAssociateAnalyticsDataSetResponseSuccess
|
|
326
352
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchAssociateAnalyticsDataSetResponseSuccess
|
|
327
353
|
|
|
354
|
+
interface _BatchCreateDataTableValueResponseSuccess
|
|
355
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchCreateDataTableValueResponse]
|
|
356
|
+
def successful: () -> ::Array[Types::BatchCreateDataTableValueSuccessResult]
|
|
357
|
+
def failed: () -> ::Array[Types::BatchCreateDataTableValueFailureResult]
|
|
358
|
+
end
|
|
359
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#batch_create_data_table_value-instance_method
|
|
360
|
+
def batch_create_data_table_value: (
|
|
361
|
+
instance_id: ::String,
|
|
362
|
+
data_table_id: ::String,
|
|
363
|
+
values: Array[
|
|
364
|
+
{
|
|
365
|
+
primary_values: Array[
|
|
366
|
+
{
|
|
367
|
+
attribute_name: ::String,
|
|
368
|
+
value: ::String
|
|
369
|
+
},
|
|
370
|
+
]?,
|
|
371
|
+
attribute_name: ::String,
|
|
372
|
+
value: ::String,
|
|
373
|
+
lock_version: {
|
|
374
|
+
data_table: ::String?,
|
|
375
|
+
attribute: ::String?,
|
|
376
|
+
primary_values: ::String?,
|
|
377
|
+
value: ::String?
|
|
378
|
+
}?,
|
|
379
|
+
last_modified_time: ::Time?,
|
|
380
|
+
last_modified_region: ::String?
|
|
381
|
+
},
|
|
382
|
+
]
|
|
383
|
+
) -> _BatchCreateDataTableValueResponseSuccess
|
|
384
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchCreateDataTableValueResponseSuccess
|
|
385
|
+
|
|
386
|
+
interface _BatchDeleteDataTableValueResponseSuccess
|
|
387
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchDeleteDataTableValueResponse]
|
|
388
|
+
def successful: () -> ::Array[Types::BatchDeleteDataTableValueSuccessResult]
|
|
389
|
+
def failed: () -> ::Array[Types::BatchDeleteDataTableValueFailureResult]
|
|
390
|
+
end
|
|
391
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#batch_delete_data_table_value-instance_method
|
|
392
|
+
def batch_delete_data_table_value: (
|
|
393
|
+
instance_id: ::String,
|
|
394
|
+
data_table_id: ::String,
|
|
395
|
+
values: Array[
|
|
396
|
+
{
|
|
397
|
+
primary_values: Array[
|
|
398
|
+
{
|
|
399
|
+
attribute_name: ::String,
|
|
400
|
+
value: ::String
|
|
401
|
+
},
|
|
402
|
+
]?,
|
|
403
|
+
attribute_name: ::String,
|
|
404
|
+
lock_version: {
|
|
405
|
+
data_table: ::String?,
|
|
406
|
+
attribute: ::String?,
|
|
407
|
+
primary_values: ::String?,
|
|
408
|
+
value: ::String?
|
|
409
|
+
}
|
|
410
|
+
},
|
|
411
|
+
]
|
|
412
|
+
) -> _BatchDeleteDataTableValueResponseSuccess
|
|
413
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDeleteDataTableValueResponseSuccess
|
|
414
|
+
|
|
415
|
+
interface _BatchDescribeDataTableValueResponseSuccess
|
|
416
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchDescribeDataTableValueResponse]
|
|
417
|
+
def successful: () -> ::Array[Types::BatchDescribeDataTableValueSuccessResult]
|
|
418
|
+
def failed: () -> ::Array[Types::BatchDescribeDataTableValueFailureResult]
|
|
419
|
+
end
|
|
420
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#batch_describe_data_table_value-instance_method
|
|
421
|
+
def batch_describe_data_table_value: (
|
|
422
|
+
instance_id: ::String,
|
|
423
|
+
data_table_id: ::String,
|
|
424
|
+
values: Array[
|
|
425
|
+
{
|
|
426
|
+
primary_values: Array[
|
|
427
|
+
{
|
|
428
|
+
attribute_name: ::String,
|
|
429
|
+
value: ::String
|
|
430
|
+
},
|
|
431
|
+
]?,
|
|
432
|
+
attribute_name: ::String
|
|
433
|
+
},
|
|
434
|
+
]
|
|
435
|
+
) -> _BatchDescribeDataTableValueResponseSuccess
|
|
436
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDescribeDataTableValueResponseSuccess
|
|
437
|
+
|
|
328
438
|
interface _BatchDisassociateAnalyticsDataSetResponseSuccess
|
|
329
439
|
include ::Seahorse::Client::_ResponseSuccess[Types::BatchDisassociateAnalyticsDataSetResponse]
|
|
330
440
|
def deleted: () -> ::Array[::String]
|
|
@@ -406,6 +516,38 @@ module Aws
|
|
|
406
516
|
) -> _BatchPutContactResponseSuccess
|
|
407
517
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchPutContactResponseSuccess
|
|
408
518
|
|
|
519
|
+
interface _BatchUpdateDataTableValueResponseSuccess
|
|
520
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchUpdateDataTableValueResponse]
|
|
521
|
+
def successful: () -> ::Array[Types::BatchUpdateDataTableValueSuccessResult]
|
|
522
|
+
def failed: () -> ::Array[Types::BatchUpdateDataTableValueFailureResult]
|
|
523
|
+
end
|
|
524
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#batch_update_data_table_value-instance_method
|
|
525
|
+
def batch_update_data_table_value: (
|
|
526
|
+
instance_id: ::String,
|
|
527
|
+
data_table_id: ::String,
|
|
528
|
+
values: Array[
|
|
529
|
+
{
|
|
530
|
+
primary_values: Array[
|
|
531
|
+
{
|
|
532
|
+
attribute_name: ::String,
|
|
533
|
+
value: ::String
|
|
534
|
+
},
|
|
535
|
+
]?,
|
|
536
|
+
attribute_name: ::String,
|
|
537
|
+
value: ::String,
|
|
538
|
+
lock_version: {
|
|
539
|
+
data_table: ::String?,
|
|
540
|
+
attribute: ::String?,
|
|
541
|
+
primary_values: ::String?,
|
|
542
|
+
value: ::String?
|
|
543
|
+
}?,
|
|
544
|
+
last_modified_time: ::Time?,
|
|
545
|
+
last_modified_region: ::String?
|
|
546
|
+
},
|
|
547
|
+
]
|
|
548
|
+
) -> _BatchUpdateDataTableValueResponseSuccess
|
|
549
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchUpdateDataTableValueResponseSuccess
|
|
550
|
+
|
|
409
551
|
interface _ClaimPhoneNumberResponseSuccess
|
|
410
552
|
include ::Seahorse::Client::_ResponseSuccess[Types::ClaimPhoneNumberResponse]
|
|
411
553
|
def phone_number_id: () -> ::String
|
|
@@ -462,7 +604,7 @@ module Aws
|
|
|
462
604
|
?attributes: Hash[::String, ::String],
|
|
463
605
|
?references: Hash[::String, {
|
|
464
606
|
value: ::String?,
|
|
465
|
-
type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
|
|
607
|
+
type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT"),
|
|
466
608
|
status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
|
|
467
609
|
arn: ::String?,
|
|
468
610
|
status_reason: ::String?
|
|
@@ -573,6 +715,57 @@ module Aws
|
|
|
573
715
|
) -> _CreateContactFlowVersionResponseSuccess
|
|
574
716
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactFlowVersionResponseSuccess
|
|
575
717
|
|
|
718
|
+
interface _CreateDataTableResponseSuccess
|
|
719
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataTableResponse]
|
|
720
|
+
def id: () -> ::String
|
|
721
|
+
def arn: () -> ::String
|
|
722
|
+
def lock_version: () -> Types::DataTableLockVersion
|
|
723
|
+
end
|
|
724
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_data_table-instance_method
|
|
725
|
+
def create_data_table: (
|
|
726
|
+
instance_id: ::String,
|
|
727
|
+
name: ::String,
|
|
728
|
+
?description: ::String,
|
|
729
|
+
time_zone: ::String,
|
|
730
|
+
value_lock_level: ("NONE" | "DATA_TABLE" | "PRIMARY_VALUE" | "ATTRIBUTE" | "VALUE"),
|
|
731
|
+
status: ("PUBLISHED"),
|
|
732
|
+
?tags: Hash[::String, ::String]
|
|
733
|
+
) -> _CreateDataTableResponseSuccess
|
|
734
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataTableResponseSuccess
|
|
735
|
+
|
|
736
|
+
interface _CreateDataTableAttributeResponseSuccess
|
|
737
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataTableAttributeResponse]
|
|
738
|
+
def name: () -> ::String
|
|
739
|
+
def attribute_id: () -> ::String
|
|
740
|
+
def lock_version: () -> Types::DataTableLockVersion
|
|
741
|
+
end
|
|
742
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_data_table_attribute-instance_method
|
|
743
|
+
def create_data_table_attribute: (
|
|
744
|
+
instance_id: ::String,
|
|
745
|
+
data_table_id: ::String,
|
|
746
|
+
name: ::String,
|
|
747
|
+
value_type: ("TEXT" | "NUMBER" | "BOOLEAN" | "TEXT_LIST" | "NUMBER_LIST"),
|
|
748
|
+
?description: ::String,
|
|
749
|
+
?primary: bool,
|
|
750
|
+
?validation: {
|
|
751
|
+
min_length: ::Integer?,
|
|
752
|
+
max_length: ::Integer?,
|
|
753
|
+
min_values: ::Integer?,
|
|
754
|
+
max_values: ::Integer?,
|
|
755
|
+
ignore_case: bool?,
|
|
756
|
+
minimum: ::Float?,
|
|
757
|
+
maximum: ::Float?,
|
|
758
|
+
exclusive_minimum: ::Float?,
|
|
759
|
+
exclusive_maximum: ::Float?,
|
|
760
|
+
multiple_of: ::Float?,
|
|
761
|
+
enum: {
|
|
762
|
+
strict: bool?,
|
|
763
|
+
values: Array[::String]?
|
|
764
|
+
}?
|
|
765
|
+
}
|
|
766
|
+
) -> _CreateDataTableAttributeResponseSuccess
|
|
767
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataTableAttributeResponseSuccess
|
|
768
|
+
|
|
576
769
|
interface _CreateEmailAddressResponseSuccess
|
|
577
770
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateEmailAddressResponse]
|
|
578
771
|
def email_address_id: () -> ::String
|
|
@@ -613,7 +806,7 @@ module Aws
|
|
|
613
806
|
instructions: ::String?,
|
|
614
807
|
ref_id: ::String,
|
|
615
808
|
not_applicable_enabled: bool?,
|
|
616
|
-
question_type: ("TEXT" | "SINGLESELECT" | "NUMERIC"),
|
|
809
|
+
question_type: ("TEXT" | "SINGLESELECT" | "NUMERIC" | "MULTISELECT" | "DATETIME"),
|
|
617
810
|
question_type_properties: {
|
|
618
811
|
numeric: {
|
|
619
812
|
min_value: ::Integer,
|
|
@@ -631,7 +824,7 @@ module Aws
|
|
|
631
824
|
]?,
|
|
632
825
|
automation: {
|
|
633
826
|
property_value: {
|
|
634
|
-
label: ("OVERALL_CUSTOMER_SENTIMENT_SCORE" | "OVERALL_AGENT_SENTIMENT_SCORE" | "NON_TALK_TIME" | "NON_TALK_TIME_PERCENTAGE" | "NUMBER_OF_INTERRUPTIONS" | "CONTACT_DURATION" | "AGENT_INTERACTION_DURATION" | "CUSTOMER_HOLD_TIME" | "LONGEST_HOLD_DURATION" | "NUMBER_OF_HOLDS" | "AGENT_INTERACTION_AND_HOLD_DURATION")
|
|
827
|
+
label: ("OVERALL_CUSTOMER_SENTIMENT_SCORE" | "OVERALL_AGENT_SENTIMENT_SCORE" | "CUSTOMER_SENTIMENT_SCORE_WITHOUT_AGENT" | "CUSTOMER_SENTIMENT_SCORE_WITH_AGENT" | "NON_TALK_TIME" | "NON_TALK_TIME_PERCENTAGE" | "NUMBER_OF_INTERRUPTIONS" | "CONTACT_DURATION" | "AGENT_INTERACTION_DURATION" | "CUSTOMER_HOLD_TIME" | "LONGEST_HOLD_DURATION" | "NUMBER_OF_HOLDS" | "AGENT_INTERACTION_AND_HOLD_DURATION")
|
|
635
828
|
}?,
|
|
636
829
|
answer_source: {
|
|
637
830
|
source_type: ("CONTACT_LENS_DATA" | "GEN_AI")
|
|
@@ -673,6 +866,30 @@ module Aws
|
|
|
673
866
|
source_type: ("CONTACT_LENS_DATA" | "GEN_AI")
|
|
674
867
|
}?
|
|
675
868
|
}?
|
|
869
|
+
}?,
|
|
870
|
+
multi_select: {
|
|
871
|
+
options: Array[
|
|
872
|
+
{
|
|
873
|
+
ref_id: ::String,
|
|
874
|
+
text: ::String
|
|
875
|
+
},
|
|
876
|
+
],
|
|
877
|
+
display_as: ("DROPDOWN" | "CHECKBOX")?,
|
|
878
|
+
automation: {
|
|
879
|
+
options: Array[
|
|
880
|
+
{
|
|
881
|
+
rule_category: {
|
|
882
|
+
category: ::String,
|
|
883
|
+
condition: ("PRESENT" | "NOT_PRESENT"),
|
|
884
|
+
option_ref_ids: Array[::String]
|
|
885
|
+
}?
|
|
886
|
+
},
|
|
887
|
+
]?,
|
|
888
|
+
default_option_ref_ids: Array[::String]?,
|
|
889
|
+
answer_source: {
|
|
890
|
+
source_type: ("CONTACT_LENS_DATA" | "GEN_AI")
|
|
891
|
+
}?
|
|
892
|
+
}?
|
|
676
893
|
}?
|
|
677
894
|
}?,
|
|
678
895
|
enablement: {
|
|
@@ -690,7 +907,7 @@ module Aws
|
|
|
690
907
|
ref_id: ::String?
|
|
691
908
|
},
|
|
692
909
|
],
|
|
693
|
-
comparator: ("IN" | "NOT_IN")
|
|
910
|
+
comparator: ("IN" | "NOT_IN" | "ALL_IN" | "EXACT")
|
|
694
911
|
}?,
|
|
695
912
|
condition: untyped?
|
|
696
913
|
},
|
|
@@ -712,7 +929,14 @@ module Aws
|
|
|
712
929
|
enabled: bool
|
|
713
930
|
},
|
|
714
931
|
?client_token: ::String,
|
|
715
|
-
?
|
|
932
|
+
?as_draft: bool,
|
|
933
|
+
?tags: Hash[::String, ::String],
|
|
934
|
+
?target_configuration: {
|
|
935
|
+
contact_interaction_type: ("AGENT" | "AUTOMATED")
|
|
936
|
+
},
|
|
937
|
+
?language_configuration: {
|
|
938
|
+
form_language: ("de-DE" | "en-US" | "es-ES" | "fr-FR" | "it-IT" | "pt-BR")?
|
|
939
|
+
}
|
|
716
940
|
) -> _CreateEvaluationFormResponseSuccess
|
|
717
941
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEvaluationFormResponseSuccess
|
|
718
942
|
|
|
@@ -797,7 +1021,7 @@ module Aws
|
|
|
797
1021
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_integration_association-instance_method
|
|
798
1022
|
def create_integration_association: (
|
|
799
1023
|
instance_id: ::String,
|
|
800
|
-
integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR" | "COGNITO_USER_POOL"),
|
|
1024
|
+
integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR" | "COGNITO_USER_POOL" | "MESSAGE_PROCESSOR"),
|
|
801
1025
|
integration_arn: ::String,
|
|
802
1026
|
?source_application_url: ::String,
|
|
803
1027
|
?source_application_name: ::String,
|
|
@@ -925,7 +1149,7 @@ module Aws
|
|
|
925
1149
|
name: ::String,
|
|
926
1150
|
?description: ::String,
|
|
927
1151
|
quick_connect_config: {
|
|
928
|
-
quick_connect_type: ("USER" | "QUEUE" | "PHONE_NUMBER"),
|
|
1152
|
+
quick_connect_type: ("USER" | "QUEUE" | "PHONE_NUMBER" | "FLOW"),
|
|
929
1153
|
user_config: {
|
|
930
1154
|
user_id: ::String,
|
|
931
1155
|
contact_flow_id: ::String
|
|
@@ -936,6 +1160,9 @@ module Aws
|
|
|
936
1160
|
}?,
|
|
937
1161
|
phone_config: {
|
|
938
1162
|
phone_number: ::String
|
|
1163
|
+
}?,
|
|
1164
|
+
flow_config: {
|
|
1165
|
+
contact_flow_id: ::String
|
|
939
1166
|
}?
|
|
940
1167
|
},
|
|
941
1168
|
?tags: Hash[::String, ::String]
|
|
@@ -1008,7 +1235,7 @@ module Aws
|
|
|
1008
1235
|
contact_flow_id: ::String,
|
|
1009
1236
|
references: Hash[::String, {
|
|
1010
1237
|
value: ::String?,
|
|
1011
|
-
type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
|
|
1238
|
+
type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT"),
|
|
1012
1239
|
status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
|
|
1013
1240
|
arn: ::String?,
|
|
1014
1241
|
status_reason: ::String?
|
|
@@ -1109,11 +1336,31 @@ module Aws
|
|
|
1109
1336
|
?applications: Array[
|
|
1110
1337
|
{
|
|
1111
1338
|
namespace: ::String?,
|
|
1112
|
-
application_permissions: Array[::String]
|
|
1339
|
+
application_permissions: Array[::String]?,
|
|
1340
|
+
type: ("MCP" | "THIRD_PARTY_APPLICATION")?
|
|
1113
1341
|
},
|
|
1114
1342
|
],
|
|
1115
1343
|
?hierarchy_restricted_resources: Array[::String],
|
|
1116
|
-
?allowed_access_control_hierarchy_group_id: ::String
|
|
1344
|
+
?allowed_access_control_hierarchy_group_id: ::String,
|
|
1345
|
+
?allowed_flow_modules: Array[
|
|
1346
|
+
{
|
|
1347
|
+
type: ("MCP")?,
|
|
1348
|
+
flow_module_id: ::String?
|
|
1349
|
+
},
|
|
1350
|
+
],
|
|
1351
|
+
?granular_access_control_configuration: {
|
|
1352
|
+
data_table_access_control_configuration: {
|
|
1353
|
+
primary_attribute_access_control_configuration: {
|
|
1354
|
+
primary_attribute_values: Array[
|
|
1355
|
+
{
|
|
1356
|
+
access_type: ("ALLOW")?,
|
|
1357
|
+
attribute_name: ::String?,
|
|
1358
|
+
values: Array[::String]?
|
|
1359
|
+
},
|
|
1360
|
+
]?
|
|
1361
|
+
}?
|
|
1362
|
+
}?
|
|
1363
|
+
}
|
|
1117
1364
|
) -> _CreateSecurityProfileResponseSuccess
|
|
1118
1365
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSecurityProfileResponseSuccess
|
|
1119
1366
|
|
|
@@ -1301,6 +1548,117 @@ module Aws
|
|
|
1301
1548
|
) -> _CreateVocabularyResponseSuccess
|
|
1302
1549
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVocabularyResponseSuccess
|
|
1303
1550
|
|
|
1551
|
+
interface _CreateWorkspaceResponseSuccess
|
|
1552
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateWorkspaceResponse]
|
|
1553
|
+
def workspace_id: () -> ::String
|
|
1554
|
+
def workspace_arn: () -> ::String
|
|
1555
|
+
end
|
|
1556
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_workspace-instance_method
|
|
1557
|
+
def create_workspace: (
|
|
1558
|
+
instance_id: ::String,
|
|
1559
|
+
name: ::String,
|
|
1560
|
+
?description: ::String,
|
|
1561
|
+
?theme: {
|
|
1562
|
+
light: {
|
|
1563
|
+
palette: {
|
|
1564
|
+
header: {
|
|
1565
|
+
background: ::String?,
|
|
1566
|
+
text: ::String?,
|
|
1567
|
+
text_hover: ::String?,
|
|
1568
|
+
invert_actions_colors: bool?
|
|
1569
|
+
}?,
|
|
1570
|
+
navigation: {
|
|
1571
|
+
background: ::String?,
|
|
1572
|
+
text_background_hover: ::String?,
|
|
1573
|
+
text_background_active: ::String?,
|
|
1574
|
+
text: ::String?,
|
|
1575
|
+
text_hover: ::String?,
|
|
1576
|
+
text_active: ::String?,
|
|
1577
|
+
invert_actions_colors: bool?
|
|
1578
|
+
}?,
|
|
1579
|
+
canvas: {
|
|
1580
|
+
container_background: ::String?,
|
|
1581
|
+
page_background: ::String?,
|
|
1582
|
+
active_background: ::String?
|
|
1583
|
+
}?,
|
|
1584
|
+
primary: {
|
|
1585
|
+
default: ::String?,
|
|
1586
|
+
active: ::String?,
|
|
1587
|
+
contrast_text: ::String?
|
|
1588
|
+
}?
|
|
1589
|
+
}?,
|
|
1590
|
+
images: {
|
|
1591
|
+
logo: {
|
|
1592
|
+
default: ::String?,
|
|
1593
|
+
favicon: ::String?
|
|
1594
|
+
}?
|
|
1595
|
+
}?,
|
|
1596
|
+
typography: {
|
|
1597
|
+
font_family: {
|
|
1598
|
+
default: ("Arial" | "Courier New" | "Georgia" | "Times New Roman" | "Trebuchet" | "Verdana")?
|
|
1599
|
+
}?
|
|
1600
|
+
}?
|
|
1601
|
+
}?,
|
|
1602
|
+
dark: {
|
|
1603
|
+
palette: {
|
|
1604
|
+
header: {
|
|
1605
|
+
background: ::String?,
|
|
1606
|
+
text: ::String?,
|
|
1607
|
+
text_hover: ::String?,
|
|
1608
|
+
invert_actions_colors: bool?
|
|
1609
|
+
}?,
|
|
1610
|
+
navigation: {
|
|
1611
|
+
background: ::String?,
|
|
1612
|
+
text_background_hover: ::String?,
|
|
1613
|
+
text_background_active: ::String?,
|
|
1614
|
+
text: ::String?,
|
|
1615
|
+
text_hover: ::String?,
|
|
1616
|
+
text_active: ::String?,
|
|
1617
|
+
invert_actions_colors: bool?
|
|
1618
|
+
}?,
|
|
1619
|
+
canvas: {
|
|
1620
|
+
container_background: ::String?,
|
|
1621
|
+
page_background: ::String?,
|
|
1622
|
+
active_background: ::String?
|
|
1623
|
+
}?,
|
|
1624
|
+
primary: {
|
|
1625
|
+
default: ::String?,
|
|
1626
|
+
active: ::String?,
|
|
1627
|
+
contrast_text: ::String?
|
|
1628
|
+
}?
|
|
1629
|
+
}?,
|
|
1630
|
+
images: {
|
|
1631
|
+
logo: {
|
|
1632
|
+
default: ::String?,
|
|
1633
|
+
favicon: ::String?
|
|
1634
|
+
}?
|
|
1635
|
+
}?,
|
|
1636
|
+
typography: {
|
|
1637
|
+
font_family: {
|
|
1638
|
+
default: ("Arial" | "Courier New" | "Georgia" | "Times New Roman" | "Trebuchet" | "Verdana")?
|
|
1639
|
+
}?
|
|
1640
|
+
}?
|
|
1641
|
+
}?
|
|
1642
|
+
},
|
|
1643
|
+
?title: ::String,
|
|
1644
|
+
?tags: Hash[::String, ::String]
|
|
1645
|
+
) -> _CreateWorkspaceResponseSuccess
|
|
1646
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkspaceResponseSuccess
|
|
1647
|
+
|
|
1648
|
+
interface _CreateWorkspacePageResponseSuccess
|
|
1649
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateWorkspacePageResponse]
|
|
1650
|
+
end
|
|
1651
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_workspace_page-instance_method
|
|
1652
|
+
def create_workspace_page: (
|
|
1653
|
+
instance_id: ::String,
|
|
1654
|
+
workspace_id: ::String,
|
|
1655
|
+
resource_arn: ::String,
|
|
1656
|
+
page: ::String,
|
|
1657
|
+
?slug: ::String,
|
|
1658
|
+
?input_data: ::String
|
|
1659
|
+
) -> _CreateWorkspacePageResponseSuccess
|
|
1660
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkspacePageResponseSuccess
|
|
1661
|
+
|
|
1304
1662
|
interface _DeactivateEvaluationFormResponseSuccess
|
|
1305
1663
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeactivateEvaluationFormResponse]
|
|
1306
1664
|
def evaluation_form_id: () -> ::String
|
|
@@ -1386,6 +1744,28 @@ module Aws
|
|
|
1386
1744
|
) -> _DeleteContactFlowVersionResponseSuccess
|
|
1387
1745
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteContactFlowVersionResponseSuccess
|
|
1388
1746
|
|
|
1747
|
+
interface _DeleteDataTableResponseSuccess
|
|
1748
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataTableResponse]
|
|
1749
|
+
end
|
|
1750
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_data_table-instance_method
|
|
1751
|
+
def delete_data_table: (
|
|
1752
|
+
instance_id: ::String,
|
|
1753
|
+
data_table_id: ::String
|
|
1754
|
+
) -> _DeleteDataTableResponseSuccess
|
|
1755
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDataTableResponseSuccess
|
|
1756
|
+
|
|
1757
|
+
interface _DeleteDataTableAttributeResponseSuccess
|
|
1758
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataTableAttributeResponse]
|
|
1759
|
+
def lock_version: () -> Types::DataTableLockVersion
|
|
1760
|
+
end
|
|
1761
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_data_table_attribute-instance_method
|
|
1762
|
+
def delete_data_table_attribute: (
|
|
1763
|
+
instance_id: ::String,
|
|
1764
|
+
data_table_id: ::String,
|
|
1765
|
+
attribute_name: ::String
|
|
1766
|
+
) -> _DeleteDataTableAttributeResponseSuccess
|
|
1767
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDataTableAttributeResponseSuccess
|
|
1768
|
+
|
|
1389
1769
|
interface _DeleteEmailAddressResponseSuccess
|
|
1390
1770
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEmailAddressResponse]
|
|
1391
1771
|
end
|
|
@@ -1568,6 +1948,38 @@ module Aws
|
|
|
1568
1948
|
) -> _DeleteVocabularyResponseSuccess
|
|
1569
1949
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVocabularyResponseSuccess
|
|
1570
1950
|
|
|
1951
|
+
interface _DeleteWorkspaceResponseSuccess
|
|
1952
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteWorkspaceResponse]
|
|
1953
|
+
end
|
|
1954
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_workspace-instance_method
|
|
1955
|
+
def delete_workspace: (
|
|
1956
|
+
instance_id: ::String,
|
|
1957
|
+
workspace_id: ::String
|
|
1958
|
+
) -> _DeleteWorkspaceResponseSuccess
|
|
1959
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteWorkspaceResponseSuccess
|
|
1960
|
+
|
|
1961
|
+
interface _DeleteWorkspaceMediaResponseSuccess
|
|
1962
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteWorkspaceMediaResponse]
|
|
1963
|
+
end
|
|
1964
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_workspace_media-instance_method
|
|
1965
|
+
def delete_workspace_media: (
|
|
1966
|
+
instance_id: ::String,
|
|
1967
|
+
workspace_id: ::String,
|
|
1968
|
+
media_type: ("IMAGE_LOGO_LIGHT_FAVICON" | "IMAGE_LOGO_DARK_FAVICON" | "IMAGE_LOGO_LIGHT_HORIZONTAL" | "IMAGE_LOGO_DARK_HORIZONTAL")
|
|
1969
|
+
) -> _DeleteWorkspaceMediaResponseSuccess
|
|
1970
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteWorkspaceMediaResponseSuccess
|
|
1971
|
+
|
|
1972
|
+
interface _DeleteWorkspacePageResponseSuccess
|
|
1973
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteWorkspacePageResponse]
|
|
1974
|
+
end
|
|
1975
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_workspace_page-instance_method
|
|
1976
|
+
def delete_workspace_page: (
|
|
1977
|
+
instance_id: ::String,
|
|
1978
|
+
workspace_id: ::String,
|
|
1979
|
+
page: ::String
|
|
1980
|
+
) -> _DeleteWorkspacePageResponseSuccess
|
|
1981
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteWorkspacePageResponseSuccess
|
|
1982
|
+
|
|
1571
1983
|
interface _DescribeAgentStatusResponseSuccess
|
|
1572
1984
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAgentStatusResponse]
|
|
1573
1985
|
def agent_status: () -> Types::AgentStatus
|
|
@@ -1647,6 +2059,29 @@ module Aws
|
|
|
1647
2059
|
) -> _DescribeContactFlowModuleAliasResponseSuccess
|
|
1648
2060
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeContactFlowModuleAliasResponseSuccess
|
|
1649
2061
|
|
|
2062
|
+
interface _DescribeDataTableResponseSuccess
|
|
2063
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDataTableResponse]
|
|
2064
|
+
def data_table: () -> Types::DataTable
|
|
2065
|
+
end
|
|
2066
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_data_table-instance_method
|
|
2067
|
+
def describe_data_table: (
|
|
2068
|
+
instance_id: ::String,
|
|
2069
|
+
data_table_id: ::String
|
|
2070
|
+
) -> _DescribeDataTableResponseSuccess
|
|
2071
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDataTableResponseSuccess
|
|
2072
|
+
|
|
2073
|
+
interface _DescribeDataTableAttributeResponseSuccess
|
|
2074
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDataTableAttributeResponse]
|
|
2075
|
+
def attribute: () -> Types::DataTableAttribute
|
|
2076
|
+
end
|
|
2077
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_data_table_attribute-instance_method
|
|
2078
|
+
def describe_data_table_attribute: (
|
|
2079
|
+
instance_id: ::String,
|
|
2080
|
+
data_table_id: ::String,
|
|
2081
|
+
attribute_name: ::String
|
|
2082
|
+
) -> _DescribeDataTableAttributeResponseSuccess
|
|
2083
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDataTableAttributeResponseSuccess
|
|
2084
|
+
|
|
1650
2085
|
interface _DescribeEmailAddressResponseSuccess
|
|
1651
2086
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEmailAddressResponse]
|
|
1652
2087
|
def email_address_id: () -> ::String
|
|
@@ -1719,7 +2154,7 @@ module Aws
|
|
|
1719
2154
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_instance_attribute-instance_method
|
|
1720
2155
|
def describe_instance_attribute: (
|
|
1721
2156
|
instance_id: ::String,
|
|
1722
|
-
attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING" | "MULTI_PARTY_CHAT_CONFERENCE")
|
|
2157
|
+
attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING" | "MULTI_PARTY_CHAT_CONFERENCE" | "MESSAGE_STREAMING")
|
|
1723
2158
|
) -> _DescribeInstanceAttributeResponseSuccess
|
|
1724
2159
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInstanceAttributeResponseSuccess
|
|
1725
2160
|
|
|
@@ -1886,6 +2321,17 @@ module Aws
|
|
|
1886
2321
|
) -> _DescribeVocabularyResponseSuccess
|
|
1887
2322
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVocabularyResponseSuccess
|
|
1888
2323
|
|
|
2324
|
+
interface _DescribeWorkspaceResponseSuccess
|
|
2325
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeWorkspaceResponse]
|
|
2326
|
+
def workspace: () -> Types::Workspace
|
|
2327
|
+
end
|
|
2328
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_workspace-instance_method
|
|
2329
|
+
def describe_workspace: (
|
|
2330
|
+
instance_id: ::String,
|
|
2331
|
+
workspace_id: ::String
|
|
2332
|
+
) -> _DescribeWorkspaceResponseSuccess
|
|
2333
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeWorkspaceResponseSuccess
|
|
2334
|
+
|
|
1889
2335
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#disassociate_analytics_data_set-instance_method
|
|
1890
2336
|
def disassociate_analytics_data_set: (
|
|
1891
2337
|
instance_id: ::String,
|
|
@@ -2009,6 +2455,19 @@ module Aws
|
|
|
2009
2455
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
2010
2456
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
2011
2457
|
|
|
2458
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#disassociate_security_profiles-instance_method
|
|
2459
|
+
def disassociate_security_profiles: (
|
|
2460
|
+
instance_id: ::String,
|
|
2461
|
+
security_profiles: Array[
|
|
2462
|
+
{
|
|
2463
|
+
id: ::String?
|
|
2464
|
+
},
|
|
2465
|
+
],
|
|
2466
|
+
entity_type: ("USER" | "AI_AGENT"),
|
|
2467
|
+
entity_arn: ::String
|
|
2468
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
2469
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
2470
|
+
|
|
2012
2471
|
interface _DisassociateTrafficDistributionGroupUserResponseSuccess
|
|
2013
2472
|
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateTrafficDistributionGroupUserResponse]
|
|
2014
2473
|
end
|
|
@@ -2033,6 +2492,19 @@ module Aws
|
|
|
2033
2492
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
2034
2493
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
2035
2494
|
|
|
2495
|
+
interface _DisassociateWorkspaceResponseSuccess
|
|
2496
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateWorkspaceResponse]
|
|
2497
|
+
def successful_list: () -> ::Array[Types::SuccessfulBatchAssociationSummary]
|
|
2498
|
+
def failed_list: () -> ::Array[Types::FailedBatchAssociationSummary]
|
|
2499
|
+
end
|
|
2500
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#disassociate_workspace-instance_method
|
|
2501
|
+
def disassociate_workspace: (
|
|
2502
|
+
instance_id: ::String,
|
|
2503
|
+
workspace_id: ::String,
|
|
2504
|
+
resource_arns: Array[::String]
|
|
2505
|
+
) -> _DisassociateWorkspaceResponseSuccess
|
|
2506
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateWorkspaceResponseSuccess
|
|
2507
|
+
|
|
2036
2508
|
interface _DismissUserContactResponseSuccess
|
|
2037
2509
|
include ::Seahorse::Client::_ResponseSuccess[Types::DismissUserContactResponse]
|
|
2038
2510
|
end
|
|
@@ -2044,6 +2516,32 @@ module Aws
|
|
|
2044
2516
|
) -> _DismissUserContactResponseSuccess
|
|
2045
2517
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DismissUserContactResponseSuccess
|
|
2046
2518
|
|
|
2519
|
+
interface _EvaluateDataTableValuesResponseSuccess
|
|
2520
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::EvaluateDataTableValuesResponse]
|
|
2521
|
+
def values: () -> ::Array[Types::DataTableEvaluatedValue]
|
|
2522
|
+
def next_token: () -> ::String
|
|
2523
|
+
end
|
|
2524
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#evaluate_data_table_values-instance_method
|
|
2525
|
+
def evaluate_data_table_values: (
|
|
2526
|
+
instance_id: ::String,
|
|
2527
|
+
data_table_id: ::String,
|
|
2528
|
+
values: Array[
|
|
2529
|
+
{
|
|
2530
|
+
primary_values: Array[
|
|
2531
|
+
{
|
|
2532
|
+
attribute_name: ::String,
|
|
2533
|
+
value: ::String
|
|
2534
|
+
},
|
|
2535
|
+
]?,
|
|
2536
|
+
attribute_names: Array[::String]
|
|
2537
|
+
},
|
|
2538
|
+
],
|
|
2539
|
+
?time_zone: ::String,
|
|
2540
|
+
?next_token: ::String,
|
|
2541
|
+
?max_results: ::Integer
|
|
2542
|
+
) -> _EvaluateDataTableValuesResponseSuccess
|
|
2543
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EvaluateDataTableValuesResponseSuccess
|
|
2544
|
+
|
|
2047
2545
|
interface _GetAttachedFileResponseSuccess
|
|
2048
2546
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetAttachedFileResponse]
|
|
2049
2547
|
def file_arn: () -> ::String
|
|
@@ -2246,7 +2744,10 @@ module Aws
|
|
|
2246
2744
|
filters: Array[
|
|
2247
2745
|
{
|
|
2248
2746
|
filter_key: ::String?,
|
|
2249
|
-
filter_values: Array[::String]
|
|
2747
|
+
filter_values: Array[::String]?,
|
|
2748
|
+
string_condition: {
|
|
2749
|
+
comparison: ("NOT_EXISTS")?
|
|
2750
|
+
}?
|
|
2250
2751
|
},
|
|
2251
2752
|
],
|
|
2252
2753
|
?groupings: Array[::String],
|
|
@@ -2259,6 +2760,7 @@ module Aws
|
|
|
2259
2760
|
threshold_value: ::Float?
|
|
2260
2761
|
},
|
|
2261
2762
|
]?,
|
|
2763
|
+
metric_id: ::String?,
|
|
2262
2764
|
metric_filters: Array[
|
|
2263
2765
|
{
|
|
2264
2766
|
metric_filter_key: ::String?,
|
|
@@ -2340,6 +2842,18 @@ module Aws
|
|
|
2340
2842
|
) -> _ImportPhoneNumberResponseSuccess
|
|
2341
2843
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportPhoneNumberResponseSuccess
|
|
2342
2844
|
|
|
2845
|
+
interface _ImportWorkspaceMediaResponseSuccess
|
|
2846
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ImportWorkspaceMediaResponse]
|
|
2847
|
+
end
|
|
2848
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#import_workspace_media-instance_method
|
|
2849
|
+
def import_workspace_media: (
|
|
2850
|
+
instance_id: ::String,
|
|
2851
|
+
workspace_id: ::String,
|
|
2852
|
+
media_type: ("IMAGE_LOGO_LIGHT_FAVICON" | "IMAGE_LOGO_DARK_FAVICON" | "IMAGE_LOGO_LIGHT_HORIZONTAL" | "IMAGE_LOGO_DARK_HORIZONTAL"),
|
|
2853
|
+
media_source: ::String
|
|
2854
|
+
) -> _ImportWorkspaceMediaResponseSuccess
|
|
2855
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportWorkspaceMediaResponseSuccess
|
|
2856
|
+
|
|
2343
2857
|
interface _ListAgentStatusesResponseSuccess
|
|
2344
2858
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListAgentStatusResponse]
|
|
2345
2859
|
def next_token: () -> ::String
|
|
@@ -2527,11 +3041,81 @@ module Aws
|
|
|
2527
3041
|
def list_contact_references: (
|
|
2528
3042
|
instance_id: ::String,
|
|
2529
3043
|
contact_id: ::String,
|
|
2530
|
-
reference_types: Array[("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE")],
|
|
3044
|
+
reference_types: Array[("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT")],
|
|
2531
3045
|
?next_token: ::String
|
|
2532
3046
|
) -> _ListContactReferencesResponseSuccess
|
|
2533
3047
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContactReferencesResponseSuccess
|
|
2534
3048
|
|
|
3049
|
+
interface _ListDataTableAttributesResponseSuccess
|
|
3050
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDataTableAttributesResponse]
|
|
3051
|
+
def next_token: () -> ::String
|
|
3052
|
+
def attributes: () -> ::Array[Types::DataTableAttribute]
|
|
3053
|
+
end
|
|
3054
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_data_table_attributes-instance_method
|
|
3055
|
+
def list_data_table_attributes: (
|
|
3056
|
+
instance_id: ::String,
|
|
3057
|
+
data_table_id: ::String,
|
|
3058
|
+
?attribute_ids: Array[::String],
|
|
3059
|
+
?next_token: ::String,
|
|
3060
|
+
?max_results: ::Integer
|
|
3061
|
+
) -> _ListDataTableAttributesResponseSuccess
|
|
3062
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataTableAttributesResponseSuccess
|
|
3063
|
+
|
|
3064
|
+
interface _ListDataTablePrimaryValuesResponseSuccess
|
|
3065
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDataTablePrimaryValuesResponse]
|
|
3066
|
+
def next_token: () -> ::String
|
|
3067
|
+
def primary_values_list: () -> ::Array[Types::RecordPrimaryValue]
|
|
3068
|
+
end
|
|
3069
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_data_table_primary_values-instance_method
|
|
3070
|
+
def list_data_table_primary_values: (
|
|
3071
|
+
instance_id: ::String,
|
|
3072
|
+
data_table_id: ::String,
|
|
3073
|
+
?record_ids: Array[::String],
|
|
3074
|
+
?primary_attribute_values: Array[
|
|
3075
|
+
{
|
|
3076
|
+
attribute_name: ::String,
|
|
3077
|
+
values: Array[::String]
|
|
3078
|
+
},
|
|
3079
|
+
],
|
|
3080
|
+
?next_token: ::String,
|
|
3081
|
+
?max_results: ::Integer
|
|
3082
|
+
) -> _ListDataTablePrimaryValuesResponseSuccess
|
|
3083
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataTablePrimaryValuesResponseSuccess
|
|
3084
|
+
|
|
3085
|
+
interface _ListDataTableValuesResponseSuccess
|
|
3086
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDataTableValuesResponse]
|
|
3087
|
+
def next_token: () -> ::String
|
|
3088
|
+
def values: () -> ::Array[Types::DataTableValueSummary]
|
|
3089
|
+
end
|
|
3090
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_data_table_values-instance_method
|
|
3091
|
+
def list_data_table_values: (
|
|
3092
|
+
instance_id: ::String,
|
|
3093
|
+
data_table_id: ::String,
|
|
3094
|
+
?record_ids: Array[::String],
|
|
3095
|
+
?primary_attribute_values: Array[
|
|
3096
|
+
{
|
|
3097
|
+
attribute_name: ::String,
|
|
3098
|
+
values: Array[::String]
|
|
3099
|
+
},
|
|
3100
|
+
],
|
|
3101
|
+
?next_token: ::String,
|
|
3102
|
+
?max_results: ::Integer
|
|
3103
|
+
) -> _ListDataTableValuesResponseSuccess
|
|
3104
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataTableValuesResponseSuccess
|
|
3105
|
+
|
|
3106
|
+
interface _ListDataTablesResponseSuccess
|
|
3107
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDataTablesResponse]
|
|
3108
|
+
def next_token: () -> ::String
|
|
3109
|
+
def data_table_summary_list: () -> ::Array[Types::DataTableSummary]
|
|
3110
|
+
end
|
|
3111
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_data_tables-instance_method
|
|
3112
|
+
def list_data_tables: (
|
|
3113
|
+
instance_id: ::String,
|
|
3114
|
+
?next_token: ::String,
|
|
3115
|
+
?max_results: ::Integer
|
|
3116
|
+
) -> _ListDataTablesResponseSuccess
|
|
3117
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataTablesResponseSuccess
|
|
3118
|
+
|
|
2535
3119
|
interface _ListDefaultVocabulariesResponseSuccess
|
|
2536
3120
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListDefaultVocabulariesResponse]
|
|
2537
3121
|
def default_vocabulary_list: () -> ::Array[Types::DefaultVocabulary]
|
|
@@ -2546,6 +3130,21 @@ module Aws
|
|
|
2546
3130
|
) -> _ListDefaultVocabulariesResponseSuccess
|
|
2547
3131
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDefaultVocabulariesResponseSuccess
|
|
2548
3132
|
|
|
3133
|
+
interface _ListEntitySecurityProfilesResponseSuccess
|
|
3134
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListEntitySecurityProfilesResponse]
|
|
3135
|
+
def security_profiles: () -> ::Array[Types::SecurityProfileItem]
|
|
3136
|
+
def next_token: () -> ::String
|
|
3137
|
+
end
|
|
3138
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_entity_security_profiles-instance_method
|
|
3139
|
+
def list_entity_security_profiles: (
|
|
3140
|
+
instance_id: ::String,
|
|
3141
|
+
entity_type: ("USER" | "AI_AGENT"),
|
|
3142
|
+
entity_arn: ::String,
|
|
3143
|
+
?next_token: ::String,
|
|
3144
|
+
?max_results: ::Integer
|
|
3145
|
+
) -> _ListEntitySecurityProfilesResponseSuccess
|
|
3146
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEntitySecurityProfilesResponseSuccess
|
|
3147
|
+
|
|
2549
3148
|
interface _ListEvaluationFormVersionsResponseSuccess
|
|
2550
3149
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListEvaluationFormVersionsResponse]
|
|
2551
3150
|
def evaluation_form_version_summary_list: () -> ::Array[Types::EvaluationFormVersionSummary]
|
|
@@ -2663,7 +3262,7 @@ module Aws
|
|
|
2663
3262
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_integration_associations-instance_method
|
|
2664
3263
|
def list_integration_associations: (
|
|
2665
3264
|
instance_id: ::String,
|
|
2666
|
-
?integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR" | "COGNITO_USER_POOL"),
|
|
3265
|
+
?integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR" | "COGNITO_USER_POOL" | "MESSAGE_PROCESSOR"),
|
|
2667
3266
|
?next_token: ::String,
|
|
2668
3267
|
?max_results: ::Integer,
|
|
2669
3268
|
?integration_arn: ::String
|
|
@@ -2794,7 +3393,7 @@ module Aws
|
|
|
2794
3393
|
instance_id: ::String,
|
|
2795
3394
|
?next_token: ::String,
|
|
2796
3395
|
?max_results: ::Integer,
|
|
2797
|
-
?quick_connect_types: Array[("USER" | "QUEUE" | "PHONE_NUMBER")]
|
|
3396
|
+
?quick_connect_types: Array[("USER" | "QUEUE" | "PHONE_NUMBER" | "FLOW")]
|
|
2798
3397
|
) -> _ListQuickConnectsResponseSuccess
|
|
2799
3398
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListQuickConnectsResponseSuccess
|
|
2800
3399
|
|
|
@@ -2905,6 +3504,22 @@ module Aws
|
|
|
2905
3504
|
) -> _ListSecurityProfileApplicationsResponseSuccess
|
|
2906
3505
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSecurityProfileApplicationsResponseSuccess
|
|
2907
3506
|
|
|
3507
|
+
interface _ListSecurityProfileFlowModulesResponseSuccess
|
|
3508
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSecurityProfileFlowModulesResponse]
|
|
3509
|
+
def allowed_flow_modules: () -> ::Array[Types::FlowModule]
|
|
3510
|
+
def next_token: () -> ::String
|
|
3511
|
+
def last_modified_time: () -> ::Time
|
|
3512
|
+
def last_modified_region: () -> ::String
|
|
3513
|
+
end
|
|
3514
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_security_profile_flow_modules-instance_method
|
|
3515
|
+
def list_security_profile_flow_modules: (
|
|
3516
|
+
security_profile_id: ::String,
|
|
3517
|
+
instance_id: ::String,
|
|
3518
|
+
?next_token: ::String,
|
|
3519
|
+
?max_results: ::Integer
|
|
3520
|
+
) -> _ListSecurityProfileFlowModulesResponseSuccess
|
|
3521
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSecurityProfileFlowModulesResponseSuccess
|
|
3522
|
+
|
|
2908
3523
|
interface _ListSecurityProfilePermissionsResponseSuccess
|
|
2909
3524
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListSecurityProfilePermissionsResponse]
|
|
2910
3525
|
def permissions: () -> ::Array[::String]
|
|
@@ -3069,6 +3684,44 @@ module Aws
|
|
|
3069
3684
|
) -> _ListViewsResponseSuccess
|
|
3070
3685
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListViewsResponseSuccess
|
|
3071
3686
|
|
|
3687
|
+
interface _ListWorkspaceMediaResponseSuccess
|
|
3688
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkspaceMediaResponse]
|
|
3689
|
+
def media: () -> ::Array[Types::MediaItem]
|
|
3690
|
+
end
|
|
3691
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_workspace_media-instance_method
|
|
3692
|
+
def list_workspace_media: (
|
|
3693
|
+
instance_id: ::String,
|
|
3694
|
+
workspace_id: ::String
|
|
3695
|
+
) -> _ListWorkspaceMediaResponseSuccess
|
|
3696
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkspaceMediaResponseSuccess
|
|
3697
|
+
|
|
3698
|
+
interface _ListWorkspacePagesResponseSuccess
|
|
3699
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkspacePagesResponse]
|
|
3700
|
+
def next_token: () -> ::String
|
|
3701
|
+
def workspace_page_list: () -> ::Array[Types::WorkspacePage]
|
|
3702
|
+
end
|
|
3703
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_workspace_pages-instance_method
|
|
3704
|
+
def list_workspace_pages: (
|
|
3705
|
+
instance_id: ::String,
|
|
3706
|
+
workspace_id: ::String,
|
|
3707
|
+
?next_token: ::String,
|
|
3708
|
+
?max_results: ::Integer
|
|
3709
|
+
) -> _ListWorkspacePagesResponseSuccess
|
|
3710
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkspacePagesResponseSuccess
|
|
3711
|
+
|
|
3712
|
+
interface _ListWorkspacesResponseSuccess
|
|
3713
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkspacesResponse]
|
|
3714
|
+
def next_token: () -> ::String
|
|
3715
|
+
def workspace_summary_list: () -> ::Array[Types::WorkspaceSummary]
|
|
3716
|
+
end
|
|
3717
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_workspaces-instance_method
|
|
3718
|
+
def list_workspaces: (
|
|
3719
|
+
instance_id: ::String,
|
|
3720
|
+
?next_token: ::String,
|
|
3721
|
+
?max_results: ::Integer
|
|
3722
|
+
) -> _ListWorkspacesResponseSuccess
|
|
3723
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkspacesResponseSuccess
|
|
3724
|
+
|
|
3072
3725
|
interface _MonitorContactResponseSuccess
|
|
3073
3726
|
include ::Seahorse::Client::_ResponseSuccess[Types::MonitorContactResponse]
|
|
3074
3727
|
def contact_id: () -> ::String
|
|
@@ -3377,6 +4030,39 @@ module Aws
|
|
|
3377
4030
|
tag_key: ::String?,
|
|
3378
4031
|
tag_value: ::String?
|
|
3379
4032
|
}?
|
|
4033
|
+
}?,
|
|
4034
|
+
flow_attribute_filter: {
|
|
4035
|
+
or_conditions: Array[
|
|
4036
|
+
{
|
|
4037
|
+
tag_conditions: Array[
|
|
4038
|
+
{
|
|
4039
|
+
tag_key: ::String?,
|
|
4040
|
+
tag_value: ::String?
|
|
4041
|
+
},
|
|
4042
|
+
]?,
|
|
4043
|
+
contact_flow_type_condition: {
|
|
4044
|
+
contact_flow_type: ("CONTACT_FLOW" | "CUSTOMER_QUEUE" | "CUSTOMER_HOLD" | "CUSTOMER_WHISPER" | "AGENT_HOLD" | "AGENT_WHISPER" | "OUTBOUND_WHISPER" | "AGENT_TRANSFER" | "QUEUE_TRANSFER" | "CAMPAIGN")?
|
|
4045
|
+
}?
|
|
4046
|
+
},
|
|
4047
|
+
]?,
|
|
4048
|
+
and_condition: {
|
|
4049
|
+
tag_conditions: Array[
|
|
4050
|
+
{
|
|
4051
|
+
tag_key: ::String?,
|
|
4052
|
+
tag_value: ::String?
|
|
4053
|
+
},
|
|
4054
|
+
]?,
|
|
4055
|
+
contact_flow_type_condition: {
|
|
4056
|
+
contact_flow_type: ("CONTACT_FLOW" | "CUSTOMER_QUEUE" | "CUSTOMER_HOLD" | "CUSTOMER_WHISPER" | "AGENT_HOLD" | "AGENT_WHISPER" | "OUTBOUND_WHISPER" | "AGENT_TRANSFER" | "QUEUE_TRANSFER" | "CAMPAIGN")?
|
|
4057
|
+
}?
|
|
4058
|
+
}?,
|
|
4059
|
+
tag_condition: {
|
|
4060
|
+
tag_key: ::String?,
|
|
4061
|
+
tag_value: ::String?
|
|
4062
|
+
}?,
|
|
4063
|
+
contact_flow_type_condition: {
|
|
4064
|
+
contact_flow_type: ("CONTACT_FLOW" | "CUSTOMER_QUEUE" | "CUSTOMER_HOLD" | "CUSTOMER_WHISPER" | "AGENT_HOLD" | "AGENT_WHISPER" | "OUTBOUND_WHISPER" | "AGENT_TRANSFER" | "QUEUE_TRANSFER" | "CAMPAIGN")?
|
|
4065
|
+
}?
|
|
3380
4066
|
}?
|
|
3381
4067
|
},
|
|
3382
4068
|
?search_criteria: {
|
|
@@ -3494,6 +4180,59 @@ module Aws
|
|
|
3494
4180
|
) -> _SearchContactsResponseSuccess
|
|
3495
4181
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchContactsResponseSuccess
|
|
3496
4182
|
|
|
4183
|
+
interface _SearchDataTablesResponseSuccess
|
|
4184
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SearchDataTablesResponse]
|
|
4185
|
+
def data_tables: () -> ::Array[Types::DataTable]
|
|
4186
|
+
def next_token: () -> ::String
|
|
4187
|
+
def approximate_total_count: () -> ::Integer
|
|
4188
|
+
end
|
|
4189
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#search_data_tables-instance_method
|
|
4190
|
+
def search_data_tables: (
|
|
4191
|
+
instance_id: ::String,
|
|
4192
|
+
?next_token: ::String,
|
|
4193
|
+
?max_results: ::Integer,
|
|
4194
|
+
?search_filter: {
|
|
4195
|
+
attribute_filter: {
|
|
4196
|
+
or_conditions: Array[
|
|
4197
|
+
{
|
|
4198
|
+
tag_conditions: Array[
|
|
4199
|
+
{
|
|
4200
|
+
tag_key: ::String?,
|
|
4201
|
+
tag_value: ::String?
|
|
4202
|
+
},
|
|
4203
|
+
]?
|
|
4204
|
+
},
|
|
4205
|
+
]?,
|
|
4206
|
+
and_condition: {
|
|
4207
|
+
tag_conditions: Array[
|
|
4208
|
+
{
|
|
4209
|
+
tag_key: ::String?,
|
|
4210
|
+
tag_value: ::String?
|
|
4211
|
+
},
|
|
4212
|
+
]?
|
|
4213
|
+
}?,
|
|
4214
|
+
tag_condition: {
|
|
4215
|
+
tag_key: ::String?,
|
|
4216
|
+
tag_value: ::String?
|
|
4217
|
+
}?
|
|
4218
|
+
}?
|
|
4219
|
+
},
|
|
4220
|
+
?search_criteria: {
|
|
4221
|
+
or_conditions: Array[
|
|
4222
|
+
untyped,
|
|
4223
|
+
]?,
|
|
4224
|
+
and_conditions: Array[
|
|
4225
|
+
untyped,
|
|
4226
|
+
]?,
|
|
4227
|
+
string_condition: {
|
|
4228
|
+
field_name: ::String?,
|
|
4229
|
+
value: ::String?,
|
|
4230
|
+
comparison_type: ("STARTS_WITH" | "CONTAINS" | "EXACT")?
|
|
4231
|
+
}?
|
|
4232
|
+
}
|
|
4233
|
+
) -> _SearchDataTablesResponseSuccess
|
|
4234
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchDataTablesResponseSuccess
|
|
4235
|
+
|
|
3497
4236
|
interface _SearchEmailAddressesResponseSuccess
|
|
3498
4237
|
include ::Seahorse::Client::_ResponseSuccess[Types::SearchEmailAddressesResponse]
|
|
3499
4238
|
def next_token: () -> ::String
|
|
@@ -4170,6 +4909,61 @@ module Aws
|
|
|
4170
4909
|
) -> _SearchUsersResponseSuccess
|
|
4171
4910
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchUsersResponseSuccess
|
|
4172
4911
|
|
|
4912
|
+
interface _SearchViewsResponseSuccess
|
|
4913
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SearchViewsResponse]
|
|
4914
|
+
def views: () -> ::Array[Types::View]
|
|
4915
|
+
def next_token: () -> ::String
|
|
4916
|
+
def approximate_total_count: () -> ::Integer
|
|
4917
|
+
end
|
|
4918
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#search_views-instance_method
|
|
4919
|
+
def search_views: (
|
|
4920
|
+
instance_id: ::String,
|
|
4921
|
+
?next_token: ::String,
|
|
4922
|
+
?max_results: ::Integer,
|
|
4923
|
+
?search_filter: {
|
|
4924
|
+
attribute_filter: {
|
|
4925
|
+
or_conditions: Array[
|
|
4926
|
+
{
|
|
4927
|
+
tag_conditions: Array[
|
|
4928
|
+
{
|
|
4929
|
+
tag_key: ::String?,
|
|
4930
|
+
tag_value: ::String?
|
|
4931
|
+
},
|
|
4932
|
+
]?
|
|
4933
|
+
},
|
|
4934
|
+
]?,
|
|
4935
|
+
and_condition: {
|
|
4936
|
+
tag_conditions: Array[
|
|
4937
|
+
{
|
|
4938
|
+
tag_key: ::String?,
|
|
4939
|
+
tag_value: ::String?
|
|
4940
|
+
},
|
|
4941
|
+
]?
|
|
4942
|
+
}?,
|
|
4943
|
+
tag_condition: {
|
|
4944
|
+
tag_key: ::String?,
|
|
4945
|
+
tag_value: ::String?
|
|
4946
|
+
}?
|
|
4947
|
+
}?
|
|
4948
|
+
},
|
|
4949
|
+
?search_criteria: {
|
|
4950
|
+
or_conditions: Array[
|
|
4951
|
+
untyped,
|
|
4952
|
+
]?,
|
|
4953
|
+
and_conditions: Array[
|
|
4954
|
+
untyped,
|
|
4955
|
+
]?,
|
|
4956
|
+
string_condition: {
|
|
4957
|
+
field_name: ::String?,
|
|
4958
|
+
value: ::String?,
|
|
4959
|
+
comparison_type: ("STARTS_WITH" | "CONTAINS" | "EXACT")?
|
|
4960
|
+
}?,
|
|
4961
|
+
view_type_condition: ("CUSTOMER_MANAGED" | "AWS_MANAGED")?,
|
|
4962
|
+
view_status_condition: ("PUBLISHED" | "SAVED")?
|
|
4963
|
+
}
|
|
4964
|
+
) -> _SearchViewsResponseSuccess
|
|
4965
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchViewsResponseSuccess
|
|
4966
|
+
|
|
4173
4967
|
interface _SearchVocabulariesResponseSuccess
|
|
4174
4968
|
include ::Seahorse::Client::_ResponseSuccess[Types::SearchVocabulariesResponse]
|
|
4175
4969
|
def vocabulary_summary_list: () -> ::Array[Types::VocabularySummary]
|
|
@@ -4186,6 +4980,112 @@ module Aws
|
|
|
4186
4980
|
) -> _SearchVocabulariesResponseSuccess
|
|
4187
4981
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchVocabulariesResponseSuccess
|
|
4188
4982
|
|
|
4983
|
+
interface _SearchWorkspaceAssociationsResponseSuccess
|
|
4984
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SearchWorkspaceAssociationsResponse]
|
|
4985
|
+
def next_token: () -> ::String
|
|
4986
|
+
def workspace_associations: () -> ::Array[Types::WorkspaceAssociationSearchSummary]
|
|
4987
|
+
def approximate_total_count: () -> ::Integer
|
|
4988
|
+
end
|
|
4989
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#search_workspace_associations-instance_method
|
|
4990
|
+
def search_workspace_associations: (
|
|
4991
|
+
instance_id: ::String,
|
|
4992
|
+
?next_token: ::String,
|
|
4993
|
+
?max_results: ::Integer,
|
|
4994
|
+
?search_filter: {
|
|
4995
|
+
attribute_filter: {
|
|
4996
|
+
or_conditions: Array[
|
|
4997
|
+
{
|
|
4998
|
+
tag_conditions: Array[
|
|
4999
|
+
{
|
|
5000
|
+
tag_key: ::String?,
|
|
5001
|
+
tag_value: ::String?
|
|
5002
|
+
},
|
|
5003
|
+
]?
|
|
5004
|
+
},
|
|
5005
|
+
]?,
|
|
5006
|
+
and_condition: {
|
|
5007
|
+
tag_conditions: Array[
|
|
5008
|
+
{
|
|
5009
|
+
tag_key: ::String?,
|
|
5010
|
+
tag_value: ::String?
|
|
5011
|
+
},
|
|
5012
|
+
]?
|
|
5013
|
+
}?,
|
|
5014
|
+
tag_condition: {
|
|
5015
|
+
tag_key: ::String?,
|
|
5016
|
+
tag_value: ::String?
|
|
5017
|
+
}?
|
|
5018
|
+
}?
|
|
5019
|
+
},
|
|
5020
|
+
?search_criteria: {
|
|
5021
|
+
or_conditions: Array[
|
|
5022
|
+
untyped,
|
|
5023
|
+
]?,
|
|
5024
|
+
and_conditions: Array[
|
|
5025
|
+
untyped,
|
|
5026
|
+
]?,
|
|
5027
|
+
string_condition: {
|
|
5028
|
+
field_name: ::String?,
|
|
5029
|
+
value: ::String?,
|
|
5030
|
+
comparison_type: ("STARTS_WITH" | "CONTAINS" | "EXACT")?
|
|
5031
|
+
}?
|
|
5032
|
+
}
|
|
5033
|
+
) -> _SearchWorkspaceAssociationsResponseSuccess
|
|
5034
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchWorkspaceAssociationsResponseSuccess
|
|
5035
|
+
|
|
5036
|
+
interface _SearchWorkspacesResponseSuccess
|
|
5037
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SearchWorkspacesResponse]
|
|
5038
|
+
def next_token: () -> ::String
|
|
5039
|
+
def workspaces: () -> ::Array[Types::WorkspaceSearchSummary]
|
|
5040
|
+
def approximate_total_count: () -> ::Integer
|
|
5041
|
+
end
|
|
5042
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#search_workspaces-instance_method
|
|
5043
|
+
def search_workspaces: (
|
|
5044
|
+
instance_id: ::String,
|
|
5045
|
+
?next_token: ::String,
|
|
5046
|
+
?max_results: ::Integer,
|
|
5047
|
+
?search_filter: {
|
|
5048
|
+
attribute_filter: {
|
|
5049
|
+
or_conditions: Array[
|
|
5050
|
+
{
|
|
5051
|
+
tag_conditions: Array[
|
|
5052
|
+
{
|
|
5053
|
+
tag_key: ::String?,
|
|
5054
|
+
tag_value: ::String?
|
|
5055
|
+
},
|
|
5056
|
+
]?
|
|
5057
|
+
},
|
|
5058
|
+
]?,
|
|
5059
|
+
and_condition: {
|
|
5060
|
+
tag_conditions: Array[
|
|
5061
|
+
{
|
|
5062
|
+
tag_key: ::String?,
|
|
5063
|
+
tag_value: ::String?
|
|
5064
|
+
},
|
|
5065
|
+
]?
|
|
5066
|
+
}?,
|
|
5067
|
+
tag_condition: {
|
|
5068
|
+
tag_key: ::String?,
|
|
5069
|
+
tag_value: ::String?
|
|
5070
|
+
}?
|
|
5071
|
+
}?
|
|
5072
|
+
},
|
|
5073
|
+
?search_criteria: {
|
|
5074
|
+
or_conditions: Array[
|
|
5075
|
+
untyped,
|
|
5076
|
+
]?,
|
|
5077
|
+
and_conditions: Array[
|
|
5078
|
+
untyped,
|
|
5079
|
+
]?,
|
|
5080
|
+
string_condition: {
|
|
5081
|
+
field_name: ::String?,
|
|
5082
|
+
value: ::String?,
|
|
5083
|
+
comparison_type: ("STARTS_WITH" | "CONTAINS" | "EXACT")?
|
|
5084
|
+
}?
|
|
5085
|
+
}
|
|
5086
|
+
) -> _SearchWorkspacesResponseSuccess
|
|
5087
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchWorkspacesResponseSuccess
|
|
5088
|
+
|
|
4189
5089
|
interface _SendChatIntegrationEventResponseSuccess
|
|
4190
5090
|
include ::Seahorse::Client::_ResponseSuccess[Types::SendChatIntegrationEventResponse]
|
|
4191
5091
|
def initial_contact_id: () -> ::String
|
|
@@ -4302,6 +5202,9 @@ module Aws
|
|
|
4302
5202
|
participant_details: {
|
|
4303
5203
|
display_name: ::String
|
|
4304
5204
|
},
|
|
5205
|
+
?participant_configuration: {
|
|
5206
|
+
response_mode: ("INCREMENTAL" | "COMPLETE")?
|
|
5207
|
+
},
|
|
4305
5208
|
?initial_message: {
|
|
4306
5209
|
content_type: ::String,
|
|
4307
5210
|
content: ::String
|
|
@@ -4345,6 +5248,18 @@ module Aws
|
|
|
4345
5248
|
) -> _StartContactEvaluationResponseSuccess
|
|
4346
5249
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartContactEvaluationResponseSuccess
|
|
4347
5250
|
|
|
5251
|
+
interface _StartContactMediaProcessingResponseSuccess
|
|
5252
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartContactMediaProcessingResponse]
|
|
5253
|
+
end
|
|
5254
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#start_contact_media_processing-instance_method
|
|
5255
|
+
def start_contact_media_processing: (
|
|
5256
|
+
?instance_id: ::String,
|
|
5257
|
+
?contact_id: ::String,
|
|
5258
|
+
?processor_arn: ::String,
|
|
5259
|
+
?failure_mode: ("DELIVER_UNPROCESSED_MESSAGE" | "DO_NOT_DELIVER_UNPROCESSED_MESSAGE")
|
|
5260
|
+
) -> _StartContactMediaProcessingResponseSuccess
|
|
5261
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartContactMediaProcessingResponseSuccess
|
|
5262
|
+
|
|
4348
5263
|
interface _StartContactRecordingResponseSuccess
|
|
4349
5264
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartContactRecordingResponse]
|
|
4350
5265
|
end
|
|
@@ -4390,7 +5305,7 @@ module Aws
|
|
|
4390
5305
|
?description: ::String,
|
|
4391
5306
|
?references: Hash[::String, {
|
|
4392
5307
|
value: ::String?,
|
|
4393
|
-
type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
|
|
5308
|
+
type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT"),
|
|
4394
5309
|
status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
|
|
4395
5310
|
arn: ::String?,
|
|
4396
5311
|
status_reason: ::String?
|
|
@@ -4535,7 +5450,7 @@ module Aws
|
|
|
4535
5450
|
?description: ::String,
|
|
4536
5451
|
?references: Hash[::String, {
|
|
4537
5452
|
value: ::String?,
|
|
4538
|
-
type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
|
|
5453
|
+
type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT"),
|
|
4539
5454
|
status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
|
|
4540
5455
|
arn: ::String?,
|
|
4541
5456
|
status_reason: ::String?
|
|
@@ -4595,7 +5510,7 @@ module Aws
|
|
|
4595
5510
|
name: ::String,
|
|
4596
5511
|
?references: Hash[::String, {
|
|
4597
5512
|
value: ::String?,
|
|
4598
|
-
type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
|
|
5513
|
+
type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT"),
|
|
4599
5514
|
status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
|
|
4600
5515
|
arn: ::String?,
|
|
4601
5516
|
status_reason: ::String?
|
|
@@ -4647,7 +5562,7 @@ module Aws
|
|
|
4647
5562
|
?related_contact_id: ::String,
|
|
4648
5563
|
?references: Hash[::String, {
|
|
4649
5564
|
value: ::String?,
|
|
4650
|
-
type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
|
|
5565
|
+
type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT"),
|
|
4651
5566
|
status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
|
|
4652
5567
|
arn: ::String?,
|
|
4653
5568
|
status_reason: ::String?
|
|
@@ -4669,6 +5584,16 @@ module Aws
|
|
|
4669
5584
|
) -> _StopContactResponseSuccess
|
|
4670
5585
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopContactResponseSuccess
|
|
4671
5586
|
|
|
5587
|
+
interface _StopContactMediaProcessingResponseSuccess
|
|
5588
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopContactMediaProcessingResponse]
|
|
5589
|
+
end
|
|
5590
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#stop_contact_media_processing-instance_method
|
|
5591
|
+
def stop_contact_media_processing: (
|
|
5592
|
+
?instance_id: ::String,
|
|
5593
|
+
?contact_id: ::String
|
|
5594
|
+
) -> _StopContactMediaProcessingResponseSuccess
|
|
5595
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopContactMediaProcessingResponseSuccess
|
|
5596
|
+
|
|
4672
5597
|
interface _StopContactRecordingResponseSuccess
|
|
4673
5598
|
include ::Seahorse::Client::_ResponseSuccess[Types::StopContactRecordingResponse]
|
|
4674
5599
|
end
|
|
@@ -4705,6 +5630,8 @@ module Aws
|
|
|
4705
5630
|
value: {
|
|
4706
5631
|
string_value: ::String?,
|
|
4707
5632
|
numeric_value: ::Float?,
|
|
5633
|
+
string_values: Array[::String]?,
|
|
5634
|
+
date_time_value: ::String?,
|
|
4708
5635
|
not_applicable: bool?
|
|
4709
5636
|
}?
|
|
4710
5637
|
}],
|
|
@@ -4818,7 +5745,7 @@ module Aws
|
|
|
4818
5745
|
?description: ::String,
|
|
4819
5746
|
?references: Hash[::String, {
|
|
4820
5747
|
value: ::String?,
|
|
4821
|
-
type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
|
|
5748
|
+
type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT"),
|
|
4822
5749
|
status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
|
|
4823
5750
|
arn: ::String?,
|
|
4824
5751
|
status_reason: ::String?
|
|
@@ -4873,6 +5800,8 @@ module Aws
|
|
|
4873
5800
|
value: {
|
|
4874
5801
|
string_value: ::String?,
|
|
4875
5802
|
numeric_value: ::Float?,
|
|
5803
|
+
string_values: Array[::String]?,
|
|
5804
|
+
date_time_value: ::String?,
|
|
4876
5805
|
not_applicable: bool?
|
|
4877
5806
|
}?
|
|
4878
5807
|
}],
|
|
@@ -5030,6 +5959,83 @@ module Aws
|
|
|
5030
5959
|
) -> _UpdateContactScheduleResponseSuccess
|
|
5031
5960
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactScheduleResponseSuccess
|
|
5032
5961
|
|
|
5962
|
+
interface _UpdateDataTableAttributeResponseSuccess
|
|
5963
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDataTableAttributeResponse]
|
|
5964
|
+
def name: () -> ::String
|
|
5965
|
+
def lock_version: () -> Types::DataTableLockVersion
|
|
5966
|
+
end
|
|
5967
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_data_table_attribute-instance_method
|
|
5968
|
+
def update_data_table_attribute: (
|
|
5969
|
+
instance_id: ::String,
|
|
5970
|
+
data_table_id: ::String,
|
|
5971
|
+
attribute_name: ::String,
|
|
5972
|
+
name: ::String,
|
|
5973
|
+
value_type: ("TEXT" | "NUMBER" | "BOOLEAN" | "TEXT_LIST" | "NUMBER_LIST"),
|
|
5974
|
+
?description: ::String,
|
|
5975
|
+
?primary: bool,
|
|
5976
|
+
?validation: {
|
|
5977
|
+
min_length: ::Integer?,
|
|
5978
|
+
max_length: ::Integer?,
|
|
5979
|
+
min_values: ::Integer?,
|
|
5980
|
+
max_values: ::Integer?,
|
|
5981
|
+
ignore_case: bool?,
|
|
5982
|
+
minimum: ::Float?,
|
|
5983
|
+
maximum: ::Float?,
|
|
5984
|
+
exclusive_minimum: ::Float?,
|
|
5985
|
+
exclusive_maximum: ::Float?,
|
|
5986
|
+
multiple_of: ::Float?,
|
|
5987
|
+
enum: {
|
|
5988
|
+
strict: bool?,
|
|
5989
|
+
values: Array[::String]?
|
|
5990
|
+
}?
|
|
5991
|
+
}
|
|
5992
|
+
) -> _UpdateDataTableAttributeResponseSuccess
|
|
5993
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataTableAttributeResponseSuccess
|
|
5994
|
+
|
|
5995
|
+
interface _UpdateDataTableMetadataResponseSuccess
|
|
5996
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDataTableMetadataResponse]
|
|
5997
|
+
def lock_version: () -> Types::DataTableLockVersion
|
|
5998
|
+
end
|
|
5999
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_data_table_metadata-instance_method
|
|
6000
|
+
def update_data_table_metadata: (
|
|
6001
|
+
instance_id: ::String,
|
|
6002
|
+
data_table_id: ::String,
|
|
6003
|
+
name: ::String,
|
|
6004
|
+
?description: ::String,
|
|
6005
|
+
value_lock_level: ("NONE" | "DATA_TABLE" | "PRIMARY_VALUE" | "ATTRIBUTE" | "VALUE"),
|
|
6006
|
+
time_zone: ::String
|
|
6007
|
+
) -> _UpdateDataTableMetadataResponseSuccess
|
|
6008
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataTableMetadataResponseSuccess
|
|
6009
|
+
|
|
6010
|
+
interface _UpdateDataTablePrimaryValuesResponseSuccess
|
|
6011
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDataTablePrimaryValuesResponse]
|
|
6012
|
+
def lock_version: () -> Types::DataTableLockVersion
|
|
6013
|
+
end
|
|
6014
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_data_table_primary_values-instance_method
|
|
6015
|
+
def update_data_table_primary_values: (
|
|
6016
|
+
instance_id: ::String,
|
|
6017
|
+
data_table_id: ::String,
|
|
6018
|
+
primary_values: Array[
|
|
6019
|
+
{
|
|
6020
|
+
attribute_name: ::String,
|
|
6021
|
+
value: ::String
|
|
6022
|
+
},
|
|
6023
|
+
],
|
|
6024
|
+
new_primary_values: Array[
|
|
6025
|
+
{
|
|
6026
|
+
attribute_name: ::String,
|
|
6027
|
+
value: ::String
|
|
6028
|
+
},
|
|
6029
|
+
],
|
|
6030
|
+
lock_version: {
|
|
6031
|
+
data_table: ::String?,
|
|
6032
|
+
attribute: ::String?,
|
|
6033
|
+
primary_values: ::String?,
|
|
6034
|
+
value: ::String?
|
|
6035
|
+
}
|
|
6036
|
+
) -> _UpdateDataTablePrimaryValuesResponseSuccess
|
|
6037
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataTablePrimaryValuesResponseSuccess
|
|
6038
|
+
|
|
5033
6039
|
interface _UpdateEmailAddressMetadataResponseSuccess
|
|
5034
6040
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEmailAddressMetadataResponse]
|
|
5035
6041
|
def email_address_id: () -> ::String
|
|
@@ -5073,7 +6079,7 @@ module Aws
|
|
|
5073
6079
|
instructions: ::String?,
|
|
5074
6080
|
ref_id: ::String,
|
|
5075
6081
|
not_applicable_enabled: bool?,
|
|
5076
|
-
question_type: ("TEXT" | "SINGLESELECT" | "NUMERIC"),
|
|
6082
|
+
question_type: ("TEXT" | "SINGLESELECT" | "NUMERIC" | "MULTISELECT" | "DATETIME"),
|
|
5077
6083
|
question_type_properties: {
|
|
5078
6084
|
numeric: {
|
|
5079
6085
|
min_value: ::Integer,
|
|
@@ -5091,7 +6097,7 @@ module Aws
|
|
|
5091
6097
|
]?,
|
|
5092
6098
|
automation: {
|
|
5093
6099
|
property_value: {
|
|
5094
|
-
label: ("OVERALL_CUSTOMER_SENTIMENT_SCORE" | "OVERALL_AGENT_SENTIMENT_SCORE" | "NON_TALK_TIME" | "NON_TALK_TIME_PERCENTAGE" | "NUMBER_OF_INTERRUPTIONS" | "CONTACT_DURATION" | "AGENT_INTERACTION_DURATION" | "CUSTOMER_HOLD_TIME" | "LONGEST_HOLD_DURATION" | "NUMBER_OF_HOLDS" | "AGENT_INTERACTION_AND_HOLD_DURATION")
|
|
6100
|
+
label: ("OVERALL_CUSTOMER_SENTIMENT_SCORE" | "OVERALL_AGENT_SENTIMENT_SCORE" | "CUSTOMER_SENTIMENT_SCORE_WITHOUT_AGENT" | "CUSTOMER_SENTIMENT_SCORE_WITH_AGENT" | "NON_TALK_TIME" | "NON_TALK_TIME_PERCENTAGE" | "NUMBER_OF_INTERRUPTIONS" | "CONTACT_DURATION" | "AGENT_INTERACTION_DURATION" | "CUSTOMER_HOLD_TIME" | "LONGEST_HOLD_DURATION" | "NUMBER_OF_HOLDS" | "AGENT_INTERACTION_AND_HOLD_DURATION")
|
|
5095
6101
|
}?,
|
|
5096
6102
|
answer_source: {
|
|
5097
6103
|
source_type: ("CONTACT_LENS_DATA" | "GEN_AI")
|
|
@@ -5133,6 +6139,30 @@ module Aws
|
|
|
5133
6139
|
source_type: ("CONTACT_LENS_DATA" | "GEN_AI")
|
|
5134
6140
|
}?
|
|
5135
6141
|
}?
|
|
6142
|
+
}?,
|
|
6143
|
+
multi_select: {
|
|
6144
|
+
options: Array[
|
|
6145
|
+
{
|
|
6146
|
+
ref_id: ::String,
|
|
6147
|
+
text: ::String
|
|
6148
|
+
},
|
|
6149
|
+
],
|
|
6150
|
+
display_as: ("DROPDOWN" | "CHECKBOX")?,
|
|
6151
|
+
automation: {
|
|
6152
|
+
options: Array[
|
|
6153
|
+
{
|
|
6154
|
+
rule_category: {
|
|
6155
|
+
category: ::String,
|
|
6156
|
+
condition: ("PRESENT" | "NOT_PRESENT"),
|
|
6157
|
+
option_ref_ids: Array[::String]
|
|
6158
|
+
}?
|
|
6159
|
+
},
|
|
6160
|
+
]?,
|
|
6161
|
+
default_option_ref_ids: Array[::String]?,
|
|
6162
|
+
answer_source: {
|
|
6163
|
+
source_type: ("CONTACT_LENS_DATA" | "GEN_AI")
|
|
6164
|
+
}?
|
|
6165
|
+
}?
|
|
5136
6166
|
}?
|
|
5137
6167
|
}?,
|
|
5138
6168
|
enablement: {
|
|
@@ -5150,7 +6180,7 @@ module Aws
|
|
|
5150
6180
|
ref_id: ::String?
|
|
5151
6181
|
},
|
|
5152
6182
|
],
|
|
5153
|
-
comparator: ("IN" | "NOT_IN")
|
|
6183
|
+
comparator: ("IN" | "NOT_IN" | "ALL_IN" | "EXACT")
|
|
5154
6184
|
}?,
|
|
5155
6185
|
condition: untyped?
|
|
5156
6186
|
},
|
|
@@ -5171,7 +6201,14 @@ module Aws
|
|
|
5171
6201
|
?auto_evaluation_configuration: {
|
|
5172
6202
|
enabled: bool
|
|
5173
6203
|
},
|
|
5174
|
-
?
|
|
6204
|
+
?as_draft: bool,
|
|
6205
|
+
?client_token: ::String,
|
|
6206
|
+
?target_configuration: {
|
|
6207
|
+
contact_interaction_type: ("AGENT" | "AUTOMATED")
|
|
6208
|
+
},
|
|
6209
|
+
?language_configuration: {
|
|
6210
|
+
form_language: ("de-DE" | "en-US" | "es-ES" | "fr-FR" | "it-IT" | "pt-BR")?
|
|
6211
|
+
}
|
|
5175
6212
|
) -> _UpdateEvaluationFormResponseSuccess
|
|
5176
6213
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEvaluationFormResponseSuccess
|
|
5177
6214
|
|
|
@@ -5226,7 +6263,7 @@ module Aws
|
|
|
5226
6263
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_instance_attribute-instance_method
|
|
5227
6264
|
def update_instance_attribute: (
|
|
5228
6265
|
instance_id: ::String,
|
|
5229
|
-
attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING" | "MULTI_PARTY_CHAT_CONFERENCE"),
|
|
6266
|
+
attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING" | "MULTI_PARTY_CHAT_CONFERENCE" | "MESSAGE_STREAMING"),
|
|
5230
6267
|
value: ::String,
|
|
5231
6268
|
?client_token: ::String
|
|
5232
6269
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
@@ -5415,7 +6452,7 @@ module Aws
|
|
|
5415
6452
|
instance_id: ::String,
|
|
5416
6453
|
quick_connect_id: ::String,
|
|
5417
6454
|
quick_connect_config: {
|
|
5418
|
-
quick_connect_type: ("USER" | "QUEUE" | "PHONE_NUMBER"),
|
|
6455
|
+
quick_connect_type: ("USER" | "QUEUE" | "PHONE_NUMBER" | "FLOW"),
|
|
5419
6456
|
user_config: {
|
|
5420
6457
|
user_id: ::String,
|
|
5421
6458
|
contact_flow_id: ::String
|
|
@@ -5426,6 +6463,9 @@ module Aws
|
|
|
5426
6463
|
}?,
|
|
5427
6464
|
phone_config: {
|
|
5428
6465
|
phone_number: ::String
|
|
6466
|
+
}?,
|
|
6467
|
+
flow_config: {
|
|
6468
|
+
contact_flow_id: ::String
|
|
5429
6469
|
}?
|
|
5430
6470
|
}
|
|
5431
6471
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
@@ -5513,7 +6553,7 @@ module Aws
|
|
|
5513
6553
|
contact_flow_id: ::String,
|
|
5514
6554
|
references: Hash[::String, {
|
|
5515
6555
|
value: ::String?,
|
|
5516
|
-
type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
|
|
6556
|
+
type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT"),
|
|
5517
6557
|
status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
|
|
5518
6558
|
arn: ::String?,
|
|
5519
6559
|
status_reason: ::String?
|
|
@@ -5607,11 +6647,31 @@ module Aws
|
|
|
5607
6647
|
?applications: Array[
|
|
5608
6648
|
{
|
|
5609
6649
|
namespace: ::String?,
|
|
5610
|
-
application_permissions: Array[::String]
|
|
6650
|
+
application_permissions: Array[::String]?,
|
|
6651
|
+
type: ("MCP" | "THIRD_PARTY_APPLICATION")?
|
|
5611
6652
|
},
|
|
5612
6653
|
],
|
|
5613
6654
|
?hierarchy_restricted_resources: Array[::String],
|
|
5614
|
-
?allowed_access_control_hierarchy_group_id: ::String
|
|
6655
|
+
?allowed_access_control_hierarchy_group_id: ::String,
|
|
6656
|
+
?allowed_flow_modules: Array[
|
|
6657
|
+
{
|
|
6658
|
+
type: ("MCP")?,
|
|
6659
|
+
flow_module_id: ::String?
|
|
6660
|
+
},
|
|
6661
|
+
],
|
|
6662
|
+
?granular_access_control_configuration: {
|
|
6663
|
+
data_table_access_control_configuration: {
|
|
6664
|
+
primary_attribute_access_control_configuration: {
|
|
6665
|
+
primary_attribute_values: Array[
|
|
6666
|
+
{
|
|
6667
|
+
access_type: ("ALLOW")?,
|
|
6668
|
+
attribute_name: ::String?,
|
|
6669
|
+
values: Array[::String]?
|
|
6670
|
+
},
|
|
6671
|
+
]?
|
|
6672
|
+
}?
|
|
6673
|
+
}?
|
|
6674
|
+
}
|
|
5615
6675
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
5616
6676
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
5617
6677
|
|
|
@@ -5843,6 +6903,137 @@ module Aws
|
|
|
5843
6903
|
?description: ::String
|
|
5844
6904
|
) -> _UpdateViewMetadataResponseSuccess
|
|
5845
6905
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateViewMetadataResponseSuccess
|
|
6906
|
+
|
|
6907
|
+
interface _UpdateWorkspaceMetadataResponseSuccess
|
|
6908
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateWorkspaceMetadataResponse]
|
|
6909
|
+
end
|
|
6910
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_workspace_metadata-instance_method
|
|
6911
|
+
def update_workspace_metadata: (
|
|
6912
|
+
instance_id: ::String,
|
|
6913
|
+
workspace_id: ::String,
|
|
6914
|
+
?name: ::String,
|
|
6915
|
+
?description: ::String,
|
|
6916
|
+
?title: ::String
|
|
6917
|
+
) -> _UpdateWorkspaceMetadataResponseSuccess
|
|
6918
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorkspaceMetadataResponseSuccess
|
|
6919
|
+
|
|
6920
|
+
interface _UpdateWorkspacePageResponseSuccess
|
|
6921
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateWorkspacePageResponse]
|
|
6922
|
+
end
|
|
6923
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_workspace_page-instance_method
|
|
6924
|
+
def update_workspace_page: (
|
|
6925
|
+
instance_id: ::String,
|
|
6926
|
+
workspace_id: ::String,
|
|
6927
|
+
page: ::String,
|
|
6928
|
+
?new_page: ::String,
|
|
6929
|
+
?resource_arn: ::String,
|
|
6930
|
+
?slug: ::String,
|
|
6931
|
+
?input_data: ::String
|
|
6932
|
+
) -> _UpdateWorkspacePageResponseSuccess
|
|
6933
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorkspacePageResponseSuccess
|
|
6934
|
+
|
|
6935
|
+
interface _UpdateWorkspaceThemeResponseSuccess
|
|
6936
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateWorkspaceThemeResponse]
|
|
6937
|
+
end
|
|
6938
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_workspace_theme-instance_method
|
|
6939
|
+
def update_workspace_theme: (
|
|
6940
|
+
instance_id: ::String,
|
|
6941
|
+
workspace_id: ::String,
|
|
6942
|
+
?theme: {
|
|
6943
|
+
light: {
|
|
6944
|
+
palette: {
|
|
6945
|
+
header: {
|
|
6946
|
+
background: ::String?,
|
|
6947
|
+
text: ::String?,
|
|
6948
|
+
text_hover: ::String?,
|
|
6949
|
+
invert_actions_colors: bool?
|
|
6950
|
+
}?,
|
|
6951
|
+
navigation: {
|
|
6952
|
+
background: ::String?,
|
|
6953
|
+
text_background_hover: ::String?,
|
|
6954
|
+
text_background_active: ::String?,
|
|
6955
|
+
text: ::String?,
|
|
6956
|
+
text_hover: ::String?,
|
|
6957
|
+
text_active: ::String?,
|
|
6958
|
+
invert_actions_colors: bool?
|
|
6959
|
+
}?,
|
|
6960
|
+
canvas: {
|
|
6961
|
+
container_background: ::String?,
|
|
6962
|
+
page_background: ::String?,
|
|
6963
|
+
active_background: ::String?
|
|
6964
|
+
}?,
|
|
6965
|
+
primary: {
|
|
6966
|
+
default: ::String?,
|
|
6967
|
+
active: ::String?,
|
|
6968
|
+
contrast_text: ::String?
|
|
6969
|
+
}?
|
|
6970
|
+
}?,
|
|
6971
|
+
images: {
|
|
6972
|
+
logo: {
|
|
6973
|
+
default: ::String?,
|
|
6974
|
+
favicon: ::String?
|
|
6975
|
+
}?
|
|
6976
|
+
}?,
|
|
6977
|
+
typography: {
|
|
6978
|
+
font_family: {
|
|
6979
|
+
default: ("Arial" | "Courier New" | "Georgia" | "Times New Roman" | "Trebuchet" | "Verdana")?
|
|
6980
|
+
}?
|
|
6981
|
+
}?
|
|
6982
|
+
}?,
|
|
6983
|
+
dark: {
|
|
6984
|
+
palette: {
|
|
6985
|
+
header: {
|
|
6986
|
+
background: ::String?,
|
|
6987
|
+
text: ::String?,
|
|
6988
|
+
text_hover: ::String?,
|
|
6989
|
+
invert_actions_colors: bool?
|
|
6990
|
+
}?,
|
|
6991
|
+
navigation: {
|
|
6992
|
+
background: ::String?,
|
|
6993
|
+
text_background_hover: ::String?,
|
|
6994
|
+
text_background_active: ::String?,
|
|
6995
|
+
text: ::String?,
|
|
6996
|
+
text_hover: ::String?,
|
|
6997
|
+
text_active: ::String?,
|
|
6998
|
+
invert_actions_colors: bool?
|
|
6999
|
+
}?,
|
|
7000
|
+
canvas: {
|
|
7001
|
+
container_background: ::String?,
|
|
7002
|
+
page_background: ::String?,
|
|
7003
|
+
active_background: ::String?
|
|
7004
|
+
}?,
|
|
7005
|
+
primary: {
|
|
7006
|
+
default: ::String?,
|
|
7007
|
+
active: ::String?,
|
|
7008
|
+
contrast_text: ::String?
|
|
7009
|
+
}?
|
|
7010
|
+
}?,
|
|
7011
|
+
images: {
|
|
7012
|
+
logo: {
|
|
7013
|
+
default: ::String?,
|
|
7014
|
+
favicon: ::String?
|
|
7015
|
+
}?
|
|
7016
|
+
}?,
|
|
7017
|
+
typography: {
|
|
7018
|
+
font_family: {
|
|
7019
|
+
default: ("Arial" | "Courier New" | "Georgia" | "Times New Roman" | "Trebuchet" | "Verdana")?
|
|
7020
|
+
}?
|
|
7021
|
+
}?
|
|
7022
|
+
}?
|
|
7023
|
+
}
|
|
7024
|
+
) -> _UpdateWorkspaceThemeResponseSuccess
|
|
7025
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorkspaceThemeResponseSuccess
|
|
7026
|
+
|
|
7027
|
+
interface _UpdateWorkspaceVisibilityResponseSuccess
|
|
7028
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateWorkspaceVisibilityResponse]
|
|
7029
|
+
end
|
|
7030
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_workspace_visibility-instance_method
|
|
7031
|
+
def update_workspace_visibility: (
|
|
7032
|
+
instance_id: ::String,
|
|
7033
|
+
workspace_id: ::String,
|
|
7034
|
+
visibility: ("ALL" | "ASSIGNED" | "NONE")
|
|
7035
|
+
) -> _UpdateWorkspaceVisibilityResponseSuccess
|
|
7036
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorkspaceVisibilityResponseSuccess
|
|
5846
7037
|
end
|
|
5847
7038
|
end
|
|
5848
7039
|
end
|