aws-sdk-connect 1.185.0 → 1.187.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.
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,6 +394,41 @@ 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
+ value_map: Hash[::String, untyped]?,
427
+ value_integer: ::Integer?
428
+ }]
429
+ ) -> _CreateContactResponseSuccess
430
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactResponseSuccess
431
+
397
432
  interface _CreateContactFlowResponseSuccess
398
433
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateContactFlowResponse]
399
434
  def contact_flow_id: () -> ::String
@@ -444,6 +479,22 @@ module Aws
444
479
  ) -> _CreateContactFlowVersionResponseSuccess
445
480
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactFlowVersionResponseSuccess
446
481
 
482
+ interface _CreateEmailAddressResponseSuccess
483
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateEmailAddressResponse]
484
+ def email_address_id: () -> ::String
485
+ def email_address_arn: () -> ::String
486
+ end
487
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_email_address-instance_method
488
+ def create_email_address: (
489
+ ?description: ::String,
490
+ instance_id: ::String,
491
+ email_address: ::String,
492
+ ?display_name: ::String,
493
+ ?tags: Hash[::String, ::String],
494
+ ?client_token: ::String
495
+ ) -> _CreateEmailAddressResponseSuccess
496
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEmailAddressResponseSuccess
497
+
447
498
  interface _CreateEvaluationFormResponseSuccess
448
499
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateEvaluationFormResponse]
449
500
  def evaluation_form_id: () -> ::String
@@ -576,7 +627,7 @@ module Aws
576
627
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_integration_association-instance_method
577
628
  def create_integration_association: (
578
629
  instance_id: ::String,
579
- integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER"),
630
+ 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"),
580
631
  integration_arn: ::String,
581
632
  ?source_application_url: ::String,
582
633
  ?source_application_name: ::String,
@@ -656,6 +707,9 @@ module Aws
656
707
  outbound_caller_id_number_id: ::String?,
657
708
  outbound_flow_id: ::String?
658
709
  },
710
+ ?outbound_email_config: {
711
+ outbound_email_address_id: ::String?
712
+ },
659
713
  hours_of_operation_id: ::String,
660
714
  ?max_contacts: ::Integer,
661
715
  ?quick_connect_ids: Array[::String],
@@ -706,7 +760,7 @@ module Aws
706
760
  {
707
761
  queue_reference: {
708
762
  queue_id: ::String,
709
- channel: ("VOICE" | "CHAT" | "TASK")
763
+ channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL")
710
764
  },
711
765
  priority: ::Integer,
712
766
  delay: ::Integer
@@ -714,7 +768,7 @@ module Aws
714
768
  ],
715
769
  media_concurrencies: Array[
716
770
  {
717
- channel: ("VOICE" | "CHAT" | "TASK"),
771
+ channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL"),
718
772
  concurrency: ::Integer,
719
773
  cross_channel_behavior: {
720
774
  behavior_type: ("ROUTE_CURRENT_CHANNEL_ONLY" | "ROUTE_ANY_CHANNEL")
@@ -748,8 +802,11 @@ module Aws
748
802
  description: ::String?,
749
803
  contact_flow_id: ::String,
750
804
  references: Hash[::String, {
751
- value: ::String,
752
- type: ("URL" | "ATTACHMENT" | "NUMBER" | "STRING" | "DATE" | "EMAIL")
805
+ value: ::String?,
806
+ type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
807
+ status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
808
+ arn: ::String?,
809
+ status_reason: ::String?
753
810
  }]?
754
811
  }?,
755
812
  event_bridge_action: {
@@ -844,6 +901,7 @@ module Aws
844
901
  name: ::String,
845
902
  ?description: ::String,
846
903
  ?contact_flow_id: ::String,
904
+ ?self_assign_flow_id: ::String,
847
905
  ?constraints: {
848
906
  required_fields: Array[
849
907
  {
@@ -884,7 +942,7 @@ module Aws
884
942
  name: ::String?
885
943
  },
886
944
  description: ::String?,
887
- type: ("NAME" | "DESCRIPTION" | "SCHEDULED_TIME" | "QUICK_CONNECT" | "URL" | "NUMBER" | "TEXT" | "TEXT_AREA" | "DATE_TIME" | "BOOLEAN" | "SINGLE_SELECT" | "EMAIL")?,
945
+ type: ("NAME" | "DESCRIPTION" | "SCHEDULED_TIME" | "QUICK_CONNECT" | "URL" | "NUMBER" | "TEXT" | "TEXT_AREA" | "DATE_TIME" | "BOOLEAN" | "SINGLE_SELECT" | "EMAIL" | "SELF_ASSIGN" | "EXPIRY_DURATION")?,
888
946
  single_select_options: Array[::String]?
889
947
  },
890
948
  ],
@@ -1067,6 +1125,16 @@ module Aws
1067
1125
  ) -> _DeleteContactFlowModuleResponseSuccess
1068
1126
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteContactFlowModuleResponseSuccess
1069
1127
 
1128
+ interface _DeleteEmailAddressResponseSuccess
1129
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEmailAddressResponse]
1130
+ end
1131
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_email_address-instance_method
1132
+ def delete_email_address: (
1133
+ instance_id: ::String,
1134
+ email_address_id: ::String
1135
+ ) -> _DeleteEmailAddressResponseSuccess
1136
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEmailAddressResponseSuccess
1137
+
1070
1138
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_evaluation_form-instance_method
1071
1139
  def delete_evaluation_form: (
1072
1140
  instance_id: ::String,
@@ -1286,6 +1354,24 @@ module Aws
1286
1354
  ) -> _DescribeContactFlowModuleResponseSuccess
1287
1355
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeContactFlowModuleResponseSuccess
1288
1356
 
1357
+ interface _DescribeEmailAddressResponseSuccess
1358
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEmailAddressResponse]
1359
+ def email_address_id: () -> ::String
1360
+ def email_address_arn: () -> ::String
1361
+ def email_address: () -> ::String
1362
+ def display_name: () -> ::String
1363
+ def description: () -> ::String
1364
+ def create_timestamp: () -> ::String
1365
+ def modified_timestamp: () -> ::String
1366
+ def tags: () -> ::Hash[::String, ::String]
1367
+ end
1368
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_email_address-instance_method
1369
+ def describe_email_address: (
1370
+ instance_id: ::String,
1371
+ email_address_id: ::String
1372
+ ) -> _DescribeEmailAddressResponseSuccess
1373
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEmailAddressResponseSuccess
1374
+
1289
1375
  interface _DescribeEvaluationFormResponseSuccess
1290
1376
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEvaluationFormResponse]
1291
1377
  def evaluation_form: () -> Types::EvaluationForm
@@ -1339,7 +1425,7 @@ module Aws
1339
1425
  def describe_instance_storage_config: (
1340
1426
  instance_id: ::String,
1341
1427
  association_id: ::String,
1342
- 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")
1428
+ 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")
1343
1429
  ) -> _DescribeInstanceStorageConfigResponseSuccess
1344
1430
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInstanceStorageConfigResponseSuccess
1345
1431
 
@@ -1529,7 +1615,7 @@ module Aws
1529
1615
  def disassociate_flow: (
1530
1616
  instance_id: ::String,
1531
1617
  resource_id: ::String,
1532
- resource_type: ("SMS_PHONE_NUMBER")
1618
+ resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
1533
1619
  ) -> _DisassociateFlowResponseSuccess
1534
1620
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateFlowResponseSuccess
1535
1621
 
@@ -1537,7 +1623,7 @@ module Aws
1537
1623
  def disassociate_instance_storage_config: (
1538
1624
  instance_id: ::String,
1539
1625
  association_id: ::String,
1540
- 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")
1626
+ 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")
1541
1627
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1542
1628
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1543
1629
 
@@ -1578,7 +1664,7 @@ module Aws
1578
1664
  queue_references: Array[
1579
1665
  {
1580
1666
  queue_id: ::String,
1581
- channel: ("VOICE" | "CHAT" | "TASK")
1667
+ channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL")
1582
1668
  },
1583
1669
  ]
1584
1670
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
@@ -1635,7 +1721,7 @@ module Aws
1635
1721
  def file_name: () -> ::String
1636
1722
  def file_size_in_bytes: () -> ::Integer
1637
1723
  def associated_resource_arn: () -> ::String
1638
- def file_use_case_type: () -> ("ATTACHMENT")
1724
+ def file_use_case_type: () -> ("EMAIL_MESSAGE" | "ATTACHMENT")
1639
1725
  def created_by: () -> Types::CreatedByInfo
1640
1726
  def download_url_metadata: () -> Types::DownloadUrlMetadata
1641
1727
  def tags: () -> ::Hash[::String, ::String]
@@ -1672,7 +1758,7 @@ module Aws
1672
1758
  instance_id: ::String,
1673
1759
  filters: {
1674
1760
  queues: Array[::String]?,
1675
- channels: Array[("VOICE" | "CHAT" | "TASK")]?,
1761
+ channels: Array[("VOICE" | "CHAT" | "TASK" | "EMAIL")]?,
1676
1762
  routing_profiles: Array[::String]?,
1677
1763
  routing_step_expressions: Array[::String]?
1678
1764
  },
@@ -1734,13 +1820,13 @@ module Aws
1734
1820
  include ::Seahorse::Client::_ResponseSuccess[Types::GetFlowAssociationResponse]
1735
1821
  def resource_id: () -> ::String
1736
1822
  def flow_id: () -> ::String
1737
- def resource_type: () -> ("SMS_PHONE_NUMBER")
1823
+ def resource_type: () -> ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
1738
1824
  end
1739
1825
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#get_flow_association-instance_method
1740
1826
  def get_flow_association: (
1741
1827
  instance_id: ::String,
1742
1828
  resource_id: ::String,
1743
- resource_type: ("SMS_PHONE_NUMBER")
1829
+ resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
1744
1830
  ) -> _GetFlowAssociationResponseSuccess
1745
1831
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFlowAssociationResponseSuccess
1746
1832
 
@@ -1756,7 +1842,7 @@ module Aws
1756
1842
  end_time: ::Time,
1757
1843
  filters: {
1758
1844
  queues: Array[::String]?,
1759
- channels: Array[("VOICE" | "CHAT" | "TASK")]?,
1845
+ channels: Array[("VOICE" | "CHAT" | "TASK" | "EMAIL")]?,
1760
1846
  routing_profiles: Array[::String]?,
1761
1847
  routing_step_expressions: Array[::String]?
1762
1848
  },
@@ -1842,6 +1928,7 @@ module Aws
1842
1928
  def name: () -> ::String
1843
1929
  def description: () -> ::String
1844
1930
  def contact_flow_id: () -> ::String
1931
+ def self_assign_flow_id: () -> ::String
1845
1932
  def constraints: () -> Types::TaskTemplateConstraints
1846
1933
  def defaults: () -> Types::TaskTemplateDefaults
1847
1934
  def fields: () -> ::Array[Types::TaskTemplateField]
@@ -1928,6 +2015,20 @@ module Aws
1928
2015
  ) -> _ListApprovedOriginsResponseSuccess
1929
2016
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApprovedOriginsResponseSuccess
1930
2017
 
2018
+ interface _ListAssociatedContactsResponseSuccess
2019
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAssociatedContactsResponse]
2020
+ def contact_summary_list: () -> ::Array[Types::AssociatedContactSummary]
2021
+ def next_token: () -> ::String
2022
+ end
2023
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_associated_contacts-instance_method
2024
+ def list_associated_contacts: (
2025
+ instance_id: ::String,
2026
+ contact_id: ::String,
2027
+ ?max_results: ::Integer,
2028
+ ?next_token: ::String
2029
+ ) -> _ListAssociatedContactsResponseSuccess
2030
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssociatedContactsResponseSuccess
2031
+
1931
2032
  interface _ListAuthenticationProfilesResponseSuccess
1932
2033
  include ::Seahorse::Client::_ResponseSuccess[Types::ListAuthenticationProfilesResponse]
1933
2034
  def authentication_profile_summary_list: () -> ::Array[Types::AuthenticationProfileSummary]
@@ -2019,7 +2120,7 @@ module Aws
2019
2120
  def list_contact_references: (
2020
2121
  instance_id: ::String,
2021
2122
  contact_id: ::String,
2022
- reference_types: Array[("URL" | "ATTACHMENT" | "NUMBER" | "STRING" | "DATE" | "EMAIL")],
2123
+ reference_types: Array[("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE")],
2023
2124
  ?next_token: ::String
2024
2125
  ) -> _ListContactReferencesResponseSuccess
2025
2126
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContactReferencesResponseSuccess
@@ -2073,7 +2174,7 @@ module Aws
2073
2174
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_flow_associations-instance_method
2074
2175
  def list_flow_associations: (
2075
2176
  instance_id: ::String,
2076
- ?resource_type: ("VOICE_PHONE_NUMBER"),
2177
+ ?resource_type: ("VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL"),
2077
2178
  ?next_token: ::String,
2078
2179
  ?max_results: ::Integer
2079
2180
  ) -> _ListFlowAssociationsResponseSuccess
@@ -2113,7 +2214,7 @@ module Aws
2113
2214
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_instance_storage_configs-instance_method
2114
2215
  def list_instance_storage_configs: (
2115
2216
  instance_id: ::String,
2116
- 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"),
2217
+ 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"),
2117
2218
  ?next_token: ::String,
2118
2219
  ?max_results: ::Integer
2119
2220
  ) -> _ListInstanceStorageConfigsResponseSuccess
@@ -2139,7 +2240,7 @@ module Aws
2139
2240
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_integration_associations-instance_method
2140
2241
  def list_integration_associations: (
2141
2242
  instance_id: ::String,
2142
- ?integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER"),
2243
+ ?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"),
2143
2244
  ?next_token: ::String,
2144
2245
  ?max_results: ::Integer,
2145
2246
  ?integration_arn: ::String
@@ -2803,7 +2904,7 @@ module Aws
2803
2904
  l4_ids: Array[::String]?,
2804
2905
  l5_ids: Array[::String]?
2805
2906
  }?,
2806
- channels: Array[("VOICE" | "CHAT" | "TASK")]?,
2907
+ channels: Array[("VOICE" | "CHAT" | "TASK" | "EMAIL")]?,
2807
2908
  contact_analysis: {
2808
2909
  transcript: {
2809
2910
  criteria: Array[
@@ -2816,7 +2917,7 @@ module Aws
2816
2917
  match_type: ("MATCH_ALL" | "MATCH_ANY")?
2817
2918
  }?
2818
2919
  }?,
2819
- initiation_methods: Array[("INBOUND" | "OUTBOUND" | "TRANSFER" | "QUEUE_TRANSFER" | "CALLBACK" | "API" | "DISCONNECT" | "MONITOR" | "EXTERNAL_OUTBOUND")]?,
2920
+ initiation_methods: Array[("INBOUND" | "OUTBOUND" | "TRANSFER" | "QUEUE_TRANSFER" | "CALLBACK" | "API" | "DISCONNECT" | "MONITOR" | "EXTERNAL_OUTBOUND" | "WEBRTC_API" | "AGENT_REPLY" | "FLOW")]?,
2820
2921
  queue_ids: Array[::String]?,
2821
2922
  searchable_contact_attributes: {
2822
2923
  criteria: Array[
@@ -2826,6 +2927,15 @@ module Aws
2826
2927
  },
2827
2928
  ],
2828
2929
  match_type: ("MATCH_ALL" | "MATCH_ANY")?
2930
+ }?,
2931
+ searchable_segment_attributes: {
2932
+ criteria: Array[
2933
+ {
2934
+ key: ::String,
2935
+ values: Array[::String]
2936
+ },
2937
+ ],
2938
+ match_type: ("MATCH_ALL" | "MATCH_ANY")?
2829
2939
  }?
2830
2940
  },
2831
2941
  ?max_results: ::Integer,
@@ -2837,6 +2947,55 @@ module Aws
2837
2947
  ) -> _SearchContactsResponseSuccess
2838
2948
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchContactsResponseSuccess
2839
2949
 
2950
+ interface _SearchEmailAddressesResponseSuccess
2951
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchEmailAddressesResponse]
2952
+ def next_token: () -> ::String
2953
+ def email_addresses: () -> ::Array[Types::EmailAddressMetadata]
2954
+ def approximate_total_count: () -> ::Integer
2955
+ end
2956
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#search_email_addresses-instance_method
2957
+ def search_email_addresses: (
2958
+ instance_id: ::String,
2959
+ ?max_results: ::Integer,
2960
+ ?next_token: ::String,
2961
+ ?search_criteria: {
2962
+ or_conditions: Array[
2963
+ untyped,
2964
+ ]?,
2965
+ and_conditions: Array[
2966
+ untyped,
2967
+ ]?,
2968
+ string_condition: {
2969
+ field_name: ::String?,
2970
+ value: ::String?,
2971
+ comparison_type: ("STARTS_WITH" | "CONTAINS" | "EXACT")?
2972
+ }?
2973
+ },
2974
+ ?search_filter: {
2975
+ tag_filter: {
2976
+ or_conditions: Array[
2977
+ Array[
2978
+ {
2979
+ tag_key: ::String?,
2980
+ tag_value: ::String?
2981
+ },
2982
+ ],
2983
+ ]?,
2984
+ and_conditions: Array[
2985
+ {
2986
+ tag_key: ::String?,
2987
+ tag_value: ::String?
2988
+ },
2989
+ ]?,
2990
+ tag_condition: {
2991
+ tag_key: ::String?,
2992
+ tag_value: ::String?
2993
+ }?
2994
+ }?
2995
+ }
2996
+ ) -> _SearchEmailAddressesResponseSuccess
2997
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchEmailAddressesResponseSuccess
2998
+
2840
2999
  interface _SearchHoursOfOperationsResponseSuccess
2841
3000
  include ::Seahorse::Client::_ResponseSuccess[Types::SearchHoursOfOperationsResponse]
2842
3001
  def hours_of_operations: () -> ::Array[Types::HoursOfOperation]
@@ -3385,6 +3544,53 @@ module Aws
3385
3544
  ) -> _SendChatIntegrationEventResponseSuccess
3386
3545
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendChatIntegrationEventResponseSuccess
3387
3546
 
3547
+ interface _SendOutboundEmailResponseSuccess
3548
+ include ::Seahorse::Client::_ResponseSuccess[Types::SendOutboundEmailResponse]
3549
+ end
3550
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#send_outbound_email-instance_method
3551
+ def send_outbound_email: (
3552
+ instance_id: ::String,
3553
+ from_email_address: {
3554
+ email_address: ::String,
3555
+ display_name: ::String?
3556
+ },
3557
+ destination_email_address: {
3558
+ email_address: ::String,
3559
+ display_name: ::String?
3560
+ },
3561
+ ?additional_recipients: {
3562
+ cc_email_addresses: Array[
3563
+ {
3564
+ email_address: ::String,
3565
+ display_name: ::String?
3566
+ },
3567
+ ]?
3568
+ },
3569
+ email_message: {
3570
+ message_source_type: ("TEMPLATE" | "RAW"),
3571
+ templated_message_config: {
3572
+ knowledge_base_id: ::String,
3573
+ message_template_id: ::String,
3574
+ template_attributes: {
3575
+ custom_attributes: Hash[::String, ::String]?,
3576
+ customer_profile_attributes: ::String?
3577
+ }
3578
+ }?,
3579
+ raw_message: {
3580
+ subject: ::String,
3581
+ body: ::String,
3582
+ content_type: ::String
3583
+ }?
3584
+ },
3585
+ traffic_type: ("GENERAL" | "CAMPAIGN"),
3586
+ ?source_campaign: {
3587
+ campaign_id: ::String?,
3588
+ outbound_request_id: ::String?
3589
+ },
3590
+ ?client_token: ::String
3591
+ ) -> _SendOutboundEmailResponseSuccess
3592
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendOutboundEmailResponseSuccess
3593
+
3388
3594
  interface _StartAttachedFileUploadResponseSuccess
3389
3595
  include ::Seahorse::Client::_ResponseSuccess[Types::StartAttachedFileUploadResponse]
3390
3596
  def file_arn: () -> ::String
@@ -3401,7 +3607,7 @@ module Aws
3401
3607
  file_name: ::String,
3402
3608
  file_size_in_bytes: ::Integer,
3403
3609
  ?url_expiry_in_seconds: ::Integer,
3404
- file_use_case_type: ("ATTACHMENT"),
3610
+ file_use_case_type: ("EMAIL_MESSAGE" | "ATTACHMENT"),
3405
3611
  associated_resource_arn: ::String,
3406
3612
  ?created_by: {
3407
3613
  connect_user_arn: ::String?,
@@ -3439,7 +3645,9 @@ module Aws
3439
3645
  },
3440
3646
  ?related_contact_id: ::String,
3441
3647
  ?segment_attributes: Hash[::String, {
3442
- value_string: ::String?
3648
+ value_string: ::String?,
3649
+ value_map: Hash[::String, untyped]?,
3650
+ value_integer: ::Integer?
3443
3651
  }]
3444
3652
  ) -> _StartChatContactResponseSuccess
3445
3653
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartChatContactResponseSuccess
@@ -3487,6 +3695,68 @@ module Aws
3487
3695
  ) -> _StartContactStreamingResponseSuccess
3488
3696
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartContactStreamingResponseSuccess
3489
3697
 
3698
+ interface _StartEmailContactResponseSuccess
3699
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartEmailContactResponse]
3700
+ def contact_id: () -> ::String
3701
+ end
3702
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#start_email_contact-instance_method
3703
+ def start_email_contact: (
3704
+ instance_id: ::String,
3705
+ from_email_address: {
3706
+ email_address: ::String,
3707
+ display_name: ::String?
3708
+ },
3709
+ destination_email_address: ::String,
3710
+ ?description: ::String,
3711
+ ?references: Hash[::String, {
3712
+ value: ::String?,
3713
+ type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
3714
+ status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
3715
+ arn: ::String?,
3716
+ status_reason: ::String?
3717
+ }],
3718
+ ?name: ::String,
3719
+ email_message: {
3720
+ message_source_type: ("RAW"),
3721
+ raw_message: {
3722
+ subject: ::String,
3723
+ body: ::String,
3724
+ content_type: ::String,
3725
+ headers: Hash[("REFERENCES" | "MESSAGE_ID" | "IN_REPLY_TO" | "X_SES_SPAM_VERDICT" | "X_SES_VIRUS_VERDICT"), ::String]?
3726
+ }?
3727
+ },
3728
+ ?additional_recipients: {
3729
+ to_addresses: Array[
3730
+ {
3731
+ email_address: ::String,
3732
+ display_name: ::String?
3733
+ },
3734
+ ]?,
3735
+ cc_addresses: Array[
3736
+ {
3737
+ email_address: ::String,
3738
+ display_name: ::String?
3739
+ },
3740
+ ]?
3741
+ },
3742
+ ?attachments: Array[
3743
+ {
3744
+ file_name: ::String,
3745
+ s3_url: ::String
3746
+ },
3747
+ ],
3748
+ ?contact_flow_id: ::String,
3749
+ ?related_contact_id: ::String,
3750
+ ?attributes: Hash[::String, ::String],
3751
+ ?segment_attributes: Hash[::String, {
3752
+ value_string: ::String?,
3753
+ value_map: Hash[::String, untyped]?,
3754
+ value_integer: ::Integer?
3755
+ }],
3756
+ ?client_token: ::String
3757
+ ) -> _StartEmailContactResponseSuccess
3758
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartEmailContactResponseSuccess
3759
+
3490
3760
  interface _StartOutboundChatContactResponseSuccess
3491
3761
  include ::Seahorse::Client::_ResponseSuccess[Types::StartOutboundChatContactResponse]
3492
3762
  def contact_id: () -> ::String
@@ -3494,16 +3764,18 @@ module Aws
3494
3764
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#start_outbound_chat_contact-instance_method
3495
3765
  def start_outbound_chat_contact: (
3496
3766
  source_endpoint: {
3497
- type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN")?,
3767
+ type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN" | "EMAIL_ADDRESS")?,
3498
3768
  address: ::String?
3499
3769
  },
3500
3770
  destination_endpoint: {
3501
- type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN")?,
3771
+ type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN" | "EMAIL_ADDRESS")?,
3502
3772
  address: ::String?
3503
3773
  },
3504
3774
  instance_id: ::String,
3505
3775
  segment_attributes: Hash[::String, {
3506
- value_string: ::String?
3776
+ value_string: ::String?,
3777
+ value_map: Hash[::String, untyped]?,
3778
+ value_integer: ::Integer?
3507
3779
  }],
3508
3780
  ?attributes: Hash[::String, ::String],
3509
3781
  contact_flow_id: ::String,
@@ -3521,6 +3793,50 @@ module Aws
3521
3793
  ) -> _StartOutboundChatContactResponseSuccess
3522
3794
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartOutboundChatContactResponseSuccess
3523
3795
 
3796
+ interface _StartOutboundEmailContactResponseSuccess
3797
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartOutboundEmailContactResponse]
3798
+ def contact_id: () -> ::String
3799
+ end
3800
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#start_outbound_email_contact-instance_method
3801
+ def start_outbound_email_contact: (
3802
+ instance_id: ::String,
3803
+ contact_id: ::String,
3804
+ ?from_email_address: {
3805
+ email_address: ::String,
3806
+ display_name: ::String?
3807
+ },
3808
+ destination_email_address: {
3809
+ email_address: ::String,
3810
+ display_name: ::String?
3811
+ },
3812
+ ?additional_recipients: {
3813
+ cc_email_addresses: Array[
3814
+ {
3815
+ email_address: ::String,
3816
+ display_name: ::String?
3817
+ },
3818
+ ]?
3819
+ },
3820
+ email_message: {
3821
+ message_source_type: ("TEMPLATE" | "RAW"),
3822
+ templated_message_config: {
3823
+ knowledge_base_id: ::String,
3824
+ message_template_id: ::String,
3825
+ template_attributes: {
3826
+ custom_attributes: Hash[::String, ::String]?,
3827
+ customer_profile_attributes: ::String?
3828
+ }
3829
+ }?,
3830
+ raw_message: {
3831
+ subject: ::String,
3832
+ body: ::String,
3833
+ content_type: ::String
3834
+ }?
3835
+ },
3836
+ ?client_token: ::String
3837
+ ) -> _StartOutboundEmailContactResponseSuccess
3838
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartOutboundEmailContactResponseSuccess
3839
+
3524
3840
  interface _StartOutboundVoiceContactResponseSuccess
3525
3841
  include ::Seahorse::Client::_ResponseSuccess[Types::StartOutboundVoiceContactResponse]
3526
3842
  def contact_id: () -> ::String
@@ -3530,8 +3846,11 @@ module Aws
3530
3846
  ?name: ::String,
3531
3847
  ?description: ::String,
3532
3848
  ?references: Hash[::String, {
3533
- value: ::String,
3534
- type: ("URL" | "ATTACHMENT" | "NUMBER" | "STRING" | "DATE" | "EMAIL")
3849
+ value: ::String?,
3850
+ type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
3851
+ status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
3852
+ arn: ::String?,
3853
+ status_reason: ::String?
3535
3854
  }],
3536
3855
  ?related_contact_id: ::String,
3537
3856
  destination_phone_number: ::String,
@@ -3573,15 +3892,23 @@ module Aws
3573
3892
  ?attributes: Hash[::String, ::String],
3574
3893
  name: ::String,
3575
3894
  ?references: Hash[::String, {
3576
- value: ::String,
3577
- type: ("URL" | "ATTACHMENT" | "NUMBER" | "STRING" | "DATE" | "EMAIL")
3895
+ value: ::String?,
3896
+ type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
3897
+ status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
3898
+ arn: ::String?,
3899
+ status_reason: ::String?
3578
3900
  }],
3579
3901
  ?description: ::String,
3580
3902
  ?client_token: ::String,
3581
3903
  ?scheduled_time: ::Time,
3582
3904
  ?task_template_id: ::String,
3583
3905
  ?quick_connect_id: ::String,
3584
- ?related_contact_id: ::String
3906
+ ?related_contact_id: ::String,
3907
+ ?segment_attributes: Hash[::String, {
3908
+ value_string: ::String?,
3909
+ value_map: Hash[::String, untyped]?,
3910
+ value_integer: ::Integer?
3911
+ }]
3585
3912
  ) -> _StartTaskContactResponseSuccess
3586
3913
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTaskContactResponseSuccess
3587
3914
 
@@ -3613,8 +3940,11 @@ module Aws
3613
3940
  },
3614
3941
  ?related_contact_id: ::String,
3615
3942
  ?references: Hash[::String, {
3616
- value: ::String,
3617
- type: ("URL" | "ATTACHMENT" | "NUMBER" | "STRING" | "DATE" | "EMAIL")
3943
+ value: ::String?,
3944
+ type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
3945
+ status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
3946
+ arn: ::String?,
3947
+ status_reason: ::String?
3618
3948
  }],
3619
3949
  ?description: ::String
3620
3950
  ) -> _StartWebRTCContactResponseSuccess
@@ -3774,8 +4104,16 @@ module Aws
3774
4104
  ?name: ::String,
3775
4105
  ?description: ::String,
3776
4106
  ?references: Hash[::String, {
3777
- value: ::String,
3778
- type: ("URL" | "ATTACHMENT" | "NUMBER" | "STRING" | "DATE" | "EMAIL")
4107
+ value: ::String?,
4108
+ type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
4109
+ status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
4110
+ arn: ::String?,
4111
+ status_reason: ::String?
4112
+ }],
4113
+ ?segment_attributes: Hash[::String, {
4114
+ value_string: ::String?,
4115
+ value_map: Hash[::String, untyped]?,
4116
+ value_integer: ::Integer?
3779
4117
  }]
3780
4118
  ) -> _UpdateContactResponseSuccess
3781
4119
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactResponseSuccess
@@ -3924,6 +4262,21 @@ module Aws
3924
4262
  ) -> _UpdateContactScheduleResponseSuccess
3925
4263
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactScheduleResponseSuccess
3926
4264
 
4265
+ interface _UpdateEmailAddressMetadataResponseSuccess
4266
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEmailAddressMetadataResponse]
4267
+ def email_address_id: () -> ::String
4268
+ def email_address_arn: () -> ::String
4269
+ end
4270
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_email_address_metadata-instance_method
4271
+ def update_email_address_metadata: (
4272
+ instance_id: ::String,
4273
+ email_address_id: ::String,
4274
+ ?description: ::String,
4275
+ ?display_name: ::String,
4276
+ ?client_token: ::String
4277
+ ) -> _UpdateEmailAddressMetadataResponseSuccess
4278
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEmailAddressMetadataResponseSuccess
4279
+
3927
4280
  interface _UpdateEvaluationFormResponseSuccess
3928
4281
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEvaluationFormResponse]
3929
4282
  def evaluation_form_id: () -> ::String
@@ -4042,7 +4395,7 @@ module Aws
4042
4395
  def update_instance_storage_config: (
4043
4396
  instance_id: ::String,
4044
4397
  association_id: ::String,
4045
- 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"),
4398
+ 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"),
4046
4399
  storage_config: {
4047
4400
  association_id: ::String?,
4048
4401
  storage_type: ("S3" | "KINESIS_VIDEO_STREAM" | "KINESIS_STREAM" | "KINESIS_FIREHOSE"),
@@ -4180,6 +4533,16 @@ module Aws
4180
4533
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
4181
4534
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
4182
4535
 
4536
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_queue_outbound_email_config-instance_method
4537
+ def update_queue_outbound_email_config: (
4538
+ instance_id: ::String,
4539
+ queue_id: ::String,
4540
+ outbound_email_config: {
4541
+ outbound_email_address_id: ::String?
4542
+ }
4543
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
4544
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
4545
+
4183
4546
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_queue_status-instance_method
4184
4547
  def update_queue_status: (
4185
4548
  instance_id: ::String,
@@ -4232,7 +4595,7 @@ module Aws
4232
4595
  routing_profile_id: ::String,
4233
4596
  media_concurrencies: Array[
4234
4597
  {
4235
- channel: ("VOICE" | "CHAT" | "TASK"),
4598
+ channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL"),
4236
4599
  concurrency: ::Integer,
4237
4600
  cross_channel_behavior: {
4238
4601
  behavior_type: ("ROUTE_CURRENT_CHANNEL_ONLY" | "ROUTE_ANY_CHANNEL")
@@ -4267,7 +4630,7 @@ module Aws
4267
4630
  {
4268
4631
  queue_reference: {
4269
4632
  queue_id: ::String,
4270
- channel: ("VOICE" | "CHAT" | "TASK")
4633
+ channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL")
4271
4634
  },
4272
4635
  priority: ::Integer,
4273
4636
  delay: ::Integer
@@ -4290,8 +4653,11 @@ module Aws
4290
4653
  description: ::String?,
4291
4654
  contact_flow_id: ::String,
4292
4655
  references: Hash[::String, {
4293
- value: ::String,
4294
- type: ("URL" | "ATTACHMENT" | "NUMBER" | "STRING" | "DATE" | "EMAIL")
4656
+ value: ::String?,
4657
+ type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE"),
4658
+ status: ("AVAILABLE" | "DELETED" | "APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")?,
4659
+ arn: ::String?,
4660
+ status_reason: ::String?
4295
4661
  }]?
4296
4662
  }?,
4297
4663
  event_bridge_action: {
@@ -4376,6 +4742,7 @@ module Aws
4376
4742
  def name: () -> ::String
4377
4743
  def description: () -> ::String
4378
4744
  def contact_flow_id: () -> ::String
4745
+ def self_assign_flow_id: () -> ::String
4379
4746
  def constraints: () -> Types::TaskTemplateConstraints
4380
4747
  def defaults: () -> Types::TaskTemplateDefaults
4381
4748
  def fields: () -> ::Array[Types::TaskTemplateField]
@@ -4390,6 +4757,7 @@ module Aws
4390
4757
  ?name: ::String,
4391
4758
  ?description: ::String,
4392
4759
  ?contact_flow_id: ::String,
4760
+ ?self_assign_flow_id: ::String,
4393
4761
  ?constraints: {
4394
4762
  required_fields: Array[
4395
4763
  {
@@ -4430,7 +4798,7 @@ module Aws
4430
4798
  name: ::String?
4431
4799
  },
4432
4800
  description: ::String?,
4433
- type: ("NAME" | "DESCRIPTION" | "SCHEDULED_TIME" | "QUICK_CONNECT" | "URL" | "NUMBER" | "TEXT" | "TEXT_AREA" | "DATE_TIME" | "BOOLEAN" | "SINGLE_SELECT" | "EMAIL")?,
4801
+ type: ("NAME" | "DESCRIPTION" | "SCHEDULED_TIME" | "QUICK_CONNECT" | "URL" | "NUMBER" | "TEXT" | "TEXT_AREA" | "DATE_TIME" | "BOOLEAN" | "SINGLE_SELECT" | "EMAIL" | "SELF_ASSIGN" | "EXPIRY_DURATION")?,
4434
4802
  single_select_options: Array[::String]?
4435
4803
  },
4436
4804
  ]