aws-sdk-sesv2 1.66.0 → 1.68.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: 72f8eded409f873d6c7913616d72c25b98c2270ad52cd178696e7df7bcb2f778
4
- data.tar.gz: 4d855662cc268093fcb4365175bbf42499d412921ae9826612352bca25f53f35
3
+ metadata.gz: 89fdd4e7e071c2e63882e7ceaf90a11ab1bc6c51846216a6ef4a242e708df934
4
+ data.tar.gz: e8c71a4fb7af9344dc11e6fe5d0a7efe9303dcecd68fa8e8b38116a9947497ef
5
5
  SHA512:
6
- metadata.gz: 8477f5524b55181864c802f50ba6d1016f8fc5717a81c2d7dca98a9b64d7e95f02b8bb0017218c360b8a998cec65ef9e00e4c8738749122c9898d75cd1974f32
7
- data.tar.gz: 6a6a704798d9a400822f217400cd814c27e2ef62c306adfa28ec7162e32d6709694af26940f0d4051fdf60e710f9d9d34fe79203c8d3b6f44c0e95c6722e56d4
6
+ metadata.gz: aebe07489ac7a6675e18e6f4ae1dc14b5318ec73587ebc8345e1971472cb665a03cba2d96b5754789424d2a90a805f0a65f752faa1a4e8527a373e0de4d17319
7
+ data.tar.gz: 6dd5e1cb41ddcae4817d87ec1b962c45a146dae0672d2b1ac89f3f30d681e3f1e20a371883d2a5bc1a64aa0e5ead40cf20664ef79cc3b037241c8e8b79ae25ec
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2024-12-11)
5
+ ------------------
6
+
7
+ * Feature - Introduces support for multi-region endpoint.
8
+
9
+ 1.67.0 (2024-12-10)
10
+ ------------------
11
+
12
+ * Feature - Introduces support for creating DEED (Deterministic Easy-DKIM) identities.
13
+
4
14
  1.66.0 (2024-10-31)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.68.0
@@ -1064,6 +1064,7 @@ module Aws::SESV2
1064
1064
  # domain_signing_selector: "Selector",
1065
1065
  # domain_signing_private_key: "PrivateKey",
1066
1066
  # next_signing_key_length: "RSA_1024_BIT", # accepts RSA_1024_BIT, RSA_2048_BIT
1067
+ # domain_signing_attributes_origin: "AWS_SES", # accepts AWS_SES, EXTERNAL, AWS_SES_AF_SOUTH_1, AWS_SES_EU_NORTH_1, AWS_SES_AP_SOUTH_1, AWS_SES_EU_WEST_3, AWS_SES_EU_WEST_2, AWS_SES_EU_SOUTH_1, AWS_SES_EU_WEST_1, AWS_SES_AP_NORTHEAST_3, AWS_SES_AP_NORTHEAST_2, AWS_SES_ME_SOUTH_1, AWS_SES_AP_NORTHEAST_1, AWS_SES_IL_CENTRAL_1, AWS_SES_SA_EAST_1, AWS_SES_CA_CENTRAL_1, AWS_SES_AP_SOUTHEAST_1, AWS_SES_AP_SOUTHEAST_2, AWS_SES_AP_SOUTHEAST_3, AWS_SES_EU_CENTRAL_1, AWS_SES_US_EAST_1, AWS_SES_US_EAST_2, AWS_SES_US_WEST_1, AWS_SES_US_WEST_2
1067
1068
  # },
1068
1069
  # configuration_set_name: "ConfigurationSetName",
1069
1070
  # })
@@ -1076,7 +1077,7 @@ module Aws::SESV2
1076
1077
  # resp.dkim_attributes.status #=> String, one of "PENDING", "SUCCESS", "FAILED", "TEMPORARY_FAILURE", "NOT_STARTED"
1077
1078
  # resp.dkim_attributes.tokens #=> Array
1078
1079
  # resp.dkim_attributes.tokens[0] #=> String
1079
- # resp.dkim_attributes.signing_attributes_origin #=> String, one of "AWS_SES", "EXTERNAL"
1080
+ # resp.dkim_attributes.signing_attributes_origin #=> String, one of "AWS_SES", "EXTERNAL", "AWS_SES_AF_SOUTH_1", "AWS_SES_EU_NORTH_1", "AWS_SES_AP_SOUTH_1", "AWS_SES_EU_WEST_3", "AWS_SES_EU_WEST_2", "AWS_SES_EU_SOUTH_1", "AWS_SES_EU_WEST_1", "AWS_SES_AP_NORTHEAST_3", "AWS_SES_AP_NORTHEAST_2", "AWS_SES_ME_SOUTH_1", "AWS_SES_AP_NORTHEAST_1", "AWS_SES_IL_CENTRAL_1", "AWS_SES_SA_EAST_1", "AWS_SES_CA_CENTRAL_1", "AWS_SES_AP_SOUTHEAST_1", "AWS_SES_AP_SOUTHEAST_2", "AWS_SES_AP_SOUTHEAST_3", "AWS_SES_EU_CENTRAL_1", "AWS_SES_US_EAST_1", "AWS_SES_US_EAST_2", "AWS_SES_US_WEST_1", "AWS_SES_US_WEST_2"
1080
1081
  # resp.dkim_attributes.next_signing_key_length #=> String, one of "RSA_1024_BIT", "RSA_2048_BIT"
1081
1082
  # resp.dkim_attributes.current_signing_key_length #=> String, one of "RSA_1024_BIT", "RSA_2048_BIT"
1082
1083
  # resp.dkim_attributes.last_key_generation_timestamp #=> Time
@@ -1375,6 +1376,64 @@ module Aws::SESV2
1375
1376
  req.send_request(options)
1376
1377
  end
1377
1378
 
1379
+ # Creates a multi-region endpoint (global-endpoint).
1380
+ #
1381
+ # The primary region is going to be the AWS-Region where the operation
1382
+ # is executed. The secondary region has to be provided in request's
1383
+ # parameters. From the data flow standpoint there is no difference
1384
+ # between primary and secondary regions - sending traffic will be split
1385
+ # equally between the two. The primary region is the region where the
1386
+ # resource has been created and where it can be managed.
1387
+ #
1388
+ # @option params [required, String] :endpoint_name
1389
+ # The name of the multi-region endpoint (global-endpoint).
1390
+ #
1391
+ # @option params [required, Types::Details] :details
1392
+ # Contains details of a multi-region endpoint (global-endpoint) being
1393
+ # created.
1394
+ #
1395
+ # @option params [Array<Types::Tag>] :tags
1396
+ # An array of objects that define the tags (keys and values) to
1397
+ # associate with the multi-region endpoint (global-endpoint).
1398
+ #
1399
+ # @return [Types::CreateMultiRegionEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1400
+ #
1401
+ # * {Types::CreateMultiRegionEndpointResponse#status #status} => String
1402
+ # * {Types::CreateMultiRegionEndpointResponse#endpoint_id #endpoint_id} => String
1403
+ #
1404
+ # @example Request syntax with placeholder values
1405
+ #
1406
+ # resp = client.create_multi_region_endpoint({
1407
+ # endpoint_name: "EndpointName", # required
1408
+ # details: { # required
1409
+ # routes_details: [ # required
1410
+ # {
1411
+ # region: "Region", # required
1412
+ # },
1413
+ # ],
1414
+ # },
1415
+ # tags: [
1416
+ # {
1417
+ # key: "TagKey", # required
1418
+ # value: "TagValue", # required
1419
+ # },
1420
+ # ],
1421
+ # })
1422
+ #
1423
+ # @example Response structure
1424
+ #
1425
+ # resp.status #=> String, one of "CREATING", "READY", "FAILED", "DELETING"
1426
+ # resp.endpoint_id #=> String
1427
+ #
1428
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateMultiRegionEndpoint AWS API Documentation
1429
+ #
1430
+ # @overload create_multi_region_endpoint(params = {})
1431
+ # @param [Hash] params ({})
1432
+ def create_multi_region_endpoint(params = {}, options = {})
1433
+ req = build_request(:create_multi_region_endpoint, params)
1434
+ req.send_request(options)
1435
+ end
1436
+
1378
1437
  # Delete an existing configuration set.
1379
1438
  #
1380
1439
  # *Configuration sets* are groups of rules that you can apply to the
@@ -1632,6 +1691,37 @@ module Aws::SESV2
1632
1691
  req.send_request(options)
1633
1692
  end
1634
1693
 
1694
+ # Deletes a multi-region endpoint (global-endpoint).
1695
+ #
1696
+ # Only multi-region endpoints (global-endpoints) whose primary region is
1697
+ # the AWS-Region where operation is executed can be deleted.
1698
+ #
1699
+ # @option params [required, String] :endpoint_name
1700
+ # The name of the multi-region endpoint (global-endpoint) to be deleted.
1701
+ #
1702
+ # @return [Types::DeleteMultiRegionEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1703
+ #
1704
+ # * {Types::DeleteMultiRegionEndpointResponse#status #status} => String
1705
+ #
1706
+ # @example Request syntax with placeholder values
1707
+ #
1708
+ # resp = client.delete_multi_region_endpoint({
1709
+ # endpoint_name: "EndpointName", # required
1710
+ # })
1711
+ #
1712
+ # @example Response structure
1713
+ #
1714
+ # resp.status #=> String, one of "CREATING", "READY", "FAILED", "DELETING"
1715
+ #
1716
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteMultiRegionEndpoint AWS API Documentation
1717
+ #
1718
+ # @overload delete_multi_region_endpoint(params = {})
1719
+ # @param [Hash] params ({})
1720
+ def delete_multi_region_endpoint(params = {}, options = {})
1721
+ req = build_request(:delete_multi_region_endpoint, params)
1722
+ req.send_request(options)
1723
+ end
1724
+
1635
1725
  # Removes an email address from the suppression list for your account.
1636
1726
  #
1637
1727
  # @option params [required, String] :email_address
@@ -2349,7 +2439,7 @@ module Aws::SESV2
2349
2439
  # resp.dkim_attributes.status #=> String, one of "PENDING", "SUCCESS", "FAILED", "TEMPORARY_FAILURE", "NOT_STARTED"
2350
2440
  # resp.dkim_attributes.tokens #=> Array
2351
2441
  # resp.dkim_attributes.tokens[0] #=> String
2352
- # resp.dkim_attributes.signing_attributes_origin #=> String, one of "AWS_SES", "EXTERNAL"
2442
+ # resp.dkim_attributes.signing_attributes_origin #=> String, one of "AWS_SES", "EXTERNAL", "AWS_SES_AF_SOUTH_1", "AWS_SES_EU_NORTH_1", "AWS_SES_AP_SOUTH_1", "AWS_SES_EU_WEST_3", "AWS_SES_EU_WEST_2", "AWS_SES_EU_SOUTH_1", "AWS_SES_EU_WEST_1", "AWS_SES_AP_NORTHEAST_3", "AWS_SES_AP_NORTHEAST_2", "AWS_SES_ME_SOUTH_1", "AWS_SES_AP_NORTHEAST_1", "AWS_SES_IL_CENTRAL_1", "AWS_SES_SA_EAST_1", "AWS_SES_CA_CENTRAL_1", "AWS_SES_AP_SOUTHEAST_1", "AWS_SES_AP_SOUTHEAST_2", "AWS_SES_AP_SOUTHEAST_3", "AWS_SES_EU_CENTRAL_1", "AWS_SES_US_EAST_1", "AWS_SES_US_EAST_2", "AWS_SES_US_WEST_1", "AWS_SES_US_WEST_2"
2353
2443
  # resp.dkim_attributes.next_signing_key_length #=> String, one of "RSA_1024_BIT", "RSA_2048_BIT"
2354
2444
  # resp.dkim_attributes.current_signing_key_length #=> String, one of "RSA_1024_BIT", "RSA_2048_BIT"
2355
2445
  # resp.dkim_attributes.last_key_generation_timestamp #=> Time
@@ -2365,7 +2455,7 @@ module Aws::SESV2
2365
2455
  # resp.verification_status #=> String, one of "PENDING", "SUCCESS", "FAILED", "TEMPORARY_FAILURE", "NOT_STARTED"
2366
2456
  # resp.verification_info.last_checked_timestamp #=> Time
2367
2457
  # resp.verification_info.last_success_timestamp #=> Time
2368
- # resp.verification_info.error_type #=> String, one of "SERVICE_ERROR", "DNS_SERVER_ERROR", "HOST_NOT_FOUND", "TYPE_NOT_FOUND", "INVALID_VALUE"
2458
+ # resp.verification_info.error_type #=> String, one of "SERVICE_ERROR", "DNS_SERVER_ERROR", "HOST_NOT_FOUND", "TYPE_NOT_FOUND", "INVALID_VALUE", "REPLICATION_ACCESS_DENIED", "REPLICATION_PRIMARY_NOT_FOUND", "REPLICATION_PRIMARY_BYO_DKIM_NOT_SUPPORTED", "REPLICATION_REPLICA_AS_PRIMARY_NOT_SUPPORTED", "REPLICATION_PRIMARY_INVALID_REGION"
2369
2459
  # resp.verification_info.soa_record.primary_name_server #=> String
2370
2460
  # resp.verification_info.soa_record.admin_email #=> String
2371
2461
  # resp.verification_info.soa_record.serial_number #=> Integer
@@ -2752,6 +2842,48 @@ module Aws::SESV2
2752
2842
  req.send_request(options)
2753
2843
  end
2754
2844
 
2845
+ # Displays the multi-region endpoint (global-endpoint) configuration.
2846
+ #
2847
+ # Only multi-region endpoints (global-endpoints) whose primary region is
2848
+ # the AWS-Region where operation is executed can be displayed.
2849
+ #
2850
+ # @option params [required, String] :endpoint_name
2851
+ # The name of the multi-region endpoint (global-endpoint).
2852
+ #
2853
+ # @return [Types::GetMultiRegionEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2854
+ #
2855
+ # * {Types::GetMultiRegionEndpointResponse#endpoint_name #endpoint_name} => String
2856
+ # * {Types::GetMultiRegionEndpointResponse#endpoint_id #endpoint_id} => String
2857
+ # * {Types::GetMultiRegionEndpointResponse#routes #routes} => Array&lt;Types::Route&gt;
2858
+ # * {Types::GetMultiRegionEndpointResponse#status #status} => String
2859
+ # * {Types::GetMultiRegionEndpointResponse#created_timestamp #created_timestamp} => Time
2860
+ # * {Types::GetMultiRegionEndpointResponse#last_updated_timestamp #last_updated_timestamp} => Time
2861
+ #
2862
+ # @example Request syntax with placeholder values
2863
+ #
2864
+ # resp = client.get_multi_region_endpoint({
2865
+ # endpoint_name: "EndpointName", # required
2866
+ # })
2867
+ #
2868
+ # @example Response structure
2869
+ #
2870
+ # resp.endpoint_name #=> String
2871
+ # resp.endpoint_id #=> String
2872
+ # resp.routes #=> Array
2873
+ # resp.routes[0].region #=> String
2874
+ # resp.status #=> String, one of "CREATING", "READY", "FAILED", "DELETING"
2875
+ # resp.created_timestamp #=> Time
2876
+ # resp.last_updated_timestamp #=> Time
2877
+ #
2878
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetMultiRegionEndpoint AWS API Documentation
2879
+ #
2880
+ # @overload get_multi_region_endpoint(params = {})
2881
+ # @param [Hash] params ({})
2882
+ def get_multi_region_endpoint(params = {}, options = {})
2883
+ req = build_request(:get_multi_region_endpoint, params)
2884
+ req.send_request(options)
2885
+ end
2886
+
2755
2887
  # Retrieves information about a specific email address that's on the
2756
2888
  # suppression list for your account.
2757
2889
  #
@@ -3410,6 +3542,58 @@ module Aws::SESV2
3410
3542
  req.send_request(options)
3411
3543
  end
3412
3544
 
3545
+ # List the multi-region endpoints (global-endpoints).
3546
+ #
3547
+ # Only multi-region endpoints (global-endpoints) whose primary region is
3548
+ # the AWS-Region where operation is executed will be listed.
3549
+ #
3550
+ # @option params [String] :next_token
3551
+ # A token returned from a previous call to `ListMultiRegionEndpoints` to
3552
+ # indicate the position in the list of multi-region endpoints
3553
+ # (global-endpoints).
3554
+ #
3555
+ # @option params [Integer] :page_size
3556
+ # The number of results to show in a single call to
3557
+ # `ListMultiRegionEndpoints`. If the number of results is larger than
3558
+ # the number you specified in this parameter, the response includes a
3559
+ # `NextToken` element that you can use to retrieve the next page of
3560
+ # results.
3561
+ #
3562
+ # @return [Types::ListMultiRegionEndpointsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3563
+ #
3564
+ # * {Types::ListMultiRegionEndpointsResponse#multi_region_endpoints #multi_region_endpoints} => Array&lt;Types::MultiRegionEndpoint&gt;
3565
+ # * {Types::ListMultiRegionEndpointsResponse#next_token #next_token} => String
3566
+ #
3567
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3568
+ #
3569
+ # @example Request syntax with placeholder values
3570
+ #
3571
+ # resp = client.list_multi_region_endpoints({
3572
+ # next_token: "NextTokenV2",
3573
+ # page_size: 1,
3574
+ # })
3575
+ #
3576
+ # @example Response structure
3577
+ #
3578
+ # resp.multi_region_endpoints #=> Array
3579
+ # resp.multi_region_endpoints[0].endpoint_name #=> String
3580
+ # resp.multi_region_endpoints[0].status #=> String, one of "CREATING", "READY", "FAILED", "DELETING"
3581
+ # resp.multi_region_endpoints[0].endpoint_id #=> String
3582
+ # resp.multi_region_endpoints[0].regions #=> Array
3583
+ # resp.multi_region_endpoints[0].regions[0] #=> String
3584
+ # resp.multi_region_endpoints[0].created_timestamp #=> Time
3585
+ # resp.multi_region_endpoints[0].last_updated_timestamp #=> Time
3586
+ # resp.next_token #=> String
3587
+ #
3588
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListMultiRegionEndpoints AWS API Documentation
3589
+ #
3590
+ # @overload list_multi_region_endpoints(params = {})
3591
+ # @param [Hash] params ({})
3592
+ def list_multi_region_endpoints(params = {}, options = {})
3593
+ req = build_request(:list_multi_region_endpoints, params)
3594
+ req.send_request(options)
3595
+ end
3596
+
3413
3597
  # Lists the recommendations present in your Amazon SES account in the
3414
3598
  # current Amazon Web Services Region.
3415
3599
  #
@@ -4226,11 +4410,12 @@ module Aws::SESV2
4226
4410
  #
4227
4411
  # resp = client.put_email_identity_dkim_signing_attributes({
4228
4412
  # email_identity: "Identity", # required
4229
- # signing_attributes_origin: "AWS_SES", # required, accepts AWS_SES, EXTERNAL
4413
+ # signing_attributes_origin: "AWS_SES", # required, accepts AWS_SES, EXTERNAL, AWS_SES_AF_SOUTH_1, AWS_SES_EU_NORTH_1, AWS_SES_AP_SOUTH_1, AWS_SES_EU_WEST_3, AWS_SES_EU_WEST_2, AWS_SES_EU_SOUTH_1, AWS_SES_EU_WEST_1, AWS_SES_AP_NORTHEAST_3, AWS_SES_AP_NORTHEAST_2, AWS_SES_ME_SOUTH_1, AWS_SES_AP_NORTHEAST_1, AWS_SES_IL_CENTRAL_1, AWS_SES_SA_EAST_1, AWS_SES_CA_CENTRAL_1, AWS_SES_AP_SOUTHEAST_1, AWS_SES_AP_SOUTHEAST_2, AWS_SES_AP_SOUTHEAST_3, AWS_SES_EU_CENTRAL_1, AWS_SES_US_EAST_1, AWS_SES_US_EAST_2, AWS_SES_US_WEST_1, AWS_SES_US_WEST_2
4230
4414
  # signing_attributes: {
4231
4415
  # domain_signing_selector: "Selector",
4232
4416
  # domain_signing_private_key: "PrivateKey",
4233
4417
  # next_signing_key_length: "RSA_1024_BIT", # accepts RSA_1024_BIT, RSA_2048_BIT
4418
+ # domain_signing_attributes_origin: "AWS_SES", # accepts AWS_SES, EXTERNAL, AWS_SES_AF_SOUTH_1, AWS_SES_EU_NORTH_1, AWS_SES_AP_SOUTH_1, AWS_SES_EU_WEST_3, AWS_SES_EU_WEST_2, AWS_SES_EU_SOUTH_1, AWS_SES_EU_WEST_1, AWS_SES_AP_NORTHEAST_3, AWS_SES_AP_NORTHEAST_2, AWS_SES_ME_SOUTH_1, AWS_SES_AP_NORTHEAST_1, AWS_SES_IL_CENTRAL_1, AWS_SES_SA_EAST_1, AWS_SES_CA_CENTRAL_1, AWS_SES_AP_SOUTHEAST_1, AWS_SES_AP_SOUTHEAST_2, AWS_SES_AP_SOUTHEAST_3, AWS_SES_EU_CENTRAL_1, AWS_SES_US_EAST_1, AWS_SES_US_EAST_2, AWS_SES_US_WEST_1, AWS_SES_US_WEST_2
4234
4419
  # },
4235
4420
  # })
4236
4421
  #
@@ -4443,6 +4628,9 @@ module Aws::SESV2
4443
4628
  # @option params [String] :configuration_set_name
4444
4629
  # The name of the configuration set to use when sending the email.
4445
4630
  #
4631
+ # @option params [String] :endpoint_id
4632
+ # The ID of the multi-region endpoint (global-endpoint).
4633
+ #
4446
4634
  # @return [Types::SendBulkEmailResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4447
4635
  #
4448
4636
  # * {Types::SendBulkEmailResponse#bulk_email_entry_results #bulk_email_entry_results} => Array&lt;Types::BulkEmailEntryResult&gt;
@@ -4506,6 +4694,7 @@ module Aws::SESV2
4506
4694
  # },
4507
4695
  # ],
4508
4696
  # configuration_set_name: "ConfigurationSetName",
4697
+ # endpoint_id: "EndpointId",
4509
4698
  # })
4510
4699
  #
4511
4700
  # @example Response structure
@@ -4665,6 +4854,9 @@ module Aws::SESV2
4665
4854
  # @option params [String] :configuration_set_name
4666
4855
  # The name of the configuration set to use when sending the email.
4667
4856
  #
4857
+ # @option params [String] :endpoint_id
4858
+ # The ID of the multi-region endpoint (global-endpoint).
4859
+ #
4668
4860
  # @option params [Types::ListManagementOptions] :list_management_options
4669
4861
  # An object used to specify a list or topic to which an email belongs,
4670
4862
  # which will be used when a contact chooses to unsubscribe.
@@ -4736,6 +4928,7 @@ module Aws::SESV2
4736
4928
  # },
4737
4929
  # ],
4738
4930
  # configuration_set_name: "ConfigurationSetName",
4931
+ # endpoint_id: "EndpointId",
4739
4932
  # list_management_options: {
4740
4933
  # contact_list_name: "ContactListName", # required
4741
4934
  # topic_name: "TopicName",
@@ -5200,7 +5393,7 @@ module Aws::SESV2
5200
5393
  tracer: tracer
5201
5394
  )
5202
5395
  context[:gem_name] = 'aws-sdk-sesv2'
5203
- context[:gem_version] = '1.66.0'
5396
+ context[:gem_version] = '1.68.0'
5204
5397
  Seahorse::Client::Request.new(handlers, context)
5205
5398
  end
5206
5399
 
@@ -91,6 +91,8 @@ module Aws::SESV2
91
91
  CreateExportJobResponse = Shapes::StructureShape.new(name: 'CreateExportJobResponse')
92
92
  CreateImportJobRequest = Shapes::StructureShape.new(name: 'CreateImportJobRequest')
93
93
  CreateImportJobResponse = Shapes::StructureShape.new(name: 'CreateImportJobResponse')
94
+ CreateMultiRegionEndpointRequest = Shapes::StructureShape.new(name: 'CreateMultiRegionEndpointRequest')
95
+ CreateMultiRegionEndpointResponse = Shapes::StructureShape.new(name: 'CreateMultiRegionEndpointResponse')
94
96
  CustomRedirectDomain = Shapes::StringShape.new(name: 'CustomRedirectDomain')
95
97
  CustomVerificationEmailTemplateMetadata = Shapes::StructureShape.new(name: 'CustomVerificationEmailTemplateMetadata')
96
98
  CustomVerificationEmailTemplatesList = Shapes::ListShape.new(name: 'CustomVerificationEmailTemplatesList')
@@ -121,6 +123,8 @@ module Aws::SESV2
121
123
  DeleteEmailIdentityResponse = Shapes::StructureShape.new(name: 'DeleteEmailIdentityResponse')
122
124
  DeleteEmailTemplateRequest = Shapes::StructureShape.new(name: 'DeleteEmailTemplateRequest')
123
125
  DeleteEmailTemplateResponse = Shapes::StructureShape.new(name: 'DeleteEmailTemplateResponse')
126
+ DeleteMultiRegionEndpointRequest = Shapes::StructureShape.new(name: 'DeleteMultiRegionEndpointRequest')
127
+ DeleteMultiRegionEndpointResponse = Shapes::StructureShape.new(name: 'DeleteMultiRegionEndpointResponse')
124
128
  DeleteSuppressedDestinationRequest = Shapes::StructureShape.new(name: 'DeleteSuppressedDestinationRequest')
125
129
  DeleteSuppressedDestinationResponse = Shapes::StructureShape.new(name: 'DeleteSuppressedDestinationResponse')
126
130
  DeliverabilityDashboardAccountStatus = Shapes::StringShape.new(name: 'DeliverabilityDashboardAccountStatus')
@@ -132,6 +136,7 @@ module Aws::SESV2
132
136
  DeliveryOptions = Shapes::StructureShape.new(name: 'DeliveryOptions')
133
137
  Description = Shapes::StringShape.new(name: 'Description')
134
138
  Destination = Shapes::StructureShape.new(name: 'Destination')
139
+ Details = Shapes::StructureShape.new(name: 'Details')
135
140
  DiagnosticCode = Shapes::StringShape.new(name: 'DiagnosticCode')
136
141
  DimensionName = Shapes::StringShape.new(name: 'DimensionName')
137
142
  DimensionValueSource = Shapes::StringShape.new(name: 'DimensionValueSource')
@@ -169,6 +174,8 @@ module Aws::SESV2
169
174
  EmailTemplateText = Shapes::StringShape.new(name: 'EmailTemplateText')
170
175
  Enabled = Shapes::BooleanShape.new(name: 'Enabled')
171
176
  EnabledWrapper = Shapes::BooleanShape.new(name: 'EnabledWrapper')
177
+ EndpointId = Shapes::StringShape.new(name: 'EndpointId')
178
+ EndpointName = Shapes::StringShape.new(name: 'EndpointName')
172
179
  EngagementEventType = Shapes::StringShape.new(name: 'EngagementEventType')
173
180
  ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
174
181
  Esp = Shapes::StringShape.new(name: 'Esp')
@@ -239,6 +246,8 @@ module Aws::SESV2
239
246
  GetImportJobResponse = Shapes::StructureShape.new(name: 'GetImportJobResponse')
240
247
  GetMessageInsightsRequest = Shapes::StructureShape.new(name: 'GetMessageInsightsRequest')
241
248
  GetMessageInsightsResponse = Shapes::StructureShape.new(name: 'GetMessageInsightsResponse')
249
+ GetMultiRegionEndpointRequest = Shapes::StructureShape.new(name: 'GetMultiRegionEndpointRequest')
250
+ GetMultiRegionEndpointResponse = Shapes::StructureShape.new(name: 'GetMultiRegionEndpointResponse')
242
251
  GetSuppressedDestinationRequest = Shapes::StructureShape.new(name: 'GetSuppressedDestinationRequest')
243
252
  GetSuppressedDestinationResponse = Shapes::StructureShape.new(name: 'GetSuppressedDestinationResponse')
244
253
  GuardianAttributes = Shapes::StructureShape.new(name: 'GuardianAttributes')
@@ -299,6 +308,8 @@ module Aws::SESV2
299
308
  ListImportJobsRequest = Shapes::StructureShape.new(name: 'ListImportJobsRequest')
300
309
  ListImportJobsResponse = Shapes::StructureShape.new(name: 'ListImportJobsResponse')
301
310
  ListManagementOptions = Shapes::StructureShape.new(name: 'ListManagementOptions')
311
+ ListMultiRegionEndpointsRequest = Shapes::StructureShape.new(name: 'ListMultiRegionEndpointsRequest')
312
+ ListMultiRegionEndpointsResponse = Shapes::StructureShape.new(name: 'ListMultiRegionEndpointsResponse')
302
313
  ListOfContactLists = Shapes::ListShape.new(name: 'ListOfContactLists')
303
314
  ListOfContacts = Shapes::ListShape.new(name: 'ListOfContacts')
304
315
  ListOfDedicatedIpPools = Shapes::ListShape.new(name: 'ListOfDedicatedIpPools')
@@ -346,10 +357,14 @@ module Aws::SESV2
346
357
  MetricNamespace = Shapes::StringShape.new(name: 'MetricNamespace')
347
358
  MetricValueList = Shapes::ListShape.new(name: 'MetricValueList')
348
359
  MetricsDataSource = Shapes::StructureShape.new(name: 'MetricsDataSource')
360
+ MultiRegionEndpoint = Shapes::StructureShape.new(name: 'MultiRegionEndpoint')
361
+ MultiRegionEndpoints = Shapes::ListShape.new(name: 'MultiRegionEndpoints')
349
362
  NextToken = Shapes::StringShape.new(name: 'NextToken')
363
+ NextTokenV2 = Shapes::StringShape.new(name: 'NextTokenV2')
350
364
  NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
351
365
  OutboundMessageId = Shapes::StringShape.new(name: 'OutboundMessageId')
352
366
  OverallVolume = Shapes::StructureShape.new(name: 'OverallVolume')
367
+ PageSizeV2 = Shapes::IntegerShape.new(name: 'PageSizeV2')
353
368
  Percentage = Shapes::FloatShape.new(name: 'Percentage')
354
369
  Percentage100Wrapper = Shapes::IntegerShape.new(name: 'Percentage100Wrapper')
355
370
  PinpointDestination = Shapes::StructureShape.new(name: 'PinpointDestination')
@@ -415,6 +430,8 @@ module Aws::SESV2
415
430
  RecommendationStatus = Shapes::StringShape.new(name: 'RecommendationStatus')
416
431
  RecommendationType = Shapes::StringShape.new(name: 'RecommendationType')
417
432
  RecommendationsList = Shapes::ListShape.new(name: 'RecommendationsList')
433
+ Region = Shapes::StringShape.new(name: 'Region')
434
+ Regions = Shapes::ListShape.new(name: 'Regions')
418
435
  RenderedEmailTemplate = Shapes::StringShape.new(name: 'RenderedEmailTemplate')
419
436
  ReplacementEmailContent = Shapes::StructureShape.new(name: 'ReplacementEmailContent')
420
437
  ReplacementTemplate = Shapes::StructureShape.new(name: 'ReplacementTemplate')
@@ -423,6 +440,10 @@ module Aws::SESV2
423
440
  ReputationOptions = Shapes::StructureShape.new(name: 'ReputationOptions')
424
441
  ReviewDetails = Shapes::StructureShape.new(name: 'ReviewDetails')
425
442
  ReviewStatus = Shapes::StringShape.new(name: 'ReviewStatus')
443
+ Route = Shapes::StructureShape.new(name: 'Route')
444
+ RouteDetails = Shapes::StructureShape.new(name: 'RouteDetails')
445
+ Routes = Shapes::ListShape.new(name: 'Routes')
446
+ RoutesDetails = Shapes::ListShape.new(name: 'RoutesDetails')
426
447
  S3Url = Shapes::StringShape.new(name: 'S3Url')
427
448
  SOARecord = Shapes::StructureShape.new(name: 'SOARecord')
428
449
  ScalingMode = Shapes::StringShape.new(name: 'ScalingMode')
@@ -440,6 +461,7 @@ module Aws::SESV2
440
461
  SentLast24Hours = Shapes::FloatShape.new(name: 'SentLast24Hours')
441
462
  SerialNumber = Shapes::IntegerShape.new(name: 'SerialNumber')
442
463
  SnsDestination = Shapes::StructureShape.new(name: 'SnsDestination')
464
+ Status = Shapes::StringShape.new(name: 'Status')
443
465
  Subject = Shapes::StringShape.new(name: 'Subject')
444
466
  SubscriptionStatus = Shapes::StringShape.new(name: 'SubscriptionStatus')
445
467
  SuccessRedirectionURL = Shapes::StringShape.new(name: 'SuccessRedirectionURL')
@@ -719,6 +741,15 @@ module Aws::SESV2
719
741
  CreateImportJobResponse.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, location_name: "JobId"))
720
742
  CreateImportJobResponse.struct_class = Types::CreateImportJobResponse
721
743
 
744
+ CreateMultiRegionEndpointRequest.add_member(:endpoint_name, Shapes::ShapeRef.new(shape: EndpointName, required: true, location_name: "EndpointName"))
745
+ CreateMultiRegionEndpointRequest.add_member(:details, Shapes::ShapeRef.new(shape: Details, required: true, location_name: "Details"))
746
+ CreateMultiRegionEndpointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
747
+ CreateMultiRegionEndpointRequest.struct_class = Types::CreateMultiRegionEndpointRequest
748
+
749
+ CreateMultiRegionEndpointResponse.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "Status"))
750
+ CreateMultiRegionEndpointResponse.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: EndpointId, location_name: "EndpointId"))
751
+ CreateMultiRegionEndpointResponse.struct_class = Types::CreateMultiRegionEndpointResponse
752
+
722
753
  CustomVerificationEmailTemplateMetadata.add_member(:template_name, Shapes::ShapeRef.new(shape: EmailTemplateName, location_name: "TemplateName"))
723
754
  CustomVerificationEmailTemplateMetadata.add_member(:from_email_address, Shapes::ShapeRef.new(shape: EmailAddress, location_name: "FromEmailAddress"))
724
755
  CustomVerificationEmailTemplateMetadata.add_member(:template_subject, Shapes::ShapeRef.new(shape: EmailTemplateSubject, location_name: "TemplateSubject"))
@@ -801,6 +832,12 @@ module Aws::SESV2
801
832
 
802
833
  DeleteEmailTemplateResponse.struct_class = Types::DeleteEmailTemplateResponse
803
834
 
835
+ DeleteMultiRegionEndpointRequest.add_member(:endpoint_name, Shapes::ShapeRef.new(shape: EndpointName, required: true, location: "uri", location_name: "EndpointName"))
836
+ DeleteMultiRegionEndpointRequest.struct_class = Types::DeleteMultiRegionEndpointRequest
837
+
838
+ DeleteMultiRegionEndpointResponse.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "Status"))
839
+ DeleteMultiRegionEndpointResponse.struct_class = Types::DeleteMultiRegionEndpointResponse
840
+
804
841
  DeleteSuppressedDestinationRequest.add_member(:email_address, Shapes::ShapeRef.new(shape: EmailAddress, required: true, location: "uri", location_name: "EmailAddress"))
805
842
  DeleteSuppressedDestinationRequest.struct_class = Types::DeleteSuppressedDestinationRequest
806
843
 
@@ -826,6 +863,9 @@ module Aws::SESV2
826
863
  Destination.add_member(:bcc_addresses, Shapes::ShapeRef.new(shape: EmailAddressList, location_name: "BccAddresses"))
827
864
  Destination.struct_class = Types::Destination
828
865
 
866
+ Details.add_member(:routes_details, Shapes::ShapeRef.new(shape: RoutesDetails, required: true, location_name: "RoutesDetails"))
867
+ Details.struct_class = Types::Details
868
+
829
869
  Dimensions.key = Shapes::ShapeRef.new(shape: MetricDimensionName)
830
870
  Dimensions.value = Shapes::ShapeRef.new(shape: MetricDimensionValue)
831
871
 
@@ -841,6 +881,7 @@ module Aws::SESV2
841
881
  DkimSigningAttributes.add_member(:domain_signing_selector, Shapes::ShapeRef.new(shape: Selector, location_name: "DomainSigningSelector"))
842
882
  DkimSigningAttributes.add_member(:domain_signing_private_key, Shapes::ShapeRef.new(shape: PrivateKey, location_name: "DomainSigningPrivateKey"))
843
883
  DkimSigningAttributes.add_member(:next_signing_key_length, Shapes::ShapeRef.new(shape: DkimSigningKeyLength, location_name: "NextSigningKeyLength"))
884
+ DkimSigningAttributes.add_member(:domain_signing_attributes_origin, Shapes::ShapeRef.new(shape: DkimSigningAttributesOrigin, location_name: "DomainSigningAttributesOrigin"))
844
885
  DkimSigningAttributes.struct_class = Types::DkimSigningAttributes
845
886
 
846
887
  DnsTokenList.member = Shapes::ShapeRef.new(shape: DnsToken)
@@ -1170,6 +1211,17 @@ module Aws::SESV2
1170
1211
  GetMessageInsightsResponse.add_member(:insights, Shapes::ShapeRef.new(shape: EmailInsightsList, location_name: "Insights"))
1171
1212
  GetMessageInsightsResponse.struct_class = Types::GetMessageInsightsResponse
1172
1213
 
1214
+ GetMultiRegionEndpointRequest.add_member(:endpoint_name, Shapes::ShapeRef.new(shape: EndpointName, required: true, location: "uri", location_name: "EndpointName"))
1215
+ GetMultiRegionEndpointRequest.struct_class = Types::GetMultiRegionEndpointRequest
1216
+
1217
+ GetMultiRegionEndpointResponse.add_member(:endpoint_name, Shapes::ShapeRef.new(shape: EndpointName, location_name: "EndpointName"))
1218
+ GetMultiRegionEndpointResponse.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: EndpointId, location_name: "EndpointId"))
1219
+ GetMultiRegionEndpointResponse.add_member(:routes, Shapes::ShapeRef.new(shape: Routes, location_name: "Routes"))
1220
+ GetMultiRegionEndpointResponse.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "Status"))
1221
+ GetMultiRegionEndpointResponse.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTimestamp"))
1222
+ GetMultiRegionEndpointResponse.add_member(:last_updated_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedTimestamp"))
1223
+ GetMultiRegionEndpointResponse.struct_class = Types::GetMultiRegionEndpointResponse
1224
+
1173
1225
  GetSuppressedDestinationRequest.add_member(:email_address, Shapes::ShapeRef.new(shape: EmailAddress, required: true, location: "uri", location_name: "EmailAddress"))
1174
1226
  GetSuppressedDestinationRequest.struct_class = Types::GetSuppressedDestinationRequest
1175
1227
 
@@ -1349,6 +1401,14 @@ module Aws::SESV2
1349
1401
  ListManagementOptions.add_member(:topic_name, Shapes::ShapeRef.new(shape: TopicName, location_name: "TopicName"))
1350
1402
  ListManagementOptions.struct_class = Types::ListManagementOptions
1351
1403
 
1404
+ ListMultiRegionEndpointsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextTokenV2, location: "querystring", location_name: "NextToken"))
1405
+ ListMultiRegionEndpointsRequest.add_member(:page_size, Shapes::ShapeRef.new(shape: PageSizeV2, location: "querystring", location_name: "PageSize"))
1406
+ ListMultiRegionEndpointsRequest.struct_class = Types::ListMultiRegionEndpointsRequest
1407
+
1408
+ ListMultiRegionEndpointsResponse.add_member(:multi_region_endpoints, Shapes::ShapeRef.new(shape: MultiRegionEndpoints, location_name: "MultiRegionEndpoints"))
1409
+ ListMultiRegionEndpointsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextTokenV2, location_name: "NextToken"))
1410
+ ListMultiRegionEndpointsResponse.struct_class = Types::ListMultiRegionEndpointsResponse
1411
+
1352
1412
  ListOfContactLists.member = Shapes::ShapeRef.new(shape: ContactList)
1353
1413
 
1354
1414
  ListOfContacts.member = Shapes::ShapeRef.new(shape: Contact)
@@ -1448,6 +1508,16 @@ module Aws::SESV2
1448
1508
  MetricsDataSource.add_member(:end_date, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "EndDate"))
1449
1509
  MetricsDataSource.struct_class = Types::MetricsDataSource
1450
1510
 
1511
+ MultiRegionEndpoint.add_member(:endpoint_name, Shapes::ShapeRef.new(shape: EndpointName, location_name: "EndpointName"))
1512
+ MultiRegionEndpoint.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "Status"))
1513
+ MultiRegionEndpoint.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: EndpointId, location_name: "EndpointId"))
1514
+ MultiRegionEndpoint.add_member(:regions, Shapes::ShapeRef.new(shape: Regions, location_name: "Regions"))
1515
+ MultiRegionEndpoint.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTimestamp"))
1516
+ MultiRegionEndpoint.add_member(:last_updated_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedTimestamp"))
1517
+ MultiRegionEndpoint.struct_class = Types::MultiRegionEndpoint
1518
+
1519
+ MultiRegionEndpoints.member = Shapes::ShapeRef.new(shape: MultiRegionEndpoint)
1520
+
1451
1521
  NotFoundException.struct_class = Types::NotFoundException
1452
1522
 
1453
1523
  OverallVolume.add_member(:volume_statistics, Shapes::ShapeRef.new(shape: VolumeStatistics, location_name: "VolumeStatistics"))
@@ -1615,6 +1685,8 @@ module Aws::SESV2
1615
1685
 
1616
1686
  RecommendationsList.member = Shapes::ShapeRef.new(shape: Recommendation)
1617
1687
 
1688
+ Regions.member = Shapes::ShapeRef.new(shape: Region)
1689
+
1618
1690
  ReplacementEmailContent.add_member(:replacement_template, Shapes::ShapeRef.new(shape: ReplacementTemplate, location_name: "ReplacementTemplate"))
1619
1691
  ReplacementEmailContent.struct_class = Types::ReplacementEmailContent
1620
1692
 
@@ -1629,6 +1701,16 @@ module Aws::SESV2
1629
1701
  ReviewDetails.add_member(:case_id, Shapes::ShapeRef.new(shape: CaseId, location_name: "CaseId"))
1630
1702
  ReviewDetails.struct_class = Types::ReviewDetails
1631
1703
 
1704
+ Route.add_member(:region, Shapes::ShapeRef.new(shape: Region, required: true, location_name: "Region"))
1705
+ Route.struct_class = Types::Route
1706
+
1707
+ RouteDetails.add_member(:region, Shapes::ShapeRef.new(shape: Region, required: true, location_name: "Region"))
1708
+ RouteDetails.struct_class = Types::RouteDetails
1709
+
1710
+ Routes.member = Shapes::ShapeRef.new(shape: Route)
1711
+
1712
+ RoutesDetails.member = Shapes::ShapeRef.new(shape: RouteDetails)
1713
+
1632
1714
  SOARecord.add_member(:primary_name_server, Shapes::ShapeRef.new(shape: PrimaryNameServer, location_name: "PrimaryNameServer"))
1633
1715
  SOARecord.add_member(:admin_email, Shapes::ShapeRef.new(shape: AdminEmail, location_name: "AdminEmail"))
1634
1716
  SOARecord.add_member(:serial_number, Shapes::ShapeRef.new(shape: SerialNumber, location_name: "SerialNumber"))
@@ -1643,6 +1725,7 @@ module Aws::SESV2
1643
1725
  SendBulkEmailRequest.add_member(:default_content, Shapes::ShapeRef.new(shape: BulkEmailContent, required: true, location_name: "DefaultContent"))
1644
1726
  SendBulkEmailRequest.add_member(:bulk_email_entries, Shapes::ShapeRef.new(shape: BulkEmailEntryList, required: true, location_name: "BulkEmailEntries"))
1645
1727
  SendBulkEmailRequest.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, location_name: "ConfigurationSetName"))
1728
+ SendBulkEmailRequest.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: EndpointId, location_name: "EndpointId", metadata: {"contextParam"=>{"name"=>"EndpointId"}}))
1646
1729
  SendBulkEmailRequest.struct_class = Types::SendBulkEmailRequest
1647
1730
 
1648
1731
  SendBulkEmailResponse.add_member(:bulk_email_entry_results, Shapes::ShapeRef.new(shape: BulkEmailEntryResultList, required: true, location_name: "BulkEmailEntryResults"))
@@ -1665,6 +1748,7 @@ module Aws::SESV2
1665
1748
  SendEmailRequest.add_member(:content, Shapes::ShapeRef.new(shape: EmailContent, required: true, location_name: "Content"))
1666
1749
  SendEmailRequest.add_member(:email_tags, Shapes::ShapeRef.new(shape: MessageTagList, location_name: "EmailTags"))
1667
1750
  SendEmailRequest.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, location_name: "ConfigurationSetName"))
1751
+ SendEmailRequest.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: EndpointId, location_name: "EndpointId", metadata: {"contextParam"=>{"name"=>"EndpointId"}}))
1668
1752
  SendEmailRequest.add_member(:list_management_options, Shapes::ShapeRef.new(shape: ListManagementOptions, location_name: "ListManagementOptions"))
1669
1753
  SendEmailRequest.struct_class = Types::SendEmailRequest
1670
1754
 
@@ -2039,6 +2123,18 @@ module Aws::SESV2
2039
2123
  o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
2040
2124
  end)
2041
2125
 
2126
+ api.add_operation(:create_multi_region_endpoint, Seahorse::Model::Operation.new.tap do |o|
2127
+ o.name = "CreateMultiRegionEndpoint"
2128
+ o.http_method = "POST"
2129
+ o.http_request_uri = "/v2/email/multi-region-endpoints"
2130
+ o.input = Shapes::ShapeRef.new(shape: CreateMultiRegionEndpointRequest)
2131
+ o.output = Shapes::ShapeRef.new(shape: CreateMultiRegionEndpointResponse)
2132
+ o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
2133
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
2134
+ o.errors << Shapes::ShapeRef.new(shape: AlreadyExistsException)
2135
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
2136
+ end)
2137
+
2042
2138
  api.add_operation(:delete_configuration_set, Seahorse::Model::Operation.new.tap do |o|
2043
2139
  o.name = "DeleteConfigurationSet"
2044
2140
  o.http_method = "DELETE"
@@ -2142,6 +2238,18 @@ module Aws::SESV2
2142
2238
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
2143
2239
  end)
2144
2240
 
2241
+ api.add_operation(:delete_multi_region_endpoint, Seahorse::Model::Operation.new.tap do |o|
2242
+ o.name = "DeleteMultiRegionEndpoint"
2243
+ o.http_method = "DELETE"
2244
+ o.http_request_uri = "/v2/email/multi-region-endpoints/{EndpointName}"
2245
+ o.input = Shapes::ShapeRef.new(shape: DeleteMultiRegionEndpointRequest)
2246
+ o.output = Shapes::ShapeRef.new(shape: DeleteMultiRegionEndpointResponse)
2247
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
2248
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
2249
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
2250
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
2251
+ end)
2252
+
2145
2253
  api.add_operation(:delete_suppressed_destination, Seahorse::Model::Operation.new.tap do |o|
2146
2254
  o.name = "DeleteSuppressedDestination"
2147
2255
  o.http_method = "DELETE"
@@ -2378,6 +2486,17 @@ module Aws::SESV2
2378
2486
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
2379
2487
  end)
2380
2488
 
2489
+ api.add_operation(:get_multi_region_endpoint, Seahorse::Model::Operation.new.tap do |o|
2490
+ o.name = "GetMultiRegionEndpoint"
2491
+ o.http_method = "GET"
2492
+ o.http_request_uri = "/v2/email/multi-region-endpoints/{EndpointName}"
2493
+ o.input = Shapes::ShapeRef.new(shape: GetMultiRegionEndpointRequest)
2494
+ o.output = Shapes::ShapeRef.new(shape: GetMultiRegionEndpointResponse)
2495
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
2496
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
2497
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
2498
+ end)
2499
+
2381
2500
  api.add_operation(:get_suppressed_destination, Seahorse::Model::Operation.new.tap do |o|
2382
2501
  o.name = "GetSuppressedDestination"
2383
2502
  o.http_method = "GET"
@@ -2568,6 +2687,22 @@ module Aws::SESV2
2568
2687
  )
2569
2688
  end)
2570
2689
 
2690
+ api.add_operation(:list_multi_region_endpoints, Seahorse::Model::Operation.new.tap do |o|
2691
+ o.name = "ListMultiRegionEndpoints"
2692
+ o.http_method = "GET"
2693
+ o.http_request_uri = "/v2/email/multi-region-endpoints"
2694
+ o.input = Shapes::ShapeRef.new(shape: ListMultiRegionEndpointsRequest)
2695
+ o.output = Shapes::ShapeRef.new(shape: ListMultiRegionEndpointsResponse)
2696
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
2697
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
2698
+ o[:pager] = Aws::Pager.new(
2699
+ limit_key: "page_size",
2700
+ tokens: {
2701
+ "next_token" => "next_token"
2702
+ }
2703
+ )
2704
+ end)
2705
+
2571
2706
  api.add_operation(:list_recommendations, Seahorse::Model::Operation.new.tap do |o|
2572
2707
  o.name = "ListRecommendations"
2573
2708
  o.http_method = "POST"