aws-sdk-connect 1.244.0 → 1.245.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 38595cc7b7a57d8596132d1f28edc6a790f49e1ea355acbb40da43cac65951e0
4
- data.tar.gz: 3c92a1f8bec93959521973b96671fb375bf085c6f4d1ebaa1d4142dfcd977ce5
3
+ metadata.gz: 72f2f3be7ae3a6d060489e51eac7f595db86293d8df4ce145f13b765986b5198
4
+ data.tar.gz: 7c62c5de5e04e3b1b8134df635886e587af405e0f491f009ebe0c46024b2edab
5
5
  SHA512:
6
- metadata.gz: faf14ea0146fd38516d39d5863700023f71c75787d9553f2e7f34a514d3c2a95bde553c7bec4a55ab63c31c9db865c57974331b09a2d0aa2a1a8c38c72eea9bb
7
- data.tar.gz: bf43b6df7e7df99ea07ff8ba052f220b6da22bd02d03cd5d856244538203fab487b8874bfe12ba7d25b1bbb0bee2ba9203cf35066865844c76ad96e2e7164e35
6
+ metadata.gz: 8610404bfe159071cc7b2bbb816971f707676d2e224ff59e75111f899f8e5075c9082853c498a0b16571179a76d05d6d41d6b833e062d54384c447a806ccbc5a
7
+ data.tar.gz: b64fa9c6572a31bfa41e6a05b4118ab5b1c55f3f2ca9ce8417bfe7cd6e549d4a116dab24a41c668fd8e2d28486c2a007a41b067ee16edec112db249b6671b88a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.245.0 (2026-03-04)
5
+ ------------------
6
+
7
+ * Feature - Added support for configuring additional email addresses on queues in Amazon Connect. Agents can now select an outbound email address and associate additional email addresses for replying to or initiating emails.
8
+
4
9
  1.244.0 (2026-02-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.244.0
1
+ 1.245.0
@@ -1281,6 +1281,83 @@ module Aws::Connect
1281
1281
  req.send_request(options)
1282
1282
  end
1283
1283
 
1284
+ # Associates a set of email addresses with a queue to enable agents to
1285
+ # select different "From" (system) email addresses when replying to
1286
+ # inbound email contacts or initiating outbound email contacts. This
1287
+ # allows agents to handle email contacts across different brands and
1288
+ # business units within the same queue.
1289
+ #
1290
+ # **Important things to know**
1291
+ #
1292
+ # * You can associate up to 49 additional email addresses with a single
1293
+ # queue, plus 1 default outbound email address, for a total of 50.
1294
+ #
1295
+ # * The email addresses must already exist in the Amazon Connect
1296
+ # instance before they can be associated with a queue.
1297
+ #
1298
+ # * Agents will be able to select from these associated email addresses
1299
+ # when handling email contacts in the queue.
1300
+ #
1301
+ # * For inbound email contacts, agents can select from email addresses
1302
+ # associated with the queue where the contact was accepted.
1303
+ #
1304
+ # * For outbound email contacts, agents can select from email addresses
1305
+ # associated with their default outbound queue configured in their
1306
+ # routing profile.
1307
+ #
1308
+ # @option params [required, String] :instance_id
1309
+ # The identifier of the Amazon Connect instance. You can [find the
1310
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
1311
+ #
1312
+ #
1313
+ #
1314
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
1315
+ #
1316
+ # @option params [required, String] :queue_id
1317
+ # The identifier for the queue.
1318
+ #
1319
+ # @option params [required, Array<Types::EmailAddressConfig>] :email_addresses_config
1320
+ # Configuration list containing the email addresses to associate with
1321
+ # the queue. Each configuration specifies an email address ID that
1322
+ # should be linked to this queue for routing purposes.
1323
+ #
1324
+ # @option params [String] :client_token
1325
+ # A unique, case-sensitive identifier that you provide to ensure the
1326
+ # idempotency of the request. If not provided, the Amazon Web Services
1327
+ # SDK populates this field. For more information about idempotency, see
1328
+ # [Making retries safe with idempotent APIs][1].
1329
+ #
1330
+ # **A suitable default value is auto-generated.** You should normally
1331
+ # not need to pass this option.**
1332
+ #
1333
+ #
1334
+ #
1335
+ # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
1336
+ #
1337
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1338
+ #
1339
+ # @example Request syntax with placeholder values
1340
+ #
1341
+ # resp = client.associate_queue_email_addresses({
1342
+ # instance_id: "InstanceId", # required
1343
+ # queue_id: "QueueId", # required
1344
+ # email_addresses_config: [ # required
1345
+ # {
1346
+ # email_address_id: "EmailAddressId", # required
1347
+ # },
1348
+ # ],
1349
+ # client_token: "ClientToken",
1350
+ # })
1351
+ #
1352
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateQueueEmailAddresses AWS API Documentation
1353
+ #
1354
+ # @overload associate_queue_email_addresses(params = {})
1355
+ # @param [Hash] params ({})
1356
+ def associate_queue_email_addresses(params = {}, options = {})
1357
+ req = build_request(:associate_queue_email_addresses, params)
1358
+ req.send_request(options)
1359
+ end
1360
+
1284
1361
  # Associates a set of quick connects with a queue.
1285
1362
  #
1286
1363
  # @option params [required, String] :instance_id
@@ -4350,6 +4427,12 @@ module Aws::Connect
4350
4427
  # @option params [Array<String>] :quick_connect_ids
4351
4428
  # The quick connects available to agents who are working the queue.
4352
4429
  #
4430
+ # @option params [Array<Types::EmailAddressConfig>] :email_addresses_config
4431
+ # Configuration list containing the email addresses to associate with
4432
+ # the queue during creation. Each configuration specifies an email
4433
+ # address ID that agents can select when handling email contacts in this
4434
+ # queue.
4435
+ #
4353
4436
  # @option params [Hash<String,String>] :tags
4354
4437
  # The tags used to organize, track, or control access for this resource.
4355
4438
  # For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
@@ -4377,6 +4460,11 @@ module Aws::Connect
4377
4460
  # hours_of_operation_id: "HoursOfOperationId", # required
4378
4461
  # max_contacts: 1,
4379
4462
  # quick_connect_ids: ["QuickConnectId"],
4463
+ # email_addresses_config: [
4464
+ # {
4465
+ # email_address_id: "EmailAddressId", # required
4466
+ # },
4467
+ # ],
4380
4468
  # tags: {
4381
4469
  # "TagKey" => "TagValue",
4382
4470
  # },
@@ -10114,6 +10202,72 @@ module Aws::Connect
10114
10202
  req.send_request(options)
10115
10203
  end
10116
10204
 
10205
+ # Removes the association between a set of email addresses and a queue.
10206
+ # After disassociation, agents will no longer be able to select these
10207
+ # email addresses as "From" addresses when replying to inbound email
10208
+ # contacts or initiating outbound email contacts in this queue.
10209
+ #
10210
+ # **Important things to know**
10211
+ #
10212
+ # * Agents will no longer see these email addresses in their "From"
10213
+ # address selection options for this queue.
10214
+ #
10215
+ # * The email addresses themselves are not deleted from the instance,
10216
+ # only their availability for agent selection in this queue is
10217
+ # removed.
10218
+ #
10219
+ # * Changes take effect immediately and will affect the agent experience
10220
+ # in the Contact Control Panel (CCP).
10221
+ #
10222
+ # @option params [required, String] :instance_id
10223
+ # The identifier of the Amazon Connect instance. You can [find the
10224
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
10225
+ #
10226
+ #
10227
+ #
10228
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
10229
+ #
10230
+ # @option params [required, String] :queue_id
10231
+ # The identifier for the queue.
10232
+ #
10233
+ # @option params [required, Array<String>] :email_addresses_id
10234
+ # List of email address identifiers to disassociate from the queue.
10235
+ # These are the unique identifiers of email addresses that should no
10236
+ # longer be routed to this queue.
10237
+ #
10238
+ # @option params [String] :client_token
10239
+ # A unique, case-sensitive identifier that you provide to ensure the
10240
+ # idempotency of the request. If not provided, the Amazon Web Services
10241
+ # SDK populates this field. For more information about idempotency, see
10242
+ # [Making retries safe with idempotent APIs][1].
10243
+ #
10244
+ # **A suitable default value is auto-generated.** You should normally
10245
+ # not need to pass this option.**
10246
+ #
10247
+ #
10248
+ #
10249
+ # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
10250
+ #
10251
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
10252
+ #
10253
+ # @example Request syntax with placeholder values
10254
+ #
10255
+ # resp = client.disassociate_queue_email_addresses({
10256
+ # instance_id: "InstanceId", # required
10257
+ # queue_id: "QueueId", # required
10258
+ # email_addresses_id: ["EmailAddressId"], # required
10259
+ # client_token: "ClientToken",
10260
+ # })
10261
+ #
10262
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateQueueEmailAddresses AWS API Documentation
10263
+ #
10264
+ # @overload disassociate_queue_email_addresses(params = {})
10265
+ # @param [Hash] params ({})
10266
+ def disassociate_queue_email_addresses(params = {}, options = {})
10267
+ req = build_request(:disassociate_queue_email_addresses, params)
10268
+ req.send_request(options)
10269
+ end
10270
+
10117
10271
  # Disassociates a set of quick connects from a queue.
10118
10272
  #
10119
10273
  # @option params [required, String] :instance_id
@@ -16600,6 +16754,81 @@ module Aws::Connect
16600
16754
  req.send_request(options)
16601
16755
  end
16602
16756
 
16757
+ # Lists all email addresses that are currently associated with a
16758
+ # specific queue, providing details about which "From" email addresses
16759
+ # agents can select when handling email contacts. This helps
16760
+ # administrators manage agent email address options and understand the
16761
+ # available choices for different brands and business units.
16762
+ #
16763
+ # **Important things to know**
16764
+ #
16765
+ # * The response includes metadata about each email address available
16766
+ # for agent selection, including whether it's configured as the
16767
+ # default outbound email.
16768
+ #
16769
+ # * Agents can select from these email addresses when replying to
16770
+ # inbound contacts or initiating outbound contacts in this queue.
16771
+ #
16772
+ # * The list includes both explicitly associated email addresses and any
16773
+ # default outbound email address configured for the queue.
16774
+ #
16775
+ # * Results are paginated to handle queues with many associated email
16776
+ # addresses (up to 50 per queue).
16777
+ #
16778
+ # @option params [required, String] :instance_id
16779
+ # The identifier of the Amazon Connect instance. You can [find the
16780
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
16781
+ #
16782
+ #
16783
+ #
16784
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
16785
+ #
16786
+ # @option params [required, String] :queue_id
16787
+ # The identifier for the queue.
16788
+ #
16789
+ # @option params [String] :next_token
16790
+ # The token for the next set of results. Use the value returned in the
16791
+ # previous response in the next request to retrieve the next set of
16792
+ # results.
16793
+ #
16794
+ # @option params [Integer] :max_results
16795
+ # The maximum number of results to return per page.
16796
+ #
16797
+ # @return [Types::ListQueueEmailAddressesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
16798
+ #
16799
+ # * {Types::ListQueueEmailAddressesResponse#next_token #next_token} => String
16800
+ # * {Types::ListQueueEmailAddressesResponse#email_address_metadata_list #email_address_metadata_list} => Array&lt;Types::EmailAddressSummary&gt;
16801
+ # * {Types::ListQueueEmailAddressesResponse#last_modified_time #last_modified_time} => Time
16802
+ # * {Types::ListQueueEmailAddressesResponse#last_modified_region #last_modified_region} => String
16803
+ #
16804
+ # @example Request syntax with placeholder values
16805
+ #
16806
+ # resp = client.list_queue_email_addresses({
16807
+ # instance_id: "InstanceId", # required
16808
+ # queue_id: "QueueId", # required
16809
+ # next_token: "NextToken",
16810
+ # max_results: 1,
16811
+ # })
16812
+ #
16813
+ # @example Response structure
16814
+ #
16815
+ # resp.next_token #=> String
16816
+ # resp.email_address_metadata_list #=> Array
16817
+ # resp.email_address_metadata_list[0].id #=> String
16818
+ # resp.email_address_metadata_list[0].arn #=> String
16819
+ # resp.email_address_metadata_list[0].is_default_outbound_email #=> Boolean
16820
+ # resp.last_modified_time #=> Time
16821
+ # resp.last_modified_region #=> String
16822
+ #
16823
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListQueueEmailAddresses AWS API Documentation
16824
+ #
16825
+ # @overload list_queue_email_addresses(params = {})
16826
+ # @param [Hash] params ({})
16827
+ def list_queue_email_addresses(params = {}, options = {})
16828
+ req = build_request(:list_queue_email_addresses, params)
16829
+ req.send_request(options)
16830
+ end
16831
+
16603
16832
  # Lists the quick connects associated with a queue.
16604
16833
  #
16605
16834
  # @option params [required, String] :instance_id
@@ -28604,7 +28833,7 @@ module Aws::Connect
28604
28833
  tracer: tracer
28605
28834
  )
28606
28835
  context[:gem_name] = 'aws-sdk-connect'
28607
- context[:gem_version] = '1.244.0'
28836
+ context[:gem_version] = '1.245.0'
28608
28837
  Seahorse::Client::Request.new(handlers, context)
28609
28838
  end
28610
28839
 
@@ -114,6 +114,7 @@ module Aws::Connect
114
114
  AssociateLambdaFunctionRequest = Shapes::StructureShape.new(name: 'AssociateLambdaFunctionRequest')
115
115
  AssociateLexBotRequest = Shapes::StructureShape.new(name: 'AssociateLexBotRequest')
116
116
  AssociatePhoneNumberContactFlowRequest = Shapes::StructureShape.new(name: 'AssociatePhoneNumberContactFlowRequest')
117
+ AssociateQueueEmailAddressesRequest = Shapes::StructureShape.new(name: 'AssociateQueueEmailAddressesRequest')
117
118
  AssociateQueueQuickConnectsRequest = Shapes::StructureShape.new(name: 'AssociateQueueQuickConnectsRequest')
118
119
  AssociateRoutingProfileQueuesRequest = Shapes::StructureShape.new(name: 'AssociateRoutingProfileQueuesRequest')
119
120
  AssociateSecurityKeyRequest = Shapes::StructureShape.new(name: 'AssociateSecurityKeyRequest')
@@ -624,6 +625,7 @@ module Aws::Connect
624
625
  DisassociateLambdaFunctionRequest = Shapes::StructureShape.new(name: 'DisassociateLambdaFunctionRequest')
625
626
  DisassociateLexBotRequest = Shapes::StructureShape.new(name: 'DisassociateLexBotRequest')
626
627
  DisassociatePhoneNumberContactFlowRequest = Shapes::StructureShape.new(name: 'DisassociatePhoneNumberContactFlowRequest')
628
+ DisassociateQueueEmailAddressesRequest = Shapes::StructureShape.new(name: 'DisassociateQueueEmailAddressesRequest')
627
629
  DisassociateQueueQuickConnectsRequest = Shapes::StructureShape.new(name: 'DisassociateQueueQuickConnectsRequest')
628
630
  DisassociateRoutingProfileQueuesRequest = Shapes::StructureShape.new(name: 'DisassociateRoutingProfileQueuesRequest')
629
631
  DisassociateSecurityKeyRequest = Shapes::StructureShape.new(name: 'DisassociateSecurityKeyRequest')
@@ -656,15 +658,20 @@ module Aws::Connect
656
658
  Email = Shapes::StringShape.new(name: 'Email')
657
659
  EmailAddress = Shapes::StringShape.new(name: 'EmailAddress')
658
660
  EmailAddressArn = Shapes::StringShape.new(name: 'EmailAddressArn')
661
+ EmailAddressConfig = Shapes::StructureShape.new(name: 'EmailAddressConfig')
662
+ EmailAddressConfigList = Shapes::ListShape.new(name: 'EmailAddressConfigList')
659
663
  EmailAddressDisplayName = Shapes::StringShape.new(name: 'EmailAddressDisplayName')
660
664
  EmailAddressId = Shapes::StringShape.new(name: 'EmailAddressId')
665
+ EmailAddressIdList = Shapes::ListShape.new(name: 'EmailAddressIdList')
661
666
  EmailAddressInfo = Shapes::StructureShape.new(name: 'EmailAddressInfo')
662
667
  EmailAddressList = Shapes::ListShape.new(name: 'EmailAddressList')
663
668
  EmailAddressMetadata = Shapes::StructureShape.new(name: 'EmailAddressMetadata')
669
+ EmailAddressMetadataList = Shapes::ListShape.new(name: 'EmailAddressMetadataList')
664
670
  EmailAddressRecipientList = Shapes::ListShape.new(name: 'EmailAddressRecipientList')
665
671
  EmailAddressSearchConditionList = Shapes::ListShape.new(name: 'EmailAddressSearchConditionList')
666
672
  EmailAddressSearchCriteria = Shapes::StructureShape.new(name: 'EmailAddressSearchCriteria')
667
673
  EmailAddressSearchFilter = Shapes::StructureShape.new(name: 'EmailAddressSearchFilter')
674
+ EmailAddressSummary = Shapes::StructureShape.new(name: 'EmailAddressSummary')
668
675
  EmailAttachment = Shapes::StructureShape.new(name: 'EmailAttachment')
669
676
  EmailAttachments = Shapes::ListShape.new(name: 'EmailAttachments')
670
677
  EmailHeaderType = Shapes::StringShape.new(name: 'EmailHeaderType')
@@ -1112,6 +1119,8 @@ module Aws::Connect
1112
1119
  ListPredefinedAttributesResponse = Shapes::StructureShape.new(name: 'ListPredefinedAttributesResponse')
1113
1120
  ListPromptsRequest = Shapes::StructureShape.new(name: 'ListPromptsRequest')
1114
1121
  ListPromptsResponse = Shapes::StructureShape.new(name: 'ListPromptsResponse')
1122
+ ListQueueEmailAddressesRequest = Shapes::StructureShape.new(name: 'ListQueueEmailAddressesRequest')
1123
+ ListQueueEmailAddressesResponse = Shapes::StructureShape.new(name: 'ListQueueEmailAddressesResponse')
1115
1124
  ListQueueQuickConnectsRequest = Shapes::StructureShape.new(name: 'ListQueueQuickConnectsRequest')
1116
1125
  ListQueueQuickConnectsResponse = Shapes::StructureShape.new(name: 'ListQueueQuickConnectsResponse')
1117
1126
  ListQueuesRequest = Shapes::StructureShape.new(name: 'ListQueuesRequest')
@@ -2394,6 +2403,12 @@ module Aws::Connect
2394
2403
  AssociatePhoneNumberContactFlowRequest.add_member(:contact_flow_id, Shapes::ShapeRef.new(shape: ContactFlowId, required: true, location_name: "ContactFlowId"))
2395
2404
  AssociatePhoneNumberContactFlowRequest.struct_class = Types::AssociatePhoneNumberContactFlowRequest
2396
2405
 
2406
+ AssociateQueueEmailAddressesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
2407
+ AssociateQueueEmailAddressesRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "QueueId"))
2408
+ AssociateQueueEmailAddressesRequest.add_member(:email_addresses_config, Shapes::ShapeRef.new(shape: EmailAddressConfigList, required: true, location_name: "EmailAddressesConfig"))
2409
+ AssociateQueueEmailAddressesRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
2410
+ AssociateQueueEmailAddressesRequest.struct_class = Types::AssociateQueueEmailAddressesRequest
2411
+
2397
2412
  AssociateQueueQuickConnectsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
2398
2413
  AssociateQueueQuickConnectsRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "QueueId"))
2399
2414
  AssociateQueueQuickConnectsRequest.add_member(:quick_connect_ids, Shapes::ShapeRef.new(shape: QuickConnectsList, required: true, location_name: "QuickConnectIds"))
@@ -3402,6 +3417,7 @@ module Aws::Connect
3402
3417
  CreateQueueRequest.add_member(:hours_of_operation_id, Shapes::ShapeRef.new(shape: HoursOfOperationId, required: true, location_name: "HoursOfOperationId"))
3403
3418
  CreateQueueRequest.add_member(:max_contacts, Shapes::ShapeRef.new(shape: QueueMaxContacts, location_name: "MaxContacts", metadata: {"box" => true}))
3404
3419
  CreateQueueRequest.add_member(:quick_connect_ids, Shapes::ShapeRef.new(shape: QuickConnectsList, location_name: "QuickConnectIds"))
3420
+ CreateQueueRequest.add_member(:email_addresses_config, Shapes::ShapeRef.new(shape: EmailAddressConfigList, location_name: "EmailAddressesConfig"))
3405
3421
  CreateQueueRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
3406
3422
  CreateQueueRequest.struct_class = Types::CreateQueueRequest
3407
3423
 
@@ -4333,6 +4349,12 @@ module Aws::Connect
4333
4349
  DisassociatePhoneNumberContactFlowRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "querystring", location_name: "instanceId"))
4334
4350
  DisassociatePhoneNumberContactFlowRequest.struct_class = Types::DisassociatePhoneNumberContactFlowRequest
4335
4351
 
4352
+ DisassociateQueueEmailAddressesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
4353
+ DisassociateQueueEmailAddressesRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "QueueId"))
4354
+ DisassociateQueueEmailAddressesRequest.add_member(:email_addresses_id, Shapes::ShapeRef.new(shape: EmailAddressIdList, required: true, location_name: "EmailAddressesId"))
4355
+ DisassociateQueueEmailAddressesRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
4356
+ DisassociateQueueEmailAddressesRequest.struct_class = Types::DisassociateQueueEmailAddressesRequest
4357
+
4336
4358
  DisassociateQueueQuickConnectsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
4337
4359
  DisassociateQueueQuickConnectsRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "QueueId"))
4338
4360
  DisassociateQueueQuickConnectsRequest.add_member(:quick_connect_ids, Shapes::ShapeRef.new(shape: QuickConnectsList, required: true, location_name: "QuickConnectIds"))
@@ -4416,6 +4438,13 @@ module Aws::Connect
4416
4438
 
4417
4439
  EffectiveOverrideHoursList.member = Shapes::ShapeRef.new(shape: EffectiveOverrideHours)
4418
4440
 
4441
+ EmailAddressConfig.add_member(:email_address_id, Shapes::ShapeRef.new(shape: EmailAddressId, required: true, location_name: "EmailAddressId"))
4442
+ EmailAddressConfig.struct_class = Types::EmailAddressConfig
4443
+
4444
+ EmailAddressConfigList.member = Shapes::ShapeRef.new(shape: EmailAddressConfig)
4445
+
4446
+ EmailAddressIdList.member = Shapes::ShapeRef.new(shape: EmailAddressId)
4447
+
4419
4448
  EmailAddressInfo.add_member(:email_address, Shapes::ShapeRef.new(shape: EmailAddress, required: true, location_name: "EmailAddress"))
4420
4449
  EmailAddressInfo.add_member(:display_name, Shapes::ShapeRef.new(shape: EmailAddressDisplayName, location_name: "DisplayName"))
4421
4450
  EmailAddressInfo.struct_class = Types::EmailAddressInfo
@@ -4430,6 +4459,8 @@ module Aws::Connect
4430
4459
  EmailAddressMetadata.add_member(:alias_configurations, Shapes::ShapeRef.new(shape: AliasConfigurationList, location_name: "AliasConfigurations"))
4431
4460
  EmailAddressMetadata.struct_class = Types::EmailAddressMetadata
4432
4461
 
4462
+ EmailAddressMetadataList.member = Shapes::ShapeRef.new(shape: EmailAddressSummary)
4463
+
4433
4464
  EmailAddressRecipientList.member = Shapes::ShapeRef.new(shape: EmailAddressInfo)
4434
4465
 
4435
4466
  EmailAddressSearchConditionList.member = Shapes::ShapeRef.new(shape: EmailAddressSearchCriteria)
@@ -4442,6 +4473,11 @@ module Aws::Connect
4442
4473
  EmailAddressSearchFilter.add_member(:tag_filter, Shapes::ShapeRef.new(shape: ControlPlaneTagFilter, location_name: "TagFilter"))
4443
4474
  EmailAddressSearchFilter.struct_class = Types::EmailAddressSearchFilter
4444
4475
 
4476
+ EmailAddressSummary.add_member(:id, Shapes::ShapeRef.new(shape: EmailAddressId, location_name: "Id"))
4477
+ EmailAddressSummary.add_member(:arn, Shapes::ShapeRef.new(shape: EmailAddressArn, location_name: "Arn"))
4478
+ EmailAddressSummary.add_member(:is_default_outbound_email, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsDefaultOutboundEmail"))
4479
+ EmailAddressSummary.struct_class = Types::EmailAddressSummary
4480
+
4445
4481
  EmailAttachment.add_member(:file_name, Shapes::ShapeRef.new(shape: FileName, required: true, location_name: "FileName"))
4446
4482
  EmailAttachment.add_member(:s3_url, Shapes::ShapeRef.new(shape: PreSignedAttachmentUrl, required: true, location_name: "S3Url"))
4447
4483
  EmailAttachment.struct_class = Types::EmailAttachment
@@ -5996,6 +6032,18 @@ module Aws::Connect
5996
6032
  ListPromptsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
5997
6033
  ListPromptsResponse.struct_class = Types::ListPromptsResponse
5998
6034
 
6035
+ ListQueueEmailAddressesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
6036
+ ListQueueEmailAddressesRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "QueueId"))
6037
+ ListQueueEmailAddressesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
6038
+ ListQueueEmailAddressesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location: "querystring", location_name: "maxResults", metadata: {"box" => true}))
6039
+ ListQueueEmailAddressesRequest.struct_class = Types::ListQueueEmailAddressesRequest
6040
+
6041
+ ListQueueEmailAddressesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
6042
+ ListQueueEmailAddressesResponse.add_member(:email_address_metadata_list, Shapes::ShapeRef.new(shape: EmailAddressMetadataList, location_name: "EmailAddressMetadataList"))
6043
+ ListQueueEmailAddressesResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
6044
+ ListQueueEmailAddressesResponse.add_member(:last_modified_region, Shapes::ShapeRef.new(shape: RegionName, location_name: "LastModifiedRegion"))
6045
+ ListQueueEmailAddressesResponse.struct_class = Types::ListQueueEmailAddressesResponse
6046
+
5999
6047
  ListQueueQuickConnectsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
6000
6048
  ListQueueQuickConnectsRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "QueueId"))
6001
6049
  ListQueueQuickConnectsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
@@ -9494,6 +9542,21 @@ module Aws::Connect
9494
9542
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
9495
9543
  end)
9496
9544
 
9545
+ api.add_operation(:associate_queue_email_addresses, Seahorse::Model::Operation.new.tap do |o|
9546
+ o.name = "AssociateQueueEmailAddresses"
9547
+ o.http_method = "POST"
9548
+ o.http_request_uri = "/queues/{InstanceId}/{QueueId}/associate-email-addresses"
9549
+ o.input = Shapes::ShapeRef.new(shape: AssociateQueueEmailAddressesRequest)
9550
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
9551
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
9552
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
9553
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
9554
+ o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
9555
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
9556
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
9557
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
9558
+ end)
9559
+
9497
9560
  api.add_operation(:associate_queue_quick_connects, Seahorse::Model::Operation.new.tap do |o|
9498
9561
  o.name = "AssociateQueueQuickConnects"
9499
9562
  o.http_method = "POST"
@@ -11391,6 +11454,20 @@ module Aws::Connect
11391
11454
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
11392
11455
  end)
11393
11456
 
11457
+ api.add_operation(:disassociate_queue_email_addresses, Seahorse::Model::Operation.new.tap do |o|
11458
+ o.name = "DisassociateQueueEmailAddresses"
11459
+ o.http_method = "POST"
11460
+ o.http_request_uri = "/queues/{InstanceId}/{QueueId}/disassociate-email-addresses"
11461
+ o.input = Shapes::ShapeRef.new(shape: DisassociateQueueEmailAddressesRequest)
11462
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
11463
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
11464
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
11465
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
11466
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
11467
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
11468
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
11469
+ end)
11470
+
11394
11471
  api.add_operation(:disassociate_queue_quick_connects, Seahorse::Model::Operation.new.tap do |o|
11395
11472
  o.name = "DisassociateQueueQuickConnects"
11396
11473
  o.http_method = "POST"
@@ -12433,6 +12510,20 @@ module Aws::Connect
12433
12510
  )
12434
12511
  end)
12435
12512
 
12513
+ api.add_operation(:list_queue_email_addresses, Seahorse::Model::Operation.new.tap do |o|
12514
+ o.name = "ListQueueEmailAddresses"
12515
+ o.http_method = "GET"
12516
+ o.http_request_uri = "/queues/{InstanceId}/{QueueId}/email-addresses"
12517
+ o.input = Shapes::ShapeRef.new(shape: ListQueueEmailAddressesRequest)
12518
+ o.output = Shapes::ShapeRef.new(shape: ListQueueEmailAddressesResponse)
12519
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
12520
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
12521
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
12522
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
12523
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
12524
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
12525
+ end)
12526
+
12436
12527
  api.add_operation(:list_queue_quick_connects, Seahorse::Model::Operation.new.tap do |o|
12437
12528
  o.name = "ListQueueQuickConnects"
12438
12529
  o.http_method = "GET"
@@ -1321,6 +1321,50 @@ module Aws::Connect
1321
1321
  include Aws::Structure
1322
1322
  end
1323
1323
 
1324
+ # @!attribute [rw] instance_id
1325
+ # The identifier of the Amazon Connect instance. You can [find the
1326
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
1327
+ #
1328
+ #
1329
+ #
1330
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
1331
+ # @return [String]
1332
+ #
1333
+ # @!attribute [rw] queue_id
1334
+ # The identifier for the queue.
1335
+ # @return [String]
1336
+ #
1337
+ # @!attribute [rw] email_addresses_config
1338
+ # Configuration list containing the email addresses to associate with
1339
+ # the queue. Each configuration specifies an email address ID that
1340
+ # should be linked to this queue for routing purposes.
1341
+ # @return [Array<Types::EmailAddressConfig>]
1342
+ #
1343
+ # @!attribute [rw] client_token
1344
+ # A unique, case-sensitive identifier that you provide to ensure the
1345
+ # idempotency of the request. If not provided, the Amazon Web Services
1346
+ # SDK populates this field. For more information about idempotency,
1347
+ # see [Making retries safe with idempotent APIs][1].
1348
+ #
1349
+ # **A suitable default value is auto-generated.** You should normally
1350
+ # not need to pass this option.
1351
+ #
1352
+ #
1353
+ #
1354
+ # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
1355
+ # @return [String]
1356
+ #
1357
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateQueueEmailAddressesRequest AWS API Documentation
1358
+ #
1359
+ class AssociateQueueEmailAddressesRequest < Struct.new(
1360
+ :instance_id,
1361
+ :queue_id,
1362
+ :email_addresses_config,
1363
+ :client_token)
1364
+ SENSITIVE = []
1365
+ include Aws::Structure
1366
+ end
1367
+
1324
1368
  # @!attribute [rw] instance_id
1325
1369
  # The identifier of the Amazon Connect instance. You can [find the
1326
1370
  # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
@@ -6519,6 +6563,13 @@ module Aws::Connect
6519
6563
  # The quick connects available to agents who are working the queue.
6520
6564
  # @return [Array<String>]
6521
6565
  #
6566
+ # @!attribute [rw] email_addresses_config
6567
+ # Configuration list containing the email addresses to associate with
6568
+ # the queue during creation. Each configuration specifies an email
6569
+ # address ID that agents can select when handling email contacts in
6570
+ # this queue.
6571
+ # @return [Array<Types::EmailAddressConfig>]
6572
+ #
6522
6573
  # @!attribute [rw] tags
6523
6574
  # The tags used to organize, track, or control access for this
6524
6575
  # resource. For example, \{ "Tags": \{"key1":"value1",
@@ -6536,6 +6587,7 @@ module Aws::Connect
6536
6587
  :hours_of_operation_id,
6537
6588
  :max_contacts,
6538
6589
  :quick_connect_ids,
6590
+ :email_addresses_config,
6539
6591
  :tags)
6540
6592
  SENSITIVE = []
6541
6593
  include Aws::Structure
@@ -11212,6 +11264,50 @@ module Aws::Connect
11212
11264
  include Aws::Structure
11213
11265
  end
11214
11266
 
11267
+ # @!attribute [rw] instance_id
11268
+ # The identifier of the Amazon Connect instance. You can [find the
11269
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
11270
+ #
11271
+ #
11272
+ #
11273
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
11274
+ # @return [String]
11275
+ #
11276
+ # @!attribute [rw] queue_id
11277
+ # The identifier for the queue.
11278
+ # @return [String]
11279
+ #
11280
+ # @!attribute [rw] email_addresses_id
11281
+ # List of email address identifiers to disassociate from the queue.
11282
+ # These are the unique identifiers of email addresses that should no
11283
+ # longer be routed to this queue.
11284
+ # @return [Array<String>]
11285
+ #
11286
+ # @!attribute [rw] client_token
11287
+ # A unique, case-sensitive identifier that you provide to ensure the
11288
+ # idempotency of the request. If not provided, the Amazon Web Services
11289
+ # SDK populates this field. For more information about idempotency,
11290
+ # see [Making retries safe with idempotent APIs][1].
11291
+ #
11292
+ # **A suitable default value is auto-generated.** You should normally
11293
+ # not need to pass this option.
11294
+ #
11295
+ #
11296
+ #
11297
+ # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
11298
+ # @return [String]
11299
+ #
11300
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateQueueEmailAddressesRequest AWS API Documentation
11301
+ #
11302
+ class DisassociateQueueEmailAddressesRequest < Struct.new(
11303
+ :instance_id,
11304
+ :queue_id,
11305
+ :email_addresses_id,
11306
+ :client_token)
11307
+ SENSITIVE = []
11308
+ include Aws::Structure
11309
+ end
11310
+
11215
11311
  # @!attribute [rw] instance_id
11216
11312
  # The identifier of the Amazon Connect instance. You can [find the
11217
11313
  # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
@@ -11594,6 +11690,25 @@ module Aws::Connect
11594
11690
  include Aws::Structure
11595
11691
  end
11596
11692
 
11693
+ # Configuration object that specifies an email address to be associated
11694
+ # with a queue. This configuration contains the identifier of the email
11695
+ # address that should be linked to the queue for routing email contacts.
11696
+ #
11697
+ # @!attribute [rw] email_address_id
11698
+ # The identifier of the email address that should be associated with
11699
+ # the queue. This email address must already exist in the Amazon
11700
+ # Connect instance and will be used to route incoming email contacts
11701
+ # to the specified queue.
11702
+ # @return [String]
11703
+ #
11704
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EmailAddressConfig AWS API Documentation
11705
+ #
11706
+ class EmailAddressConfig < Struct.new(
11707
+ :email_address_id)
11708
+ SENSITIVE = []
11709
+ include Aws::Structure
11710
+ end
11711
+
11597
11712
  # Contains information about a source or destination email address.
11598
11713
  #
11599
11714
  # @!attribute [rw] email_address
@@ -11704,6 +11819,37 @@ module Aws::Connect
11704
11819
  include Aws::Structure
11705
11820
  end
11706
11821
 
11822
+ # Summary information about an email address associated with a queue.
11823
+ # Contains the essential details needed to identify and manage the email
11824
+ # address routing configuration.
11825
+ #
11826
+ # @!attribute [rw] id
11827
+ # The unique identifier of the email address associated with the
11828
+ # queue.
11829
+ # @return [String]
11830
+ #
11831
+ # @!attribute [rw] arn
11832
+ # The Amazon Resource Name (ARN) of the email address associated with
11833
+ # the queue.
11834
+ # @return [String]
11835
+ #
11836
+ # @!attribute [rw] is_default_outbound_email
11837
+ # Indicates whether this email address is configured as the default
11838
+ # outbound email address for the queue. When set to true, this email
11839
+ # address is used as the default sender for outbound email contacts
11840
+ # from this queue.
11841
+ # @return [Boolean]
11842
+ #
11843
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EmailAddressSummary AWS API Documentation
11844
+ #
11845
+ class EmailAddressSummary < Struct.new(
11846
+ :id,
11847
+ :arn,
11848
+ :is_default_outbound_email)
11849
+ SENSITIVE = []
11850
+ include Aws::Structure
11851
+ end
11852
+
11707
11853
  # Information about the email attachment files.
11708
11854
  #
11709
11855
  # @!attribute [rw] file_name
@@ -21784,6 +21930,71 @@ module Aws::Connect
21784
21930
  include Aws::Structure
21785
21931
  end
21786
21932
 
21933
+ # @!attribute [rw] instance_id
21934
+ # The identifier of the Amazon Connect instance. You can [find the
21935
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
21936
+ #
21937
+ #
21938
+ #
21939
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
21940
+ # @return [String]
21941
+ #
21942
+ # @!attribute [rw] queue_id
21943
+ # The identifier for the queue.
21944
+ # @return [String]
21945
+ #
21946
+ # @!attribute [rw] next_token
21947
+ # The token for the next set of results. Use the value returned in the
21948
+ # previous response in the next request to retrieve the next set of
21949
+ # results.
21950
+ # @return [String]
21951
+ #
21952
+ # @!attribute [rw] max_results
21953
+ # The maximum number of results to return per page.
21954
+ # @return [Integer]
21955
+ #
21956
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListQueueEmailAddressesRequest AWS API Documentation
21957
+ #
21958
+ class ListQueueEmailAddressesRequest < Struct.new(
21959
+ :instance_id,
21960
+ :queue_id,
21961
+ :next_token,
21962
+ :max_results)
21963
+ SENSITIVE = []
21964
+ include Aws::Structure
21965
+ end
21966
+
21967
+ # @!attribute [rw] next_token
21968
+ # If there are additional results, this is the token for the next set
21969
+ # of results.
21970
+ # @return [String]
21971
+ #
21972
+ # @!attribute [rw] email_address_metadata_list
21973
+ # List of email address summary information for all email addresses
21974
+ # associated with the queue. Each item contains the email address
21975
+ # identifier, ARN, and configuration details.
21976
+ # @return [Array<Types::EmailAddressSummary>]
21977
+ #
21978
+ # @!attribute [rw] last_modified_time
21979
+ # The timestamp when this resource was last modified.
21980
+ # @return [Time]
21981
+ #
21982
+ # @!attribute [rw] last_modified_region
21983
+ # The Amazon Web Services Region where this resource was last
21984
+ # modified.
21985
+ # @return [String]
21986
+ #
21987
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListQueueEmailAddressesResponse AWS API Documentation
21988
+ #
21989
+ class ListQueueEmailAddressesResponse < Struct.new(
21990
+ :next_token,
21991
+ :email_address_metadata_list,
21992
+ :last_modified_time,
21993
+ :last_modified_region)
21994
+ SENSITIVE = []
21995
+ include Aws::Structure
21996
+ end
21997
+
21787
21998
  # @!attribute [rw] instance_id
21788
21999
  # The identifier of the Amazon Connect instance. You can [find the
21789
22000
  # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
@@ -54,7 +54,7 @@ module Aws::Connect
54
54
  autoload :EndpointProvider, 'aws-sdk-connect/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-connect/endpoints'
56
56
 
57
- GEM_VERSION = '1.244.0'
57
+ GEM_VERSION = '1.245.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -254,6 +254,19 @@ module Aws
254
254
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
255
255
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
256
256
 
257
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#associate_queue_email_addresses-instance_method
258
+ def associate_queue_email_addresses: (
259
+ instance_id: ::String,
260
+ queue_id: ::String,
261
+ email_addresses_config: Array[
262
+ {
263
+ email_address_id: ::String
264
+ },
265
+ ],
266
+ ?client_token: ::String
267
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
268
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
269
+
257
270
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#associate_queue_quick_connects-instance_method
258
271
  def associate_queue_quick_connects: (
259
272
  instance_id: ::String,
@@ -1190,6 +1203,11 @@ module Aws
1190
1203
  hours_of_operation_id: ::String,
1191
1204
  ?max_contacts: ::Integer,
1192
1205
  ?quick_connect_ids: Array[::String],
1206
+ ?email_addresses_config: Array[
1207
+ {
1208
+ email_address_id: ::String
1209
+ },
1210
+ ],
1193
1211
  ?tags: Hash[::String, ::String]
1194
1212
  ) -> _CreateQueueResponseSuccess
1195
1213
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateQueueResponseSuccess
@@ -2592,6 +2610,15 @@ module Aws
2592
2610
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2593
2611
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2594
2612
 
2613
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#disassociate_queue_email_addresses-instance_method
2614
+ def disassociate_queue_email_addresses: (
2615
+ instance_id: ::String,
2616
+ queue_id: ::String,
2617
+ email_addresses_id: Array[::String],
2618
+ ?client_token: ::String
2619
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2620
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2621
+
2595
2622
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#disassociate_queue_quick_connects-instance_method
2596
2623
  def disassociate_queue_quick_connects: (
2597
2624
  instance_id: ::String,
@@ -3575,6 +3602,22 @@ module Aws
3575
3602
  ) -> _ListPromptsResponseSuccess
3576
3603
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPromptsResponseSuccess
3577
3604
 
3605
+ interface _ListQueueEmailAddressesResponseSuccess
3606
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListQueueEmailAddressesResponse]
3607
+ def next_token: () -> ::String
3608
+ def email_address_metadata_list: () -> ::Array[Types::EmailAddressSummary]
3609
+ def last_modified_time: () -> ::Time
3610
+ def last_modified_region: () -> ::String
3611
+ end
3612
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_queue_email_addresses-instance_method
3613
+ def list_queue_email_addresses: (
3614
+ instance_id: ::String,
3615
+ queue_id: ::String,
3616
+ ?next_token: ::String,
3617
+ ?max_results: ::Integer
3618
+ ) -> _ListQueueEmailAddressesResponseSuccess
3619
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListQueueEmailAddressesResponseSuccess
3620
+
3578
3621
  interface _ListQueueQuickConnectsResponseSuccess
3579
3622
  include ::Seahorse::Client::_ResponseSuccess[Types::ListQueueQuickConnectsResponse]
3580
3623
  def next_token: () -> ::String
data/sig/types.rbs CHANGED
@@ -329,6 +329,14 @@ module Aws::Connect
329
329
  SENSITIVE: []
330
330
  end
331
331
 
332
+ class AssociateQueueEmailAddressesRequest
333
+ attr_accessor instance_id: ::String
334
+ attr_accessor queue_id: ::String
335
+ attr_accessor email_addresses_config: ::Array[Types::EmailAddressConfig]
336
+ attr_accessor client_token: ::String
337
+ SENSITIVE: []
338
+ end
339
+
332
340
  class AssociateQueueQuickConnectsRequest
333
341
  attr_accessor instance_id: ::String
334
342
  attr_accessor queue_id: ::String
@@ -1533,6 +1541,7 @@ module Aws::Connect
1533
1541
  attr_accessor hours_of_operation_id: ::String
1534
1542
  attr_accessor max_contacts: ::Integer
1535
1543
  attr_accessor quick_connect_ids: ::Array[::String]
1544
+ attr_accessor email_addresses_config: ::Array[Types::EmailAddressConfig]
1536
1545
  attr_accessor tags: ::Hash[::String, ::String]
1537
1546
  SENSITIVE: []
1538
1547
  end
@@ -2811,6 +2820,14 @@ module Aws::Connect
2811
2820
  SENSITIVE: []
2812
2821
  end
2813
2822
 
2823
+ class DisassociateQueueEmailAddressesRequest
2824
+ attr_accessor instance_id: ::String
2825
+ attr_accessor queue_id: ::String
2826
+ attr_accessor email_addresses_id: ::Array[::String]
2827
+ attr_accessor client_token: ::String
2828
+ SENSITIVE: []
2829
+ end
2830
+
2814
2831
  class DisassociateQueueQuickConnectsRequest
2815
2832
  attr_accessor instance_id: ::String
2816
2833
  attr_accessor queue_id: ::String
@@ -2920,6 +2937,11 @@ module Aws::Connect
2920
2937
  SENSITIVE: []
2921
2938
  end
2922
2939
 
2940
+ class EmailAddressConfig
2941
+ attr_accessor email_address_id: ::String
2942
+ SENSITIVE: []
2943
+ end
2944
+
2923
2945
  class EmailAddressInfo
2924
2946
  attr_accessor email_address: ::String
2925
2947
  attr_accessor display_name: ::String
@@ -2948,6 +2970,13 @@ module Aws::Connect
2948
2970
  SENSITIVE: []
2949
2971
  end
2950
2972
 
2973
+ class EmailAddressSummary
2974
+ attr_accessor id: ::String
2975
+ attr_accessor arn: ::String
2976
+ attr_accessor is_default_outbound_email: bool
2977
+ SENSITIVE: []
2978
+ end
2979
+
2951
2980
  class EmailAttachment
2952
2981
  attr_accessor file_name: ::String
2953
2982
  attr_accessor s3_url: ::String
@@ -4917,6 +4946,22 @@ module Aws::Connect
4917
4946
  SENSITIVE: []
4918
4947
  end
4919
4948
 
4949
+ class ListQueueEmailAddressesRequest
4950
+ attr_accessor instance_id: ::String
4951
+ attr_accessor queue_id: ::String
4952
+ attr_accessor next_token: ::String
4953
+ attr_accessor max_results: ::Integer
4954
+ SENSITIVE: []
4955
+ end
4956
+
4957
+ class ListQueueEmailAddressesResponse
4958
+ attr_accessor next_token: ::String
4959
+ attr_accessor email_address_metadata_list: ::Array[Types::EmailAddressSummary]
4960
+ attr_accessor last_modified_time: ::Time
4961
+ attr_accessor last_modified_region: ::String
4962
+ SENSITIVE: []
4963
+ end
4964
+
4920
4965
  class ListQueueQuickConnectsRequest
4921
4966
  attr_accessor instance_id: ::String
4922
4967
  attr_accessor queue_id: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.244.0
4
+ version: 1.245.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services