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.
data/sig/client.rbs CHANGED
@@ -333,7 +333,8 @@ module Aws
333
333
  ?dkim_signing_attributes: {
334
334
  domain_signing_selector: ::String?,
335
335
  domain_signing_private_key: ::String?,
336
- next_signing_key_length: ("RSA_1024_BIT" | "RSA_2048_BIT")?
336
+ next_signing_key_length: ("RSA_1024_BIT" | "RSA_2048_BIT")?,
337
+ domain_signing_attributes_origin: ("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")?
337
338
  },
338
339
  ?configuration_set_name: ::String
339
340
  ) -> _CreateEmailIdentityResponseSuccess
@@ -434,6 +435,30 @@ module Aws
434
435
  ) -> _CreateImportJobResponseSuccess
435
436
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateImportJobResponseSuccess
436
437
 
438
+ interface _CreateMultiRegionEndpointResponseSuccess
439
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateMultiRegionEndpointResponse]
440
+ def status: () -> ("CREATING" | "READY" | "FAILED" | "DELETING")
441
+ def endpoint_id: () -> ::String
442
+ end
443
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#create_multi_region_endpoint-instance_method
444
+ def create_multi_region_endpoint: (
445
+ endpoint_name: ::String,
446
+ details: {
447
+ routes_details: Array[
448
+ {
449
+ region: ::String
450
+ },
451
+ ]
452
+ },
453
+ ?tags: Array[
454
+ {
455
+ key: ::String,
456
+ value: ::String
457
+ },
458
+ ]
459
+ ) -> _CreateMultiRegionEndpointResponseSuccess
460
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMultiRegionEndpointResponseSuccess
461
+
437
462
  interface _DeleteConfigurationSetResponseSuccess
438
463
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConfigurationSetResponse]
439
464
  end
@@ -518,6 +543,16 @@ module Aws
518
543
  ) -> _DeleteEmailTemplateResponseSuccess
519
544
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEmailTemplateResponseSuccess
520
545
 
546
+ interface _DeleteMultiRegionEndpointResponseSuccess
547
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMultiRegionEndpointResponse]
548
+ def status: () -> ("CREATING" | "READY" | "FAILED" | "DELETING")
549
+ end
550
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#delete_multi_region_endpoint-instance_method
551
+ def delete_multi_region_endpoint: (
552
+ endpoint_name: ::String
553
+ ) -> _DeleteMultiRegionEndpointResponseSuccess
554
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteMultiRegionEndpointResponseSuccess
555
+
521
556
  interface _DeleteSuppressedDestinationResponseSuccess
522
557
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSuppressedDestinationResponse]
523
558
  end
@@ -801,6 +836,21 @@ module Aws
801
836
  ) -> _GetMessageInsightsResponseSuccess
802
837
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMessageInsightsResponseSuccess
803
838
 
839
+ interface _GetMultiRegionEndpointResponseSuccess
840
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetMultiRegionEndpointResponse]
841
+ def endpoint_name: () -> ::String
842
+ def endpoint_id: () -> ::String
843
+ def routes: () -> ::Array[Types::Route]
844
+ def status: () -> ("CREATING" | "READY" | "FAILED" | "DELETING")
845
+ def created_timestamp: () -> ::Time
846
+ def last_updated_timestamp: () -> ::Time
847
+ end
848
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_multi_region_endpoint-instance_method
849
+ def get_multi_region_endpoint: (
850
+ endpoint_name: ::String
851
+ ) -> _GetMultiRegionEndpointResponseSuccess
852
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMultiRegionEndpointResponseSuccess
853
+
804
854
  interface _GetSuppressedDestinationResponseSuccess
805
855
  include ::Seahorse::Client::_ResponseSuccess[Types::GetSuppressedDestinationResponse]
806
856
  def suppressed_destination: () -> Types::SuppressedDestination
@@ -957,6 +1007,18 @@ module Aws
957
1007
  ) -> _ListImportJobsResponseSuccess
958
1008
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListImportJobsResponseSuccess
959
1009
 
1010
+ interface _ListMultiRegionEndpointsResponseSuccess
1011
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListMultiRegionEndpointsResponse]
1012
+ def multi_region_endpoints: () -> ::Array[Types::MultiRegionEndpoint]
1013
+ def next_token: () -> ::String
1014
+ end
1015
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#list_multi_region_endpoints-instance_method
1016
+ def list_multi_region_endpoints: (
1017
+ ?next_token: ::String,
1018
+ ?page_size: ::Integer
1019
+ ) -> _ListMultiRegionEndpointsResponseSuccess
1020
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMultiRegionEndpointsResponseSuccess
1021
+
960
1022
  interface _ListRecommendationsResponseSuccess
961
1023
  include ::Seahorse::Client::_ResponseSuccess[Types::ListRecommendationsResponse]
962
1024
  def recommendations: () -> ::Array[Types::Recommendation]
@@ -1200,11 +1262,12 @@ module Aws
1200
1262
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_email_identity_dkim_signing_attributes-instance_method
1201
1263
  def put_email_identity_dkim_signing_attributes: (
1202
1264
  email_identity: ::String,
1203
- signing_attributes_origin: ("AWS_SES" | "EXTERNAL"),
1265
+ signing_attributes_origin: ("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"),
1204
1266
  ?signing_attributes: {
1205
1267
  domain_signing_selector: ::String?,
1206
1268
  domain_signing_private_key: ::String?,
1207
- next_signing_key_length: ("RSA_1024_BIT" | "RSA_2048_BIT")?
1269
+ next_signing_key_length: ("RSA_1024_BIT" | "RSA_2048_BIT")?,
1270
+ domain_signing_attributes_origin: ("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")?
1208
1271
  }
1209
1272
  ) -> _PutEmailIdentityDkimSigningAttributesResponseSuccess
1210
1273
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutEmailIdentityDkimSigningAttributesResponseSuccess
@@ -1301,7 +1364,8 @@ module Aws
1301
1364
  ]?
1302
1365
  },
1303
1366
  ],
1304
- ?configuration_set_name: ::String
1367
+ ?configuration_set_name: ::String,
1368
+ ?endpoint_id: ::String
1305
1369
  ) -> _SendBulkEmailResponseSuccess
1306
1370
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendBulkEmailResponseSuccess
1307
1371
 
@@ -1383,6 +1447,7 @@ module Aws
1383
1447
  },
1384
1448
  ],
1385
1449
  ?configuration_set_name: ::String,
1450
+ ?endpoint_id: ::String,
1386
1451
  ?list_management_options: {
1387
1452
  contact_list_name: ::String,
1388
1453
  topic_name: ::String?
data/sig/types.rbs CHANGED
@@ -288,6 +288,19 @@ module Aws::SESV2
288
288
  SENSITIVE: []
289
289
  end
290
290
 
291
+ class CreateMultiRegionEndpointRequest
292
+ attr_accessor endpoint_name: ::String
293
+ attr_accessor details: Types::Details
294
+ attr_accessor tags: ::Array[Types::Tag]
295
+ SENSITIVE: []
296
+ end
297
+
298
+ class CreateMultiRegionEndpointResponse
299
+ attr_accessor status: ("CREATING" | "READY" | "FAILED" | "DELETING")
300
+ attr_accessor endpoint_id: ::String
301
+ SENSITIVE: []
302
+ end
303
+
291
304
  class CustomVerificationEmailTemplateMetadata
292
305
  attr_accessor template_name: ::String
293
306
  attr_accessor from_email_address: ::String
@@ -403,6 +416,16 @@ module Aws::SESV2
403
416
  class DeleteEmailTemplateResponse < Aws::EmptyStructure
404
417
  end
405
418
 
419
+ class DeleteMultiRegionEndpointRequest
420
+ attr_accessor endpoint_name: ::String
421
+ SENSITIVE: []
422
+ end
423
+
424
+ class DeleteMultiRegionEndpointResponse
425
+ attr_accessor status: ("CREATING" | "READY" | "FAILED" | "DELETING")
426
+ SENSITIVE: []
427
+ end
428
+
406
429
  class DeleteSuppressedDestinationRequest
407
430
  attr_accessor email_address: ::String
408
431
  SENSITIVE: []
@@ -435,11 +458,16 @@ module Aws::SESV2
435
458
  SENSITIVE: []
436
459
  end
437
460
 
461
+ class Details
462
+ attr_accessor routes_details: ::Array[Types::RouteDetails]
463
+ SENSITIVE: []
464
+ end
465
+
438
466
  class DkimAttributes
439
467
  attr_accessor signing_enabled: bool
440
468
  attr_accessor status: ("PENDING" | "SUCCESS" | "FAILED" | "TEMPORARY_FAILURE" | "NOT_STARTED")
441
469
  attr_accessor tokens: ::Array[::String]
442
- attr_accessor signing_attributes_origin: ("AWS_SES" | "EXTERNAL")
470
+ attr_accessor signing_attributes_origin: ("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")
443
471
  attr_accessor next_signing_key_length: ("RSA_1024_BIT" | "RSA_2048_BIT")
444
472
  attr_accessor current_signing_key_length: ("RSA_1024_BIT" | "RSA_2048_BIT")
445
473
  attr_accessor last_key_generation_timestamp: ::Time
@@ -450,6 +478,7 @@ module Aws::SESV2
450
478
  attr_accessor domain_signing_selector: ::String
451
479
  attr_accessor domain_signing_private_key: ::String
452
480
  attr_accessor next_signing_key_length: ("RSA_1024_BIT" | "RSA_2048_BIT")
481
+ attr_accessor domain_signing_attributes_origin: ("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")
453
482
  SENSITIVE: [:domain_signing_private_key]
454
483
  end
455
484
 
@@ -859,6 +888,21 @@ module Aws::SESV2
859
888
  SENSITIVE: [:from_email_address, :subject]
860
889
  end
861
890
 
891
+ class GetMultiRegionEndpointRequest
892
+ attr_accessor endpoint_name: ::String
893
+ SENSITIVE: []
894
+ end
895
+
896
+ class GetMultiRegionEndpointResponse
897
+ attr_accessor endpoint_name: ::String
898
+ attr_accessor endpoint_id: ::String
899
+ attr_accessor routes: ::Array[Types::Route]
900
+ attr_accessor status: ("CREATING" | "READY" | "FAILED" | "DELETING")
901
+ attr_accessor created_timestamp: ::Time
902
+ attr_accessor last_updated_timestamp: ::Time
903
+ SENSITIVE: []
904
+ end
905
+
862
906
  class GetSuppressedDestinationRequest
863
907
  attr_accessor email_address: ::String
864
908
  SENSITIVE: []
@@ -1095,6 +1139,18 @@ module Aws::SESV2
1095
1139
  SENSITIVE: []
1096
1140
  end
1097
1141
 
1142
+ class ListMultiRegionEndpointsRequest
1143
+ attr_accessor next_token: ::String
1144
+ attr_accessor page_size: ::Integer
1145
+ SENSITIVE: []
1146
+ end
1147
+
1148
+ class ListMultiRegionEndpointsResponse
1149
+ attr_accessor multi_region_endpoints: ::Array[Types::MultiRegionEndpoint]
1150
+ attr_accessor next_token: ::String
1151
+ SENSITIVE: []
1152
+ end
1153
+
1098
1154
  class ListRecommendationsRequest
1099
1155
  attr_accessor filter: ::Hash[("TYPE" | "IMPACT" | "STATUS" | "RESOURCE_ARN"), ::String]
1100
1156
  attr_accessor next_token: ::String
@@ -1207,6 +1263,16 @@ module Aws::SESV2
1207
1263
  SENSITIVE: []
1208
1264
  end
1209
1265
 
1266
+ class MultiRegionEndpoint
1267
+ attr_accessor endpoint_name: ::String
1268
+ attr_accessor status: ("CREATING" | "READY" | "FAILED" | "DELETING")
1269
+ attr_accessor endpoint_id: ::String
1270
+ attr_accessor regions: ::Array[::String]
1271
+ attr_accessor created_timestamp: ::Time
1272
+ attr_accessor last_updated_timestamp: ::Time
1273
+ SENSITIVE: []
1274
+ end
1275
+
1210
1276
  class NotFoundException < Aws::EmptyStructure
1211
1277
  end
1212
1278
 
@@ -1389,7 +1455,7 @@ module Aws::SESV2
1389
1455
 
1390
1456
  class PutEmailIdentityDkimSigningAttributesRequest
1391
1457
  attr_accessor email_identity: ::String
1392
- attr_accessor signing_attributes_origin: ("AWS_SES" | "EXTERNAL")
1458
+ attr_accessor signing_attributes_origin: ("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")
1393
1459
  attr_accessor signing_attributes: Types::DkimSigningAttributes
1394
1460
  SENSITIVE: []
1395
1461
  end
@@ -1466,6 +1532,16 @@ module Aws::SESV2
1466
1532
  SENSITIVE: []
1467
1533
  end
1468
1534
 
1535
+ class Route
1536
+ attr_accessor region: ::String
1537
+ SENSITIVE: []
1538
+ end
1539
+
1540
+ class RouteDetails
1541
+ attr_accessor region: ::String
1542
+ SENSITIVE: []
1543
+ end
1544
+
1469
1545
  class SOARecord
1470
1546
  attr_accessor primary_name_server: ::String
1471
1547
  attr_accessor admin_email: ::String
@@ -1483,6 +1559,7 @@ module Aws::SESV2
1483
1559
  attr_accessor default_content: Types::BulkEmailContent
1484
1560
  attr_accessor bulk_email_entries: ::Array[Types::BulkEmailEntry]
1485
1561
  attr_accessor configuration_set_name: ::String
1562
+ attr_accessor endpoint_id: ::String
1486
1563
  SENSITIVE: []
1487
1564
  end
1488
1565
 
@@ -1513,6 +1590,7 @@ module Aws::SESV2
1513
1590
  attr_accessor content: Types::EmailContent
1514
1591
  attr_accessor email_tags: ::Array[Types::MessageTag]
1515
1592
  attr_accessor configuration_set_name: ::String
1593
+ attr_accessor endpoint_id: ::String
1516
1594
  attr_accessor list_management_options: Types::ListManagementOptions
1517
1595
  SENSITIVE: []
1518
1596
  end
@@ -1731,7 +1809,7 @@ module Aws::SESV2
1731
1809
  class VerificationInfo
1732
1810
  attr_accessor last_checked_timestamp: ::Time
1733
1811
  attr_accessor last_success_timestamp: ::Time
1734
- attr_accessor error_type: ("SERVICE_ERROR" | "DNS_SERVER_ERROR" | "HOST_NOT_FOUND" | "TYPE_NOT_FOUND" | "INVALID_VALUE")
1812
+ attr_accessor error_type: ("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")
1735
1813
  attr_accessor soa_record: Types::SOARecord
1736
1814
  SENSITIVE: []
1737
1815
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sesv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.66.0
4
+ version: 1.68.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-31 00:00:00.000000000 Z
11
+ date: 2024-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core