aws-sdk-connect 1.225.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +4274 -441
- data/lib/aws-sdk-connect/client_api.rb +2254 -45
- data/lib/aws-sdk-connect/types.rb +10716 -5508
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +1332 -31
- data/sig/types.rbs +1358 -27
- metadata +3 -3
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?
|
|
@@ -519,10 +661,43 @@ module Aws
|
|
|
519
661
|
?description: ::String,
|
|
520
662
|
content: ::String,
|
|
521
663
|
?tags: Hash[::String, ::String],
|
|
522
|
-
?client_token: ::String
|
|
664
|
+
?client_token: ::String,
|
|
665
|
+
?settings: ::String,
|
|
666
|
+
?external_invocation_configuration: {
|
|
667
|
+
enabled: bool?
|
|
668
|
+
}
|
|
523
669
|
) -> _CreateContactFlowModuleResponseSuccess
|
|
524
670
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactFlowModuleResponseSuccess
|
|
525
671
|
|
|
672
|
+
interface _CreateContactFlowModuleAliasResponseSuccess
|
|
673
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateContactFlowModuleAliasResponse]
|
|
674
|
+
def contact_flow_module_arn: () -> ::String
|
|
675
|
+
def id: () -> ::String
|
|
676
|
+
end
|
|
677
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_contact_flow_module_alias-instance_method
|
|
678
|
+
def create_contact_flow_module_alias: (
|
|
679
|
+
instance_id: ::String,
|
|
680
|
+
?description: ::String,
|
|
681
|
+
contact_flow_module_id: ::String,
|
|
682
|
+
contact_flow_module_version: ::Integer,
|
|
683
|
+
alias_name: ::String
|
|
684
|
+
) -> _CreateContactFlowModuleAliasResponseSuccess
|
|
685
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactFlowModuleAliasResponseSuccess
|
|
686
|
+
|
|
687
|
+
interface _CreateContactFlowModuleVersionResponseSuccess
|
|
688
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateContactFlowModuleVersionResponse]
|
|
689
|
+
def contact_flow_module_arn: () -> ::String
|
|
690
|
+
def version: () -> ::Integer
|
|
691
|
+
end
|
|
692
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_contact_flow_module_version-instance_method
|
|
693
|
+
def create_contact_flow_module_version: (
|
|
694
|
+
instance_id: ::String,
|
|
695
|
+
?description: ::String,
|
|
696
|
+
contact_flow_module_id: ::String,
|
|
697
|
+
?flow_module_content_sha_256: ::String
|
|
698
|
+
) -> _CreateContactFlowModuleVersionResponseSuccess
|
|
699
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactFlowModuleVersionResponseSuccess
|
|
700
|
+
|
|
526
701
|
interface _CreateContactFlowVersionResponseSuccess
|
|
527
702
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateContactFlowVersionResponse]
|
|
528
703
|
def contact_flow_arn: () -> ::String
|
|
@@ -540,6 +715,57 @@ module Aws
|
|
|
540
715
|
) -> _CreateContactFlowVersionResponseSuccess
|
|
541
716
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactFlowVersionResponseSuccess
|
|
542
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
|
+
|
|
543
769
|
interface _CreateEmailAddressResponseSuccess
|
|
544
770
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateEmailAddressResponse]
|
|
545
771
|
def email_address_id: () -> ::String
|
|
@@ -580,7 +806,7 @@ module Aws
|
|
|
580
806
|
instructions: ::String?,
|
|
581
807
|
ref_id: ::String,
|
|
582
808
|
not_applicable_enabled: bool?,
|
|
583
|
-
question_type: ("TEXT" | "SINGLESELECT" | "NUMERIC"),
|
|
809
|
+
question_type: ("TEXT" | "SINGLESELECT" | "NUMERIC" | "MULTISELECT" | "DATETIME"),
|
|
584
810
|
question_type_properties: {
|
|
585
811
|
numeric: {
|
|
586
812
|
min_value: ::Integer,
|
|
@@ -598,7 +824,7 @@ module Aws
|
|
|
598
824
|
]?,
|
|
599
825
|
automation: {
|
|
600
826
|
property_value: {
|
|
601
|
-
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")
|
|
602
828
|
}?,
|
|
603
829
|
answer_source: {
|
|
604
830
|
source_type: ("CONTACT_LENS_DATA" | "GEN_AI")
|
|
@@ -640,6 +866,30 @@ module Aws
|
|
|
640
866
|
source_type: ("CONTACT_LENS_DATA" | "GEN_AI")
|
|
641
867
|
}?
|
|
642
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
|
+
}?
|
|
643
893
|
}?
|
|
644
894
|
}?,
|
|
645
895
|
enablement: {
|
|
@@ -657,7 +907,7 @@ module Aws
|
|
|
657
907
|
ref_id: ::String?
|
|
658
908
|
},
|
|
659
909
|
],
|
|
660
|
-
comparator: ("IN" | "NOT_IN")
|
|
910
|
+
comparator: ("IN" | "NOT_IN" | "ALL_IN" | "EXACT")
|
|
661
911
|
}?,
|
|
662
912
|
condition: untyped?
|
|
663
913
|
},
|
|
@@ -679,7 +929,14 @@ module Aws
|
|
|
679
929
|
enabled: bool
|
|
680
930
|
},
|
|
681
931
|
?client_token: ::String,
|
|
682
|
-
?
|
|
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
|
+
}
|
|
683
940
|
) -> _CreateEvaluationFormResponseSuccess
|
|
684
941
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEvaluationFormResponseSuccess
|
|
685
942
|
|
|
@@ -764,7 +1021,7 @@ module Aws
|
|
|
764
1021
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_integration_association-instance_method
|
|
765
1022
|
def create_integration_association: (
|
|
766
1023
|
instance_id: ::String,
|
|
767
|
-
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"),
|
|
768
1025
|
integration_arn: ::String,
|
|
769
1026
|
?source_application_url: ::String,
|
|
770
1027
|
?source_application_name: ::String,
|
|
@@ -892,7 +1149,7 @@ module Aws
|
|
|
892
1149
|
name: ::String,
|
|
893
1150
|
?description: ::String,
|
|
894
1151
|
quick_connect_config: {
|
|
895
|
-
quick_connect_type: ("USER" | "QUEUE" | "PHONE_NUMBER"),
|
|
1152
|
+
quick_connect_type: ("USER" | "QUEUE" | "PHONE_NUMBER" | "FLOW"),
|
|
896
1153
|
user_config: {
|
|
897
1154
|
user_id: ::String,
|
|
898
1155
|
contact_flow_id: ::String
|
|
@@ -903,6 +1160,9 @@ module Aws
|
|
|
903
1160
|
}?,
|
|
904
1161
|
phone_config: {
|
|
905
1162
|
phone_number: ::String
|
|
1163
|
+
}?,
|
|
1164
|
+
flow_config: {
|
|
1165
|
+
contact_flow_id: ::String
|
|
906
1166
|
}?
|
|
907
1167
|
},
|
|
908
1168
|
?tags: Hash[::String, ::String]
|
|
@@ -975,7 +1235,7 @@ module Aws
|
|
|
975
1235
|
contact_flow_id: ::String,
|
|
976
1236
|
references: Hash[::String, {
|
|
977
1237
|
value: ::String?,
|
|
978
|
-
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"),
|
|
979
1239
|
status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
|
|
980
1240
|
arn: ::String?,
|
|
981
1241
|
status_reason: ::String?
|
|
@@ -1076,11 +1336,31 @@ module Aws
|
|
|
1076
1336
|
?applications: Array[
|
|
1077
1337
|
{
|
|
1078
1338
|
namespace: ::String?,
|
|
1079
|
-
application_permissions: Array[::String]
|
|
1339
|
+
application_permissions: Array[::String]?,
|
|
1340
|
+
type: ("MCP" | "THIRD_PARTY_APPLICATION")?
|
|
1080
1341
|
},
|
|
1081
1342
|
],
|
|
1082
1343
|
?hierarchy_restricted_resources: Array[::String],
|
|
1083
|
-
?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
|
+
}
|
|
1084
1364
|
) -> _CreateSecurityProfileResponseSuccess
|
|
1085
1365
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSecurityProfileResponseSuccess
|
|
1086
1366
|
|
|
@@ -1268,6 +1548,117 @@ module Aws
|
|
|
1268
1548
|
) -> _CreateVocabularyResponseSuccess
|
|
1269
1549
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVocabularyResponseSuccess
|
|
1270
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
|
+
|
|
1271
1662
|
interface _DeactivateEvaluationFormResponseSuccess
|
|
1272
1663
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeactivateEvaluationFormResponse]
|
|
1273
1664
|
def evaluation_form_id: () -> ::String
|
|
@@ -1320,6 +1711,28 @@ module Aws
|
|
|
1320
1711
|
) -> _DeleteContactFlowModuleResponseSuccess
|
|
1321
1712
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteContactFlowModuleResponseSuccess
|
|
1322
1713
|
|
|
1714
|
+
interface _DeleteContactFlowModuleAliasResponseSuccess
|
|
1715
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteContactFlowModuleAliasResponse]
|
|
1716
|
+
end
|
|
1717
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_contact_flow_module_alias-instance_method
|
|
1718
|
+
def delete_contact_flow_module_alias: (
|
|
1719
|
+
instance_id: ::String,
|
|
1720
|
+
contact_flow_module_id: ::String,
|
|
1721
|
+
alias_id: ::String
|
|
1722
|
+
) -> _DeleteContactFlowModuleAliasResponseSuccess
|
|
1723
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteContactFlowModuleAliasResponseSuccess
|
|
1724
|
+
|
|
1725
|
+
interface _DeleteContactFlowModuleVersionResponseSuccess
|
|
1726
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteContactFlowModuleVersionResponse]
|
|
1727
|
+
end
|
|
1728
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_contact_flow_module_version-instance_method
|
|
1729
|
+
def delete_contact_flow_module_version: (
|
|
1730
|
+
instance_id: ::String,
|
|
1731
|
+
contact_flow_module_id: ::String,
|
|
1732
|
+
contact_flow_module_version: ::Integer
|
|
1733
|
+
) -> _DeleteContactFlowModuleVersionResponseSuccess
|
|
1734
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteContactFlowModuleVersionResponseSuccess
|
|
1735
|
+
|
|
1323
1736
|
interface _DeleteContactFlowVersionResponseSuccess
|
|
1324
1737
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteContactFlowVersionResponse]
|
|
1325
1738
|
end
|
|
@@ -1331,6 +1744,28 @@ module Aws
|
|
|
1331
1744
|
) -> _DeleteContactFlowVersionResponseSuccess
|
|
1332
1745
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteContactFlowVersionResponseSuccess
|
|
1333
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
|
+
|
|
1334
1769
|
interface _DeleteEmailAddressResponseSuccess
|
|
1335
1770
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEmailAddressResponse]
|
|
1336
1771
|
end
|
|
@@ -1513,6 +1948,38 @@ module Aws
|
|
|
1513
1948
|
) -> _DeleteVocabularyResponseSuccess
|
|
1514
1949
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVocabularyResponseSuccess
|
|
1515
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
|
+
|
|
1516
1983
|
interface _DescribeAgentStatusResponseSuccess
|
|
1517
1984
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAgentStatusResponse]
|
|
1518
1985
|
def agent_status: () -> Types::AgentStatus
|
|
@@ -1580,6 +2047,41 @@ module Aws
|
|
|
1580
2047
|
) -> _DescribeContactFlowModuleResponseSuccess
|
|
1581
2048
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeContactFlowModuleResponseSuccess
|
|
1582
2049
|
|
|
2050
|
+
interface _DescribeContactFlowModuleAliasResponseSuccess
|
|
2051
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeContactFlowModuleAliasResponse]
|
|
2052
|
+
def contact_flow_module_alias: () -> Types::ContactFlowModuleAliasInfo
|
|
2053
|
+
end
|
|
2054
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_contact_flow_module_alias-instance_method
|
|
2055
|
+
def describe_contact_flow_module_alias: (
|
|
2056
|
+
instance_id: ::String,
|
|
2057
|
+
contact_flow_module_id: ::String,
|
|
2058
|
+
alias_id: ::String
|
|
2059
|
+
) -> _DescribeContactFlowModuleAliasResponseSuccess
|
|
2060
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeContactFlowModuleAliasResponseSuccess
|
|
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
|
+
|
|
1583
2085
|
interface _DescribeEmailAddressResponseSuccess
|
|
1584
2086
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEmailAddressResponse]
|
|
1585
2087
|
def email_address_id: () -> ::String
|
|
@@ -1652,7 +2154,7 @@ module Aws
|
|
|
1652
2154
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_instance_attribute-instance_method
|
|
1653
2155
|
def describe_instance_attribute: (
|
|
1654
2156
|
instance_id: ::String,
|
|
1655
|
-
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")
|
|
1656
2158
|
) -> _DescribeInstanceAttributeResponseSuccess
|
|
1657
2159
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInstanceAttributeResponseSuccess
|
|
1658
2160
|
|
|
@@ -1819,6 +2321,17 @@ module Aws
|
|
|
1819
2321
|
) -> _DescribeVocabularyResponseSuccess
|
|
1820
2322
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVocabularyResponseSuccess
|
|
1821
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
|
+
|
|
1822
2335
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#disassociate_analytics_data_set-instance_method
|
|
1823
2336
|
def disassociate_analytics_data_set: (
|
|
1824
2337
|
instance_id: ::String,
|
|
@@ -1942,6 +2455,19 @@ module Aws
|
|
|
1942
2455
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1943
2456
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1944
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
|
+
|
|
1945
2471
|
interface _DisassociateTrafficDistributionGroupUserResponseSuccess
|
|
1946
2472
|
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateTrafficDistributionGroupUserResponse]
|
|
1947
2473
|
end
|
|
@@ -1966,6 +2492,19 @@ module Aws
|
|
|
1966
2492
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1967
2493
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1968
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
|
+
|
|
1969
2508
|
interface _DismissUserContactResponseSuccess
|
|
1970
2509
|
include ::Seahorse::Client::_ResponseSuccess[Types::DismissUserContactResponse]
|
|
1971
2510
|
end
|
|
@@ -1977,6 +2516,32 @@ module Aws
|
|
|
1977
2516
|
) -> _DismissUserContactResponseSuccess
|
|
1978
2517
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DismissUserContactResponseSuccess
|
|
1979
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
|
+
|
|
1980
2545
|
interface _GetAttachedFileResponseSuccess
|
|
1981
2546
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetAttachedFileResponse]
|
|
1982
2547
|
def file_arn: () -> ::String
|
|
@@ -2179,7 +2744,10 @@ module Aws
|
|
|
2179
2744
|
filters: Array[
|
|
2180
2745
|
{
|
|
2181
2746
|
filter_key: ::String?,
|
|
2182
|
-
filter_values: Array[::String]
|
|
2747
|
+
filter_values: Array[::String]?,
|
|
2748
|
+
string_condition: {
|
|
2749
|
+
comparison: ("NOT_EXISTS")?
|
|
2750
|
+
}?
|
|
2183
2751
|
},
|
|
2184
2752
|
],
|
|
2185
2753
|
?groupings: Array[::String],
|
|
@@ -2192,6 +2760,7 @@ module Aws
|
|
|
2192
2760
|
threshold_value: ::Float?
|
|
2193
2761
|
},
|
|
2194
2762
|
]?,
|
|
2763
|
+
metric_id: ::String?,
|
|
2195
2764
|
metric_filters: Array[
|
|
2196
2765
|
{
|
|
2197
2766
|
metric_filter_key: ::String?,
|
|
@@ -2273,6 +2842,18 @@ module Aws
|
|
|
2273
2842
|
) -> _ImportPhoneNumberResponseSuccess
|
|
2274
2843
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportPhoneNumberResponseSuccess
|
|
2275
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
|
+
|
|
2276
2857
|
interface _ListAgentStatusesResponseSuccess
|
|
2277
2858
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListAgentStatusResponse]
|
|
2278
2859
|
def next_token: () -> ::String
|
|
@@ -2381,6 +2962,34 @@ module Aws
|
|
|
2381
2962
|
) -> _ListContactEvaluationsResponseSuccess
|
|
2382
2963
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContactEvaluationsResponseSuccess
|
|
2383
2964
|
|
|
2965
|
+
interface _ListContactFlowModuleAliasesResponseSuccess
|
|
2966
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListContactFlowModuleAliasesResponse]
|
|
2967
|
+
def contact_flow_module_alias_summary_list: () -> ::Array[Types::ContactFlowModuleAliasSummary]
|
|
2968
|
+
def next_token: () -> ::String
|
|
2969
|
+
end
|
|
2970
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_contact_flow_module_aliases-instance_method
|
|
2971
|
+
def list_contact_flow_module_aliases: (
|
|
2972
|
+
instance_id: ::String,
|
|
2973
|
+
contact_flow_module_id: ::String,
|
|
2974
|
+
?next_token: ::String,
|
|
2975
|
+
?max_results: ::Integer
|
|
2976
|
+
) -> _ListContactFlowModuleAliasesResponseSuccess
|
|
2977
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContactFlowModuleAliasesResponseSuccess
|
|
2978
|
+
|
|
2979
|
+
interface _ListContactFlowModuleVersionsResponseSuccess
|
|
2980
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListContactFlowModuleVersionsResponse]
|
|
2981
|
+
def contact_flow_module_version_summary_list: () -> ::Array[Types::ContactFlowModuleVersionSummary]
|
|
2982
|
+
def next_token: () -> ::String
|
|
2983
|
+
end
|
|
2984
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_contact_flow_module_versions-instance_method
|
|
2985
|
+
def list_contact_flow_module_versions: (
|
|
2986
|
+
instance_id: ::String,
|
|
2987
|
+
contact_flow_module_id: ::String,
|
|
2988
|
+
?next_token: ::String,
|
|
2989
|
+
?max_results: ::Integer
|
|
2990
|
+
) -> _ListContactFlowModuleVersionsResponseSuccess
|
|
2991
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContactFlowModuleVersionsResponseSuccess
|
|
2992
|
+
|
|
2384
2993
|
interface _ListContactFlowModulesResponseSuccess
|
|
2385
2994
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListContactFlowModulesResponse]
|
|
2386
2995
|
def contact_flow_modules_summary_list: () -> ::Array[Types::ContactFlowModuleSummary]
|
|
@@ -2432,11 +3041,81 @@ module Aws
|
|
|
2432
3041
|
def list_contact_references: (
|
|
2433
3042
|
instance_id: ::String,
|
|
2434
3043
|
contact_id: ::String,
|
|
2435
|
-
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")],
|
|
2436
3045
|
?next_token: ::String
|
|
2437
3046
|
) -> _ListContactReferencesResponseSuccess
|
|
2438
3047
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContactReferencesResponseSuccess
|
|
2439
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
|
+
|
|
2440
3119
|
interface _ListDefaultVocabulariesResponseSuccess
|
|
2441
3120
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListDefaultVocabulariesResponse]
|
|
2442
3121
|
def default_vocabulary_list: () -> ::Array[Types::DefaultVocabulary]
|
|
@@ -2451,6 +3130,21 @@ module Aws
|
|
|
2451
3130
|
) -> _ListDefaultVocabulariesResponseSuccess
|
|
2452
3131
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDefaultVocabulariesResponseSuccess
|
|
2453
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
|
+
|
|
2454
3148
|
interface _ListEvaluationFormVersionsResponseSuccess
|
|
2455
3149
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListEvaluationFormVersionsResponse]
|
|
2456
3150
|
def evaluation_form_version_summary_list: () -> ::Array[Types::EvaluationFormVersionSummary]
|
|
@@ -2568,7 +3262,7 @@ module Aws
|
|
|
2568
3262
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_integration_associations-instance_method
|
|
2569
3263
|
def list_integration_associations: (
|
|
2570
3264
|
instance_id: ::String,
|
|
2571
|
-
?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"),
|
|
2572
3266
|
?next_token: ::String,
|
|
2573
3267
|
?max_results: ::Integer,
|
|
2574
3268
|
?integration_arn: ::String
|
|
@@ -2699,7 +3393,7 @@ module Aws
|
|
|
2699
3393
|
instance_id: ::String,
|
|
2700
3394
|
?next_token: ::String,
|
|
2701
3395
|
?max_results: ::Integer,
|
|
2702
|
-
?quick_connect_types: Array[("USER" | "QUEUE" | "PHONE_NUMBER")]
|
|
3396
|
+
?quick_connect_types: Array[("USER" | "QUEUE" | "PHONE_NUMBER" | "FLOW")]
|
|
2703
3397
|
) -> _ListQuickConnectsResponseSuccess
|
|
2704
3398
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListQuickConnectsResponseSuccess
|
|
2705
3399
|
|
|
@@ -2810,6 +3504,22 @@ module Aws
|
|
|
2810
3504
|
) -> _ListSecurityProfileApplicationsResponseSuccess
|
|
2811
3505
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSecurityProfileApplicationsResponseSuccess
|
|
2812
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
|
+
|
|
2813
3523
|
interface _ListSecurityProfilePermissionsResponseSuccess
|
|
2814
3524
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListSecurityProfilePermissionsResponse]
|
|
2815
3525
|
def permissions: () -> ::Array[::String]
|
|
@@ -2974,6 +3684,44 @@ module Aws
|
|
|
2974
3684
|
) -> _ListViewsResponseSuccess
|
|
2975
3685
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListViewsResponseSuccess
|
|
2976
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
|
+
|
|
2977
3725
|
interface _MonitorContactResponseSuccess
|
|
2978
3726
|
include ::Seahorse::Client::_ResponseSuccess[Types::MonitorContactResponse]
|
|
2979
3727
|
def contact_id: () -> ::String
|
|
@@ -3282,6 +4030,39 @@ module Aws
|
|
|
3282
4030
|
tag_key: ::String?,
|
|
3283
4031
|
tag_value: ::String?
|
|
3284
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
|
+
}?
|
|
3285
4066
|
}?
|
|
3286
4067
|
},
|
|
3287
4068
|
?search_criteria: {
|
|
@@ -3399,6 +4180,59 @@ module Aws
|
|
|
3399
4180
|
) -> _SearchContactsResponseSuccess
|
|
3400
4181
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchContactsResponseSuccess
|
|
3401
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
|
+
|
|
3402
4236
|
interface _SearchEmailAddressesResponseSuccess
|
|
3403
4237
|
include ::Seahorse::Client::_ResponseSuccess[Types::SearchEmailAddressesResponse]
|
|
3404
4238
|
def next_token: () -> ::String
|
|
@@ -4075,6 +4909,61 @@ module Aws
|
|
|
4075
4909
|
) -> _SearchUsersResponseSuccess
|
|
4076
4910
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchUsersResponseSuccess
|
|
4077
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
|
+
|
|
4078
4967
|
interface _SearchVocabulariesResponseSuccess
|
|
4079
4968
|
include ::Seahorse::Client::_ResponseSuccess[Types::SearchVocabulariesResponse]
|
|
4080
4969
|
def vocabulary_summary_list: () -> ::Array[Types::VocabularySummary]
|
|
@@ -4091,6 +4980,112 @@ module Aws
|
|
|
4091
4980
|
) -> _SearchVocabulariesResponseSuccess
|
|
4092
4981
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchVocabulariesResponseSuccess
|
|
4093
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
|
+
|
|
4094
5089
|
interface _SendChatIntegrationEventResponseSuccess
|
|
4095
5090
|
include ::Seahorse::Client::_ResponseSuccess[Types::SendChatIntegrationEventResponse]
|
|
4096
5091
|
def initial_contact_id: () -> ::String
|
|
@@ -4207,6 +5202,9 @@ module Aws
|
|
|
4207
5202
|
participant_details: {
|
|
4208
5203
|
display_name: ::String
|
|
4209
5204
|
},
|
|
5205
|
+
?participant_configuration: {
|
|
5206
|
+
response_mode: ("INCREMENTAL" | "COMPLETE")?
|
|
5207
|
+
},
|
|
4210
5208
|
?initial_message: {
|
|
4211
5209
|
content_type: ::String,
|
|
4212
5210
|
content: ::String
|
|
@@ -4250,6 +5248,18 @@ module Aws
|
|
|
4250
5248
|
) -> _StartContactEvaluationResponseSuccess
|
|
4251
5249
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartContactEvaluationResponseSuccess
|
|
4252
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
|
+
|
|
4253
5263
|
interface _StartContactRecordingResponseSuccess
|
|
4254
5264
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartContactRecordingResponse]
|
|
4255
5265
|
end
|
|
@@ -4295,7 +5305,7 @@ module Aws
|
|
|
4295
5305
|
?description: ::String,
|
|
4296
5306
|
?references: Hash[::String, {
|
|
4297
5307
|
value: ::String?,
|
|
4298
|
-
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"),
|
|
4299
5309
|
status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
|
|
4300
5310
|
arn: ::String?,
|
|
4301
5311
|
status_reason: ::String?
|
|
@@ -4440,7 +5450,7 @@ module Aws
|
|
|
4440
5450
|
?description: ::String,
|
|
4441
5451
|
?references: Hash[::String, {
|
|
4442
5452
|
value: ::String?,
|
|
4443
|
-
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"),
|
|
4444
5454
|
status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
|
|
4445
5455
|
arn: ::String?,
|
|
4446
5456
|
status_reason: ::String?
|
|
@@ -4500,7 +5510,7 @@ module Aws
|
|
|
4500
5510
|
name: ::String,
|
|
4501
5511
|
?references: Hash[::String, {
|
|
4502
5512
|
value: ::String?,
|
|
4503
|
-
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"),
|
|
4504
5514
|
status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
|
|
4505
5515
|
arn: ::String?,
|
|
4506
5516
|
status_reason: ::String?
|
|
@@ -4552,7 +5562,7 @@ module Aws
|
|
|
4552
5562
|
?related_contact_id: ::String,
|
|
4553
5563
|
?references: Hash[::String, {
|
|
4554
5564
|
value: ::String?,
|
|
4555
|
-
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"),
|
|
4556
5566
|
status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
|
|
4557
5567
|
arn: ::String?,
|
|
4558
5568
|
status_reason: ::String?
|
|
@@ -4574,6 +5584,16 @@ module Aws
|
|
|
4574
5584
|
) -> _StopContactResponseSuccess
|
|
4575
5585
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopContactResponseSuccess
|
|
4576
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
|
+
|
|
4577
5597
|
interface _StopContactRecordingResponseSuccess
|
|
4578
5598
|
include ::Seahorse::Client::_ResponseSuccess[Types::StopContactRecordingResponse]
|
|
4579
5599
|
end
|
|
@@ -4610,6 +5630,8 @@ module Aws
|
|
|
4610
5630
|
value: {
|
|
4611
5631
|
string_value: ::String?,
|
|
4612
5632
|
numeric_value: ::Float?,
|
|
5633
|
+
string_values: Array[::String]?,
|
|
5634
|
+
date_time_value: ::String?,
|
|
4613
5635
|
not_applicable: bool?
|
|
4614
5636
|
}?
|
|
4615
5637
|
}],
|
|
@@ -4723,7 +5745,7 @@ module Aws
|
|
|
4723
5745
|
?description: ::String,
|
|
4724
5746
|
?references: Hash[::String, {
|
|
4725
5747
|
value: ::String?,
|
|
4726
|
-
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"),
|
|
4727
5749
|
status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
|
|
4728
5750
|
arn: ::String?,
|
|
4729
5751
|
status_reason: ::String?
|
|
@@ -4778,6 +5800,8 @@ module Aws
|
|
|
4778
5800
|
value: {
|
|
4779
5801
|
string_value: ::String?,
|
|
4780
5802
|
numeric_value: ::Float?,
|
|
5803
|
+
string_values: Array[::String]?,
|
|
5804
|
+
date_time_value: ::String?,
|
|
4781
5805
|
not_applicable: bool?
|
|
4782
5806
|
}?
|
|
4783
5807
|
}],
|
|
@@ -4814,6 +5838,20 @@ module Aws
|
|
|
4814
5838
|
) -> _UpdateContactFlowMetadataResponseSuccess
|
|
4815
5839
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactFlowMetadataResponseSuccess
|
|
4816
5840
|
|
|
5841
|
+
interface _UpdateContactFlowModuleAliasResponseSuccess
|
|
5842
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateContactFlowModuleAliasResponse]
|
|
5843
|
+
end
|
|
5844
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_contact_flow_module_alias-instance_method
|
|
5845
|
+
def update_contact_flow_module_alias: (
|
|
5846
|
+
instance_id: ::String,
|
|
5847
|
+
contact_flow_module_id: ::String,
|
|
5848
|
+
alias_id: ::String,
|
|
5849
|
+
?name: ::String,
|
|
5850
|
+
?description: ::String,
|
|
5851
|
+
?contact_flow_module_version: ::Integer
|
|
5852
|
+
) -> _UpdateContactFlowModuleAliasResponseSuccess
|
|
5853
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactFlowModuleAliasResponseSuccess
|
|
5854
|
+
|
|
4817
5855
|
interface _UpdateContactFlowModuleContentResponseSuccess
|
|
4818
5856
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateContactFlowModuleContentResponse]
|
|
4819
5857
|
end
|
|
@@ -4821,7 +5859,8 @@ module Aws
|
|
|
4821
5859
|
def update_contact_flow_module_content: (
|
|
4822
5860
|
instance_id: ::String,
|
|
4823
5861
|
contact_flow_module_id: ::String,
|
|
4824
|
-
content: ::String
|
|
5862
|
+
?content: ::String,
|
|
5863
|
+
?settings: ::String
|
|
4825
5864
|
) -> _UpdateContactFlowModuleContentResponseSuccess
|
|
4826
5865
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactFlowModuleContentResponseSuccess
|
|
4827
5866
|
|
|
@@ -4920,6 +5959,83 @@ module Aws
|
|
|
4920
5959
|
) -> _UpdateContactScheduleResponseSuccess
|
|
4921
5960
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactScheduleResponseSuccess
|
|
4922
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
|
+
|
|
4923
6039
|
interface _UpdateEmailAddressMetadataResponseSuccess
|
|
4924
6040
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEmailAddressMetadataResponse]
|
|
4925
6041
|
def email_address_id: () -> ::String
|
|
@@ -4963,7 +6079,7 @@ module Aws
|
|
|
4963
6079
|
instructions: ::String?,
|
|
4964
6080
|
ref_id: ::String,
|
|
4965
6081
|
not_applicable_enabled: bool?,
|
|
4966
|
-
question_type: ("TEXT" | "SINGLESELECT" | "NUMERIC"),
|
|
6082
|
+
question_type: ("TEXT" | "SINGLESELECT" | "NUMERIC" | "MULTISELECT" | "DATETIME"),
|
|
4967
6083
|
question_type_properties: {
|
|
4968
6084
|
numeric: {
|
|
4969
6085
|
min_value: ::Integer,
|
|
@@ -4981,7 +6097,7 @@ module Aws
|
|
|
4981
6097
|
]?,
|
|
4982
6098
|
automation: {
|
|
4983
6099
|
property_value: {
|
|
4984
|
-
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")
|
|
4985
6101
|
}?,
|
|
4986
6102
|
answer_source: {
|
|
4987
6103
|
source_type: ("CONTACT_LENS_DATA" | "GEN_AI")
|
|
@@ -5023,6 +6139,30 @@ module Aws
|
|
|
5023
6139
|
source_type: ("CONTACT_LENS_DATA" | "GEN_AI")
|
|
5024
6140
|
}?
|
|
5025
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
|
+
}?
|
|
5026
6166
|
}?
|
|
5027
6167
|
}?,
|
|
5028
6168
|
enablement: {
|
|
@@ -5040,7 +6180,7 @@ module Aws
|
|
|
5040
6180
|
ref_id: ::String?
|
|
5041
6181
|
},
|
|
5042
6182
|
],
|
|
5043
|
-
comparator: ("IN" | "NOT_IN")
|
|
6183
|
+
comparator: ("IN" | "NOT_IN" | "ALL_IN" | "EXACT")
|
|
5044
6184
|
}?,
|
|
5045
6185
|
condition: untyped?
|
|
5046
6186
|
},
|
|
@@ -5061,7 +6201,14 @@ module Aws
|
|
|
5061
6201
|
?auto_evaluation_configuration: {
|
|
5062
6202
|
enabled: bool
|
|
5063
6203
|
},
|
|
5064
|
-
?
|
|
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
|
+
}
|
|
5065
6212
|
) -> _UpdateEvaluationFormResponseSuccess
|
|
5066
6213
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEvaluationFormResponseSuccess
|
|
5067
6214
|
|
|
@@ -5116,7 +6263,7 @@ module Aws
|
|
|
5116
6263
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_instance_attribute-instance_method
|
|
5117
6264
|
def update_instance_attribute: (
|
|
5118
6265
|
instance_id: ::String,
|
|
5119
|
-
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"),
|
|
5120
6267
|
value: ::String,
|
|
5121
6268
|
?client_token: ::String
|
|
5122
6269
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
@@ -5305,7 +6452,7 @@ module Aws
|
|
|
5305
6452
|
instance_id: ::String,
|
|
5306
6453
|
quick_connect_id: ::String,
|
|
5307
6454
|
quick_connect_config: {
|
|
5308
|
-
quick_connect_type: ("USER" | "QUEUE" | "PHONE_NUMBER"),
|
|
6455
|
+
quick_connect_type: ("USER" | "QUEUE" | "PHONE_NUMBER" | "FLOW"),
|
|
5309
6456
|
user_config: {
|
|
5310
6457
|
user_id: ::String,
|
|
5311
6458
|
contact_flow_id: ::String
|
|
@@ -5316,6 +6463,9 @@ module Aws
|
|
|
5316
6463
|
}?,
|
|
5317
6464
|
phone_config: {
|
|
5318
6465
|
phone_number: ::String
|
|
6466
|
+
}?,
|
|
6467
|
+
flow_config: {
|
|
6468
|
+
contact_flow_id: ::String
|
|
5319
6469
|
}?
|
|
5320
6470
|
}
|
|
5321
6471
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
@@ -5403,7 +6553,7 @@ module Aws
|
|
|
5403
6553
|
contact_flow_id: ::String,
|
|
5404
6554
|
references: Hash[::String, {
|
|
5405
6555
|
value: ::String?,
|
|
5406
|
-
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"),
|
|
5407
6557
|
status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
|
|
5408
6558
|
arn: ::String?,
|
|
5409
6559
|
status_reason: ::String?
|
|
@@ -5497,11 +6647,31 @@ module Aws
|
|
|
5497
6647
|
?applications: Array[
|
|
5498
6648
|
{
|
|
5499
6649
|
namespace: ::String?,
|
|
5500
|
-
application_permissions: Array[::String]
|
|
6650
|
+
application_permissions: Array[::String]?,
|
|
6651
|
+
type: ("MCP" | "THIRD_PARTY_APPLICATION")?
|
|
5501
6652
|
},
|
|
5502
6653
|
],
|
|
5503
6654
|
?hierarchy_restricted_resources: Array[::String],
|
|
5504
|
-
?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
|
+
}
|
|
5505
6675
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
5506
6676
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
5507
6677
|
|
|
@@ -5733,6 +6903,137 @@ module Aws
|
|
|
5733
6903
|
?description: ::String
|
|
5734
6904
|
) -> _UpdateViewMetadataResponseSuccess
|
|
5735
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
|
|
5736
7037
|
end
|
|
5737
7038
|
end
|
|
5738
7039
|
end
|