aws-sdk-sesv2 1.67.0 → 1.69.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sesv2/client.rb +216 -2
- data/lib/aws-sdk-sesv2/client_api.rb +134 -0
- data/lib/aws-sdk-sesv2/endpoint_parameters.rb +8 -0
- data/lib/aws-sdk-sesv2/endpoint_provider.rb +19 -0
- data/lib/aws-sdk-sesv2/endpoints.rb +26 -1
- data/lib/aws-sdk-sesv2/types.rb +320 -1
- data/lib/aws-sdk-sesv2.rb +1 -1
- data/sig/client.rbs +66 -1
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +78 -1
- metadata +4 -4
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,6 +458,11 @@ 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")
|
@@ -860,6 +888,21 @@ module Aws::SESV2
|
|
860
888
|
SENSITIVE: [:from_email_address, :subject]
|
861
889
|
end
|
862
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
|
+
|
863
906
|
class GetSuppressedDestinationRequest
|
864
907
|
attr_accessor email_address: ::String
|
865
908
|
SENSITIVE: []
|
@@ -1096,6 +1139,18 @@ module Aws::SESV2
|
|
1096
1139
|
SENSITIVE: []
|
1097
1140
|
end
|
1098
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
|
+
|
1099
1154
|
class ListRecommendationsRequest
|
1100
1155
|
attr_accessor filter: ::Hash[("TYPE" | "IMPACT" | "STATUS" | "RESOURCE_ARN"), ::String]
|
1101
1156
|
attr_accessor next_token: ::String
|
@@ -1208,6 +1263,16 @@ module Aws::SESV2
|
|
1208
1263
|
SENSITIVE: []
|
1209
1264
|
end
|
1210
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
|
+
|
1211
1276
|
class NotFoundException < Aws::EmptyStructure
|
1212
1277
|
end
|
1213
1278
|
|
@@ -1436,7 +1501,7 @@ module Aws::SESV2
|
|
1436
1501
|
|
1437
1502
|
class Recommendation
|
1438
1503
|
attr_accessor resource_arn: ::String
|
1439
|
-
attr_accessor type: ("DKIM" | "DMARC" | "SPF" | "BIMI")
|
1504
|
+
attr_accessor type: ("DKIM" | "DMARC" | "SPF" | "BIMI" | "COMPLAINT")
|
1440
1505
|
attr_accessor description: ::String
|
1441
1506
|
attr_accessor status: ("OPEN" | "FIXED")
|
1442
1507
|
attr_accessor created_timestamp: ::Time
|
@@ -1467,6 +1532,16 @@ module Aws::SESV2
|
|
1467
1532
|
SENSITIVE: []
|
1468
1533
|
end
|
1469
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
|
+
|
1470
1545
|
class SOARecord
|
1471
1546
|
attr_accessor primary_name_server: ::String
|
1472
1547
|
attr_accessor admin_email: ::String
|
@@ -1484,6 +1559,7 @@ module Aws::SESV2
|
|
1484
1559
|
attr_accessor default_content: Types::BulkEmailContent
|
1485
1560
|
attr_accessor bulk_email_entries: ::Array[Types::BulkEmailEntry]
|
1486
1561
|
attr_accessor configuration_set_name: ::String
|
1562
|
+
attr_accessor endpoint_id: ::String
|
1487
1563
|
SENSITIVE: []
|
1488
1564
|
end
|
1489
1565
|
|
@@ -1514,6 +1590,7 @@ module Aws::SESV2
|
|
1514
1590
|
attr_accessor content: Types::EmailContent
|
1515
1591
|
attr_accessor email_tags: ::Array[Types::MessageTag]
|
1516
1592
|
attr_accessor configuration_set_name: ::String
|
1593
|
+
attr_accessor endpoint_id: ::String
|
1517
1594
|
attr_accessor list_management_options: Types::ListManagementOptions
|
1518
1595
|
SENSITIVE: []
|
1519
1596
|
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.
|
4
|
+
version: 1.69.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:
|
11
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|