aws-sdk-connect 1.184.0 → 1.186.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs CHANGED
@@ -143,7 +143,7 @@ module Aws
143
143
  instance_id: ::String,
144
144
  resource_id: ::String,
145
145
  flow_id: ::String,
146
- resource_type: ("SMS_PHONE_NUMBER")
146
+ resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
147
147
  ) -> _AssociateFlowResponseSuccess
148
148
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateFlowResponseSuccess
149
149
 
@@ -154,7 +154,7 @@ module Aws
154
154
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#associate_instance_storage_config-instance_method
155
155
  def associate_instance_storage_config: (
156
156
  instance_id: ::String,
157
- resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS"),
157
+ resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS" | "EMAIL_MESSAGES"),
158
158
  storage_config: {
159
159
  association_id: ::String?,
160
160
  storage_type: ("S3" | "KINESIS_VIDEO_STREAM" | "KINESIS_STREAM" | "KINESIS_FIREHOSE"),
@@ -225,7 +225,7 @@ module Aws
225
225
  {
226
226
  queue_reference: {
227
227
  queue_id: ::String,
228
- channel: ("VOICE" | "CHAT" | "TASK")
228
+ channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL")
229
229
  },
230
230
  priority: ::Integer,
231
231
  delay: ::Integer
@@ -317,7 +317,7 @@ module Aws
317
317
  def batch_get_flow_association: (
318
318
  instance_id: ::String,
319
319
  resource_ids: Array[::String],
320
- ?resource_type: ("VOICE_PHONE_NUMBER")
320
+ ?resource_type: ("VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
321
321
  ) -> _BatchGetFlowAssociationResponseSuccess
322
322
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetFlowAssociationResponseSuccess
323
323
 
@@ -333,11 +333,11 @@ module Aws
333
333
  contact_data_request_list: Array[
334
334
  {
335
335
  system_endpoint: {
336
- type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN")?,
336
+ type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN" | "EMAIL_ADDRESS")?,
337
337
  address: ::String?
338
338
  }?,
339
339
  customer_endpoint: {
340
- type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN")?,
340
+ type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN" | "EMAIL_ADDRESS")?,
341
341
  address: ::String?
342
342
  }?,
343
343
  request_identifier: ::String?,
@@ -394,10 +394,44 @@ module Aws
394
394
  ) -> _CreateAgentStatusResponseSuccess
395
395
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAgentStatusResponseSuccess
396
396
 
397
+ interface _CreateContactResponseSuccess
398
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateContactResponse]
399
+ def contact_id: () -> ::String
400
+ def contact_arn: () -> ::String
401
+ end
402
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_contact-instance_method
403
+ def create_contact: (
404
+ instance_id: ::String,
405
+ ?client_token: ::String,
406
+ ?related_contact_id: ::String,
407
+ ?attributes: Hash[::String, ::String],
408
+ ?references: Hash[::String, {
409
+ value: ::String?,
410
+ type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
411
+ status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
412
+ arn: ::String?,
413
+ status_reason: ::String?
414
+ }],
415
+ channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL"),
416
+ initiation_method: ("INBOUND" | "OUTBOUND" | "TRANSFER" | "QUEUE_TRANSFER" | "CALLBACK" | "API" | "DISCONNECT" | "MONITOR" | "EXTERNAL_OUTBOUND" | "WEBRTC_API" | "AGENT_REPLY" | "FLOW"),
417
+ ?expiry_duration_in_minutes: ::Integer,
418
+ ?user_info: {
419
+ user_id: ::String?
420
+ },
421
+ ?initiate_as: ("CONNECTED_TO_USER"),
422
+ ?name: ::String,
423
+ ?description: ::String,
424
+ ?segment_attributes: Hash[::String, {
425
+ value_string: ::String?
426
+ }]
427
+ ) -> _CreateContactResponseSuccess
428
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactResponseSuccess
429
+
397
430
  interface _CreateContactFlowResponseSuccess
398
431
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateContactFlowResponse]
399
432
  def contact_flow_id: () -> ::String
400
433
  def contact_flow_arn: () -> ::String
434
+ def flow_content_sha_256: () -> ::String
401
435
  end
402
436
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_contact_flow-instance_method
403
437
  def create_contact_flow: (
@@ -427,6 +461,38 @@ module Aws
427
461
  ) -> _CreateContactFlowModuleResponseSuccess
428
462
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactFlowModuleResponseSuccess
429
463
 
464
+ interface _CreateContactFlowVersionResponseSuccess
465
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateContactFlowVersionResponse]
466
+ def contact_flow_arn: () -> ::String
467
+ def version: () -> ::Integer
468
+ end
469
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_contact_flow_version-instance_method
470
+ def create_contact_flow_version: (
471
+ instance_id: ::String,
472
+ ?description: ::String,
473
+ contact_flow_id: ::String,
474
+ ?flow_content_sha_256: ::String,
475
+ ?last_modified_time: ::Time,
476
+ ?last_modified_region: ::String
477
+ ) -> _CreateContactFlowVersionResponseSuccess
478
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactFlowVersionResponseSuccess
479
+
480
+ interface _CreateEmailAddressResponseSuccess
481
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateEmailAddressResponse]
482
+ def email_address_id: () -> ::String
483
+ def email_address_arn: () -> ::String
484
+ end
485
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_email_address-instance_method
486
+ def create_email_address: (
487
+ ?description: ::String,
488
+ instance_id: ::String,
489
+ email_address: ::String,
490
+ ?display_name: ::String,
491
+ ?tags: Hash[::String, ::String],
492
+ ?client_token: ::String
493
+ ) -> _CreateEmailAddressResponseSuccess
494
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEmailAddressResponseSuccess
495
+
430
496
  interface _CreateEvaluationFormResponseSuccess
431
497
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateEvaluationFormResponse]
432
498
  def evaluation_form_id: () -> ::String
@@ -559,7 +625,7 @@ module Aws
559
625
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_integration_association-instance_method
560
626
  def create_integration_association: (
561
627
  instance_id: ::String,
562
- integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER"),
628
+ 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"),
563
629
  integration_arn: ::String,
564
630
  ?source_application_url: ::String,
565
631
  ?source_application_name: ::String,
@@ -639,6 +705,9 @@ module Aws
639
705
  outbound_caller_id_number_id: ::String?,
640
706
  outbound_flow_id: ::String?
641
707
  },
708
+ ?outbound_email_config: {
709
+ outbound_email_address_id: ::String?
710
+ },
642
711
  hours_of_operation_id: ::String,
643
712
  ?max_contacts: ::Integer,
644
713
  ?quick_connect_ids: Array[::String],
@@ -689,7 +758,7 @@ module Aws
689
758
  {
690
759
  queue_reference: {
691
760
  queue_id: ::String,
692
- channel: ("VOICE" | "CHAT" | "TASK")
761
+ channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL")
693
762
  },
694
763
  priority: ::Integer,
695
764
  delay: ::Integer
@@ -697,7 +766,7 @@ module Aws
697
766
  ],
698
767
  media_concurrencies: Array[
699
768
  {
700
- channel: ("VOICE" | "CHAT" | "TASK"),
769
+ channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL"),
701
770
  concurrency: ::Integer,
702
771
  cross_channel_behavior: {
703
772
  behavior_type: ("ROUTE_CURRENT_CHANNEL_ONLY" | "ROUTE_ANY_CHANNEL")
@@ -731,8 +800,11 @@ module Aws
731
800
  description: ::String?,
732
801
  contact_flow_id: ::String,
733
802
  references: Hash[::String, {
734
- value: ::String,
735
- type: ("URL" | "ATTACHMENT" | "NUMBER" | "STRING" | "DATE" | "EMAIL")
803
+ value: ::String?,
804
+ type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
805
+ status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
806
+ arn: ::String?,
807
+ status_reason: ::String?
736
808
  }]?
737
809
  }?,
738
810
  event_bridge_action: {
@@ -827,6 +899,7 @@ module Aws
827
899
  name: ::String,
828
900
  ?description: ::String,
829
901
  ?contact_flow_id: ::String,
902
+ ?self_assign_flow_id: ::String,
830
903
  ?constraints: {
831
904
  required_fields: Array[
832
905
  {
@@ -867,7 +940,7 @@ module Aws
867
940
  name: ::String?
868
941
  },
869
942
  description: ::String?,
870
- type: ("NAME" | "DESCRIPTION" | "SCHEDULED_TIME" | "QUICK_CONNECT" | "URL" | "NUMBER" | "TEXT" | "TEXT_AREA" | "DATE_TIME" | "BOOLEAN" | "SINGLE_SELECT" | "EMAIL")?,
943
+ type: ("NAME" | "DESCRIPTION" | "SCHEDULED_TIME" | "QUICK_CONNECT" | "URL" | "NUMBER" | "TEXT" | "TEXT_AREA" | "DATE_TIME" | "BOOLEAN" | "SINGLE_SELECT" | "EMAIL" | "SELF_ASSIGN" | "EXPIRY_DURATION")?,
871
944
  single_select_options: Array[::String]?
872
945
  },
873
946
  ],
@@ -1050,6 +1123,16 @@ module Aws
1050
1123
  ) -> _DeleteContactFlowModuleResponseSuccess
1051
1124
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteContactFlowModuleResponseSuccess
1052
1125
 
1126
+ interface _DeleteEmailAddressResponseSuccess
1127
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEmailAddressResponse]
1128
+ end
1129
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_email_address-instance_method
1130
+ def delete_email_address: (
1131
+ instance_id: ::String,
1132
+ email_address_id: ::String
1133
+ ) -> _DeleteEmailAddressResponseSuccess
1134
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEmailAddressResponseSuccess
1135
+
1053
1136
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_evaluation_form-instance_method
1054
1137
  def delete_evaluation_form: (
1055
1138
  instance_id: ::String,
@@ -1269,6 +1352,24 @@ module Aws
1269
1352
  ) -> _DescribeContactFlowModuleResponseSuccess
1270
1353
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeContactFlowModuleResponseSuccess
1271
1354
 
1355
+ interface _DescribeEmailAddressResponseSuccess
1356
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEmailAddressResponse]
1357
+ def email_address_id: () -> ::String
1358
+ def email_address_arn: () -> ::String
1359
+ def email_address: () -> ::String
1360
+ def display_name: () -> ::String
1361
+ def description: () -> ::String
1362
+ def create_timestamp: () -> ::String
1363
+ def modified_timestamp: () -> ::String
1364
+ def tags: () -> ::Hash[::String, ::String]
1365
+ end
1366
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_email_address-instance_method
1367
+ def describe_email_address: (
1368
+ instance_id: ::String,
1369
+ email_address_id: ::String
1370
+ ) -> _DescribeEmailAddressResponseSuccess
1371
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEmailAddressResponseSuccess
1372
+
1272
1373
  interface _DescribeEvaluationFormResponseSuccess
1273
1374
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEvaluationFormResponse]
1274
1375
  def evaluation_form: () -> Types::EvaluationForm
@@ -1322,7 +1423,7 @@ module Aws
1322
1423
  def describe_instance_storage_config: (
1323
1424
  instance_id: ::String,
1324
1425
  association_id: ::String,
1325
- resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS")
1426
+ resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS" | "EMAIL_MESSAGES")
1326
1427
  ) -> _DescribeInstanceStorageConfigResponseSuccess
1327
1428
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInstanceStorageConfigResponseSuccess
1328
1429
 
@@ -1512,7 +1613,7 @@ module Aws
1512
1613
  def disassociate_flow: (
1513
1614
  instance_id: ::String,
1514
1615
  resource_id: ::String,
1515
- resource_type: ("SMS_PHONE_NUMBER")
1616
+ resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
1516
1617
  ) -> _DisassociateFlowResponseSuccess
1517
1618
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateFlowResponseSuccess
1518
1619
 
@@ -1520,7 +1621,7 @@ module Aws
1520
1621
  def disassociate_instance_storage_config: (
1521
1622
  instance_id: ::String,
1522
1623
  association_id: ::String,
1523
- resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS")
1624
+ resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS" | "EMAIL_MESSAGES")
1524
1625
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1525
1626
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1526
1627
 
@@ -1561,7 +1662,7 @@ module Aws
1561
1662
  queue_references: Array[
1562
1663
  {
1563
1664
  queue_id: ::String,
1564
- channel: ("VOICE" | "CHAT" | "TASK")
1665
+ channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL")
1565
1666
  },
1566
1667
  ]
1567
1668
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
@@ -1618,7 +1719,7 @@ module Aws
1618
1719
  def file_name: () -> ::String
1619
1720
  def file_size_in_bytes: () -> ::Integer
1620
1721
  def associated_resource_arn: () -> ::String
1621
- def file_use_case_type: () -> ("ATTACHMENT")
1722
+ def file_use_case_type: () -> ("EMAIL_MESSAGE" | "ATTACHMENT")
1622
1723
  def created_by: () -> Types::CreatedByInfo
1623
1724
  def download_url_metadata: () -> Types::DownloadUrlMetadata
1624
1725
  def tags: () -> ::Hash[::String, ::String]
@@ -1655,7 +1756,7 @@ module Aws
1655
1756
  instance_id: ::String,
1656
1757
  filters: {
1657
1758
  queues: Array[::String]?,
1658
- channels: Array[("VOICE" | "CHAT" | "TASK")]?,
1759
+ channels: Array[("VOICE" | "CHAT" | "TASK" | "EMAIL")]?,
1659
1760
  routing_profiles: Array[::String]?,
1660
1761
  routing_step_expressions: Array[::String]?
1661
1762
  },
@@ -1717,13 +1818,13 @@ module Aws
1717
1818
  include ::Seahorse::Client::_ResponseSuccess[Types::GetFlowAssociationResponse]
1718
1819
  def resource_id: () -> ::String
1719
1820
  def flow_id: () -> ::String
1720
- def resource_type: () -> ("SMS_PHONE_NUMBER")
1821
+ def resource_type: () -> ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
1721
1822
  end
1722
1823
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#get_flow_association-instance_method
1723
1824
  def get_flow_association: (
1724
1825
  instance_id: ::String,
1725
1826
  resource_id: ::String,
1726
- resource_type: ("SMS_PHONE_NUMBER")
1827
+ resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
1727
1828
  ) -> _GetFlowAssociationResponseSuccess
1728
1829
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFlowAssociationResponseSuccess
1729
1830
 
@@ -1739,7 +1840,7 @@ module Aws
1739
1840
  end_time: ::Time,
1740
1841
  filters: {
1741
1842
  queues: Array[::String]?,
1742
- channels: Array[("VOICE" | "CHAT" | "TASK")]?,
1843
+ channels: Array[("VOICE" | "CHAT" | "TASK" | "EMAIL")]?,
1743
1844
  routing_profiles: Array[::String]?,
1744
1845
  routing_step_expressions: Array[::String]?
1745
1846
  },
@@ -1825,6 +1926,7 @@ module Aws
1825
1926
  def name: () -> ::String
1826
1927
  def description: () -> ::String
1827
1928
  def contact_flow_id: () -> ::String
1929
+ def self_assign_flow_id: () -> ::String
1828
1930
  def constraints: () -> Types::TaskTemplateConstraints
1829
1931
  def defaults: () -> Types::TaskTemplateDefaults
1830
1932
  def fields: () -> ::Array[Types::TaskTemplateField]
@@ -1911,6 +2013,20 @@ module Aws
1911
2013
  ) -> _ListApprovedOriginsResponseSuccess
1912
2014
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApprovedOriginsResponseSuccess
1913
2015
 
2016
+ interface _ListAssociatedContactsResponseSuccess
2017
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAssociatedContactsResponse]
2018
+ def contact_summary_list: () -> ::Array[Types::AssociatedContactSummary]
2019
+ def next_token: () -> ::String
2020
+ end
2021
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_associated_contacts-instance_method
2022
+ def list_associated_contacts: (
2023
+ instance_id: ::String,
2024
+ contact_id: ::String,
2025
+ ?max_results: ::Integer,
2026
+ ?next_token: ::String
2027
+ ) -> _ListAssociatedContactsResponseSuccess
2028
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssociatedContactsResponseSuccess
2029
+
1914
2030
  interface _ListAuthenticationProfilesResponseSuccess
1915
2031
  include ::Seahorse::Client::_ResponseSuccess[Types::ListAuthenticationProfilesResponse]
1916
2032
  def authentication_profile_summary_list: () -> ::Array[Types::AuthenticationProfileSummary]
@@ -1965,6 +2081,20 @@ module Aws
1965
2081
  ) -> _ListContactFlowModulesResponseSuccess
1966
2082
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContactFlowModulesResponseSuccess
1967
2083
 
2084
+ interface _ListContactFlowVersionsResponseSuccess
2085
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListContactFlowVersionsResponse]
2086
+ def contact_flow_version_summary_list: () -> ::Array[Types::ContactFlowVersionSummary]
2087
+ def next_token: () -> ::String
2088
+ end
2089
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_contact_flow_versions-instance_method
2090
+ def list_contact_flow_versions: (
2091
+ instance_id: ::String,
2092
+ contact_flow_id: ::String,
2093
+ ?next_token: ::String,
2094
+ ?max_results: ::Integer
2095
+ ) -> _ListContactFlowVersionsResponseSuccess
2096
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContactFlowVersionsResponseSuccess
2097
+
1968
2098
  interface _ListContactFlowsResponseSuccess
1969
2099
  include ::Seahorse::Client::_ResponseSuccess[Types::ListContactFlowsResponse]
1970
2100
  def contact_flow_summary_list: () -> ::Array[Types::ContactFlowSummary]
@@ -1988,7 +2118,7 @@ module Aws
1988
2118
  def list_contact_references: (
1989
2119
  instance_id: ::String,
1990
2120
  contact_id: ::String,
1991
- reference_types: Array[("URL" | "ATTACHMENT" | "NUMBER" | "STRING" | "DATE" | "EMAIL")],
2121
+ reference_types: Array[("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE")],
1992
2122
  ?next_token: ::String
1993
2123
  ) -> _ListContactReferencesResponseSuccess
1994
2124
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContactReferencesResponseSuccess
@@ -2042,7 +2172,7 @@ module Aws
2042
2172
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_flow_associations-instance_method
2043
2173
  def list_flow_associations: (
2044
2174
  instance_id: ::String,
2045
- ?resource_type: ("VOICE_PHONE_NUMBER"),
2175
+ ?resource_type: ("VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL"),
2046
2176
  ?next_token: ::String,
2047
2177
  ?max_results: ::Integer
2048
2178
  ) -> _ListFlowAssociationsResponseSuccess
@@ -2082,7 +2212,7 @@ module Aws
2082
2212
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_instance_storage_configs-instance_method
2083
2213
  def list_instance_storage_configs: (
2084
2214
  instance_id: ::String,
2085
- resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS"),
2215
+ resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS" | "EMAIL_MESSAGES"),
2086
2216
  ?next_token: ::String,
2087
2217
  ?max_results: ::Integer
2088
2218
  ) -> _ListInstanceStorageConfigsResponseSuccess
@@ -2108,7 +2238,7 @@ module Aws
2108
2238
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_integration_associations-instance_method
2109
2239
  def list_integration_associations: (
2110
2240
  instance_id: ::String,
2111
- ?integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER"),
2241
+ ?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"),
2112
2242
  ?next_token: ::String,
2113
2243
  ?max_results: ::Integer,
2114
2244
  ?integration_arn: ::String
@@ -2772,7 +2902,7 @@ module Aws
2772
2902
  l4_ids: Array[::String]?,
2773
2903
  l5_ids: Array[::String]?
2774
2904
  }?,
2775
- channels: Array[("VOICE" | "CHAT" | "TASK")]?,
2905
+ channels: Array[("VOICE" | "CHAT" | "TASK" | "EMAIL")]?,
2776
2906
  contact_analysis: {
2777
2907
  transcript: {
2778
2908
  criteria: Array[
@@ -2785,7 +2915,7 @@ module Aws
2785
2915
  match_type: ("MATCH_ALL" | "MATCH_ANY")?
2786
2916
  }?
2787
2917
  }?,
2788
- initiation_methods: Array[("INBOUND" | "OUTBOUND" | "TRANSFER" | "QUEUE_TRANSFER" | "CALLBACK" | "API" | "DISCONNECT" | "MONITOR" | "EXTERNAL_OUTBOUND")]?,
2918
+ initiation_methods: Array[("INBOUND" | "OUTBOUND" | "TRANSFER" | "QUEUE_TRANSFER" | "CALLBACK" | "API" | "DISCONNECT" | "MONITOR" | "EXTERNAL_OUTBOUND" | "WEBRTC_API" | "AGENT_REPLY" | "FLOW")]?,
2789
2919
  queue_ids: Array[::String]?,
2790
2920
  searchable_contact_attributes: {
2791
2921
  criteria: Array[
@@ -2795,6 +2925,15 @@ module Aws
2795
2925
  },
2796
2926
  ],
2797
2927
  match_type: ("MATCH_ALL" | "MATCH_ANY")?
2928
+ }?,
2929
+ searchable_segment_attributes: {
2930
+ criteria: Array[
2931
+ {
2932
+ key: ::String,
2933
+ values: Array[::String]
2934
+ },
2935
+ ],
2936
+ match_type: ("MATCH_ALL" | "MATCH_ANY")?
2798
2937
  }?
2799
2938
  },
2800
2939
  ?max_results: ::Integer,
@@ -2806,6 +2945,55 @@ module Aws
2806
2945
  ) -> _SearchContactsResponseSuccess
2807
2946
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchContactsResponseSuccess
2808
2947
 
2948
+ interface _SearchEmailAddressesResponseSuccess
2949
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchEmailAddressesResponse]
2950
+ def next_token: () -> ::String
2951
+ def email_addresses: () -> ::Array[Types::EmailAddressMetadata]
2952
+ def approximate_total_count: () -> ::Integer
2953
+ end
2954
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#search_email_addresses-instance_method
2955
+ def search_email_addresses: (
2956
+ instance_id: ::String,
2957
+ ?max_results: ::Integer,
2958
+ ?next_token: ::String,
2959
+ ?search_criteria: {
2960
+ or_conditions: Array[
2961
+ untyped,
2962
+ ]?,
2963
+ and_conditions: Array[
2964
+ untyped,
2965
+ ]?,
2966
+ string_condition: {
2967
+ field_name: ::String?,
2968
+ value: ::String?,
2969
+ comparison_type: ("STARTS_WITH" | "CONTAINS" | "EXACT")?
2970
+ }?
2971
+ },
2972
+ ?search_filter: {
2973
+ tag_filter: {
2974
+ or_conditions: Array[
2975
+ Array[
2976
+ {
2977
+ tag_key: ::String?,
2978
+ tag_value: ::String?
2979
+ },
2980
+ ],
2981
+ ]?,
2982
+ and_conditions: Array[
2983
+ {
2984
+ tag_key: ::String?,
2985
+ tag_value: ::String?
2986
+ },
2987
+ ]?,
2988
+ tag_condition: {
2989
+ tag_key: ::String?,
2990
+ tag_value: ::String?
2991
+ }?
2992
+ }?
2993
+ }
2994
+ ) -> _SearchEmailAddressesResponseSuccess
2995
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchEmailAddressesResponseSuccess
2996
+
2809
2997
  interface _SearchHoursOfOperationsResponseSuccess
2810
2998
  include ::Seahorse::Client::_ResponseSuccess[Types::SearchHoursOfOperationsResponse]
2811
2999
  def hours_of_operations: () -> ::Array[Types::HoursOfOperation]
@@ -3354,6 +3542,53 @@ module Aws
3354
3542
  ) -> _SendChatIntegrationEventResponseSuccess
3355
3543
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendChatIntegrationEventResponseSuccess
3356
3544
 
3545
+ interface _SendOutboundEmailResponseSuccess
3546
+ include ::Seahorse::Client::_ResponseSuccess[Types::SendOutboundEmailResponse]
3547
+ end
3548
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#send_outbound_email-instance_method
3549
+ def send_outbound_email: (
3550
+ instance_id: ::String,
3551
+ from_email_address: {
3552
+ email_address: ::String,
3553
+ display_name: ::String?
3554
+ },
3555
+ destination_email_address: {
3556
+ email_address: ::String,
3557
+ display_name: ::String?
3558
+ },
3559
+ ?additional_recipients: {
3560
+ cc_email_addresses: Array[
3561
+ {
3562
+ email_address: ::String,
3563
+ display_name: ::String?
3564
+ },
3565
+ ]?
3566
+ },
3567
+ email_message: {
3568
+ message_source_type: ("TEMPLATE" | "RAW"),
3569
+ templated_message_config: {
3570
+ knowledge_base_id: ::String,
3571
+ message_template_id: ::String,
3572
+ template_attributes: {
3573
+ custom_attributes: Hash[::String, ::String]?,
3574
+ customer_profile_attributes: ::String?
3575
+ }
3576
+ }?,
3577
+ raw_message: {
3578
+ subject: ::String,
3579
+ body: ::String,
3580
+ content_type: ::String
3581
+ }?
3582
+ },
3583
+ traffic_type: ("GENERAL" | "CAMPAIGN"),
3584
+ ?source_campaign: {
3585
+ campaign_id: ::String?,
3586
+ outbound_request_id: ::String?
3587
+ },
3588
+ ?client_token: ::String
3589
+ ) -> _SendOutboundEmailResponseSuccess
3590
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendOutboundEmailResponseSuccess
3591
+
3357
3592
  interface _StartAttachedFileUploadResponseSuccess
3358
3593
  include ::Seahorse::Client::_ResponseSuccess[Types::StartAttachedFileUploadResponse]
3359
3594
  def file_arn: () -> ::String
@@ -3370,7 +3605,7 @@ module Aws
3370
3605
  file_name: ::String,
3371
3606
  file_size_in_bytes: ::Integer,
3372
3607
  ?url_expiry_in_seconds: ::Integer,
3373
- file_use_case_type: ("ATTACHMENT"),
3608
+ file_use_case_type: ("EMAIL_MESSAGE" | "ATTACHMENT"),
3374
3609
  associated_resource_arn: ::String,
3375
3610
  ?created_by: {
3376
3611
  connect_user_arn: ::String?,
@@ -3456,6 +3691,66 @@ module Aws
3456
3691
  ) -> _StartContactStreamingResponseSuccess
3457
3692
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartContactStreamingResponseSuccess
3458
3693
 
3694
+ interface _StartEmailContactResponseSuccess
3695
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartEmailContactResponse]
3696
+ def contact_id: () -> ::String
3697
+ end
3698
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#start_email_contact-instance_method
3699
+ def start_email_contact: (
3700
+ instance_id: ::String,
3701
+ from_email_address: {
3702
+ email_address: ::String,
3703
+ display_name: ::String?
3704
+ },
3705
+ destination_email_address: ::String,
3706
+ ?description: ::String,
3707
+ ?references: Hash[::String, {
3708
+ value: ::String?,
3709
+ type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
3710
+ status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
3711
+ arn: ::String?,
3712
+ status_reason: ::String?
3713
+ }],
3714
+ ?name: ::String,
3715
+ email_message: {
3716
+ message_source_type: ("RAW"),
3717
+ raw_message: {
3718
+ subject: ::String,
3719
+ body: ::String,
3720
+ content_type: ::String,
3721
+ headers: Hash[("REFERENCES" | "MESSAGE_ID" | "IN_REPLY_TO" | "X_SES_SPAM_VERDICT" | "X_SES_VIRUS_VERDICT"), ::String]?
3722
+ }?
3723
+ },
3724
+ ?additional_recipients: {
3725
+ to_addresses: Array[
3726
+ {
3727
+ email_address: ::String,
3728
+ display_name: ::String?
3729
+ },
3730
+ ]?,
3731
+ cc_addresses: Array[
3732
+ {
3733
+ email_address: ::String,
3734
+ display_name: ::String?
3735
+ },
3736
+ ]?
3737
+ },
3738
+ ?attachments: Array[
3739
+ {
3740
+ file_name: ::String,
3741
+ s3_url: ::String
3742
+ },
3743
+ ],
3744
+ ?contact_flow_id: ::String,
3745
+ ?related_contact_id: ::String,
3746
+ ?attributes: Hash[::String, ::String],
3747
+ ?segment_attributes: Hash[::String, {
3748
+ value_string: ::String?
3749
+ }],
3750
+ ?client_token: ::String
3751
+ ) -> _StartEmailContactResponseSuccess
3752
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartEmailContactResponseSuccess
3753
+
3459
3754
  interface _StartOutboundChatContactResponseSuccess
3460
3755
  include ::Seahorse::Client::_ResponseSuccess[Types::StartOutboundChatContactResponse]
3461
3756
  def contact_id: () -> ::String
@@ -3463,11 +3758,11 @@ module Aws
3463
3758
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#start_outbound_chat_contact-instance_method
3464
3759
  def start_outbound_chat_contact: (
3465
3760
  source_endpoint: {
3466
- type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN")?,
3761
+ type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN" | "EMAIL_ADDRESS")?,
3467
3762
  address: ::String?
3468
3763
  },
3469
3764
  destination_endpoint: {
3470
- type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN")?,
3765
+ type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN" | "EMAIL_ADDRESS")?,
3471
3766
  address: ::String?
3472
3767
  },
3473
3768
  instance_id: ::String,
@@ -3490,6 +3785,50 @@ module Aws
3490
3785
  ) -> _StartOutboundChatContactResponseSuccess
3491
3786
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartOutboundChatContactResponseSuccess
3492
3787
 
3788
+ interface _StartOutboundEmailContactResponseSuccess
3789
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartOutboundEmailContactResponse]
3790
+ def contact_id: () -> ::String
3791
+ end
3792
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#start_outbound_email_contact-instance_method
3793
+ def start_outbound_email_contact: (
3794
+ instance_id: ::String,
3795
+ contact_id: ::String,
3796
+ ?from_email_address: {
3797
+ email_address: ::String,
3798
+ display_name: ::String?
3799
+ },
3800
+ destination_email_address: {
3801
+ email_address: ::String,
3802
+ display_name: ::String?
3803
+ },
3804
+ ?additional_recipients: {
3805
+ cc_email_addresses: Array[
3806
+ {
3807
+ email_address: ::String,
3808
+ display_name: ::String?
3809
+ },
3810
+ ]?
3811
+ },
3812
+ email_message: {
3813
+ message_source_type: ("TEMPLATE" | "RAW"),
3814
+ templated_message_config: {
3815
+ knowledge_base_id: ::String,
3816
+ message_template_id: ::String,
3817
+ template_attributes: {
3818
+ custom_attributes: Hash[::String, ::String]?,
3819
+ customer_profile_attributes: ::String?
3820
+ }
3821
+ }?,
3822
+ raw_message: {
3823
+ subject: ::String,
3824
+ body: ::String,
3825
+ content_type: ::String
3826
+ }?
3827
+ },
3828
+ ?client_token: ::String
3829
+ ) -> _StartOutboundEmailContactResponseSuccess
3830
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartOutboundEmailContactResponseSuccess
3831
+
3493
3832
  interface _StartOutboundVoiceContactResponseSuccess
3494
3833
  include ::Seahorse::Client::_ResponseSuccess[Types::StartOutboundVoiceContactResponse]
3495
3834
  def contact_id: () -> ::String
@@ -3499,8 +3838,11 @@ module Aws
3499
3838
  ?name: ::String,
3500
3839
  ?description: ::String,
3501
3840
  ?references: Hash[::String, {
3502
- value: ::String,
3503
- type: ("URL" | "ATTACHMENT" | "NUMBER" | "STRING" | "DATE" | "EMAIL")
3841
+ value: ::String?,
3842
+ type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
3843
+ status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
3844
+ arn: ::String?,
3845
+ status_reason: ::String?
3504
3846
  }],
3505
3847
  ?related_contact_id: ::String,
3506
3848
  destination_phone_number: ::String,
@@ -3542,15 +3884,21 @@ module Aws
3542
3884
  ?attributes: Hash[::String, ::String],
3543
3885
  name: ::String,
3544
3886
  ?references: Hash[::String, {
3545
- value: ::String,
3546
- type: ("URL" | "ATTACHMENT" | "NUMBER" | "STRING" | "DATE" | "EMAIL")
3887
+ value: ::String?,
3888
+ type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
3889
+ status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
3890
+ arn: ::String?,
3891
+ status_reason: ::String?
3547
3892
  }],
3548
3893
  ?description: ::String,
3549
3894
  ?client_token: ::String,
3550
3895
  ?scheduled_time: ::Time,
3551
3896
  ?task_template_id: ::String,
3552
3897
  ?quick_connect_id: ::String,
3553
- ?related_contact_id: ::String
3898
+ ?related_contact_id: ::String,
3899
+ ?segment_attributes: Hash[::String, {
3900
+ value_string: ::String?
3901
+ }]
3554
3902
  ) -> _StartTaskContactResponseSuccess
3555
3903
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTaskContactResponseSuccess
3556
3904
 
@@ -3582,8 +3930,11 @@ module Aws
3582
3930
  },
3583
3931
  ?related_contact_id: ::String,
3584
3932
  ?references: Hash[::String, {
3585
- value: ::String,
3586
- type: ("URL" | "ATTACHMENT" | "NUMBER" | "STRING" | "DATE" | "EMAIL")
3933
+ value: ::String?,
3934
+ type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
3935
+ status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
3936
+ arn: ::String?,
3937
+ status_reason: ::String?
3587
3938
  }],
3588
3939
  ?description: ::String
3589
3940
  ) -> _StartWebRTCContactResponseSuccess
@@ -3743,8 +4094,14 @@ module Aws
3743
4094
  ?name: ::String,
3744
4095
  ?description: ::String,
3745
4096
  ?references: Hash[::String, {
3746
- value: ::String,
3747
- type: ("URL" | "ATTACHMENT" | "NUMBER" | "STRING" | "DATE" | "EMAIL")
4097
+ value: ::String?,
4098
+ type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
4099
+ status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
4100
+ arn: ::String?,
4101
+ status_reason: ::String?
4102
+ }],
4103
+ ?segment_attributes: Hash[::String, {
4104
+ value_string: ::String?
3748
4105
  }]
3749
4106
  ) -> _UpdateContactResponseSuccess
3750
4107
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactResponseSuccess
@@ -3893,6 +4250,21 @@ module Aws
3893
4250
  ) -> _UpdateContactScheduleResponseSuccess
3894
4251
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactScheduleResponseSuccess
3895
4252
 
4253
+ interface _UpdateEmailAddressMetadataResponseSuccess
4254
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEmailAddressMetadataResponse]
4255
+ def email_address_id: () -> ::String
4256
+ def email_address_arn: () -> ::String
4257
+ end
4258
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_email_address_metadata-instance_method
4259
+ def update_email_address_metadata: (
4260
+ instance_id: ::String,
4261
+ email_address_id: ::String,
4262
+ ?description: ::String,
4263
+ ?display_name: ::String,
4264
+ ?client_token: ::String
4265
+ ) -> _UpdateEmailAddressMetadataResponseSuccess
4266
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEmailAddressMetadataResponseSuccess
4267
+
3896
4268
  interface _UpdateEvaluationFormResponseSuccess
3897
4269
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEvaluationFormResponse]
3898
4270
  def evaluation_form_id: () -> ::String
@@ -4011,7 +4383,7 @@ module Aws
4011
4383
  def update_instance_storage_config: (
4012
4384
  instance_id: ::String,
4013
4385
  association_id: ::String,
4014
- resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS"),
4386
+ resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS" | "EMAIL_MESSAGES"),
4015
4387
  storage_config: {
4016
4388
  association_id: ::String?,
4017
4389
  storage_type: ("S3" | "KINESIS_VIDEO_STREAM" | "KINESIS_STREAM" | "KINESIS_FIREHOSE"),
@@ -4149,6 +4521,16 @@ module Aws
4149
4521
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
4150
4522
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
4151
4523
 
4524
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_queue_outbound_email_config-instance_method
4525
+ def update_queue_outbound_email_config: (
4526
+ instance_id: ::String,
4527
+ queue_id: ::String,
4528
+ outbound_email_config: {
4529
+ outbound_email_address_id: ::String?
4530
+ }
4531
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
4532
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
4533
+
4152
4534
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_queue_status-instance_method
4153
4535
  def update_queue_status: (
4154
4536
  instance_id: ::String,
@@ -4201,7 +4583,7 @@ module Aws
4201
4583
  routing_profile_id: ::String,
4202
4584
  media_concurrencies: Array[
4203
4585
  {
4204
- channel: ("VOICE" | "CHAT" | "TASK"),
4586
+ channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL"),
4205
4587
  concurrency: ::Integer,
4206
4588
  cross_channel_behavior: {
4207
4589
  behavior_type: ("ROUTE_CURRENT_CHANNEL_ONLY" | "ROUTE_ANY_CHANNEL")
@@ -4236,7 +4618,7 @@ module Aws
4236
4618
  {
4237
4619
  queue_reference: {
4238
4620
  queue_id: ::String,
4239
- channel: ("VOICE" | "CHAT" | "TASK")
4621
+ channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL")
4240
4622
  },
4241
4623
  priority: ::Integer,
4242
4624
  delay: ::Integer
@@ -4259,8 +4641,11 @@ module Aws
4259
4641
  description: ::String?,
4260
4642
  contact_flow_id: ::String,
4261
4643
  references: Hash[::String, {
4262
- value: ::String,
4263
- type: ("URL" | "ATTACHMENT" | "NUMBER" | "STRING" | "DATE" | "EMAIL")
4644
+ value: ::String?,
4645
+ type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
4646
+ status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
4647
+ arn: ::String?,
4648
+ status_reason: ::String?
4264
4649
  }]?
4265
4650
  }?,
4266
4651
  event_bridge_action: {
@@ -4345,6 +4730,7 @@ module Aws
4345
4730
  def name: () -> ::String
4346
4731
  def description: () -> ::String
4347
4732
  def contact_flow_id: () -> ::String
4733
+ def self_assign_flow_id: () -> ::String
4348
4734
  def constraints: () -> Types::TaskTemplateConstraints
4349
4735
  def defaults: () -> Types::TaskTemplateDefaults
4350
4736
  def fields: () -> ::Array[Types::TaskTemplateField]
@@ -4359,6 +4745,7 @@ module Aws
4359
4745
  ?name: ::String,
4360
4746
  ?description: ::String,
4361
4747
  ?contact_flow_id: ::String,
4748
+ ?self_assign_flow_id: ::String,
4362
4749
  ?constraints: {
4363
4750
  required_fields: Array[
4364
4751
  {
@@ -4399,7 +4786,7 @@ module Aws
4399
4786
  name: ::String?
4400
4787
  },
4401
4788
  description: ::String?,
4402
- type: ("NAME" | "DESCRIPTION" | "SCHEDULED_TIME" | "QUICK_CONNECT" | "URL" | "NUMBER" | "TEXT" | "TEXT_AREA" | "DATE_TIME" | "BOOLEAN" | "SINGLE_SELECT" | "EMAIL")?,
4789
+ type: ("NAME" | "DESCRIPTION" | "SCHEDULED_TIME" | "QUICK_CONNECT" | "URL" | "NUMBER" | "TEXT" | "TEXT_AREA" | "DATE_TIME" | "BOOLEAN" | "SINGLE_SELECT" | "EMAIL" | "SELF_ASSIGN" | "EXPIRY_DURATION")?,
4403
4790
  single_select_options: Array[::String]?
4404
4791
  },
4405
4792
  ]