aws-sdk-sesv2 1.27.0 → 1.28.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sesv2/client.rb +64 -27
- data/lib/aws-sdk-sesv2/client_api.rb +31 -0
- data/lib/aws-sdk-sesv2/types.rb +154 -43
- data/lib/aws-sdk-sesv2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7c29b3b1698d4efeabd46a3b9333cf26998317feb507abe563a700a3152caab1
|
4
|
+
data.tar.gz: 886722433b9c1928a9f3ef9e928d88ebe40c167d7a963595d83b864094b64610
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6bcd5e63830fbe0123fc6e548156ad9acb2b96ebce66d5ac9a4602a8719aed93e16d4f4890d883689fc8fc0163d99bf29f53bd1a79c389646336afc517d4d34b
|
7
|
+
data.tar.gz: 9864515ef3bc7c3fdcff47f52ccc6db2c50e098703f98290140405c713618a678bb2112c81ca6af5823f79730c42526bea54cac35a24ebeb6b6a5970246c0618
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.28.0 (2022-10-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release allows subscribers to enable Dedicated IPs (managed) to send email via a fully managed dedicated IP experience. It also adds identities' VerificationStatus in the response of GetEmailIdentity and ListEmailIdentities APIs, and ImportJobs counts in the response of ListImportJobs API.
|
8
|
+
|
4
9
|
1.27.0 (2022-02-24)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.28.0
|
data/lib/aws-sdk-sesv2/client.rb
CHANGED
@@ -585,14 +585,14 @@ module Aws::SESV2
|
|
585
585
|
# Creates a new custom verification email template.
|
586
586
|
#
|
587
587
|
# For more information about custom verification email templates, see
|
588
|
-
# [Using
|
588
|
+
# [Using custom verification email templates][1] in the *Amazon SES
|
589
589
|
# Developer Guide*.
|
590
590
|
#
|
591
591
|
# You can execute this operation no more than once per second.
|
592
592
|
#
|
593
593
|
#
|
594
594
|
#
|
595
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
595
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
|
596
596
|
#
|
597
597
|
# @option params [required, String] :template_name
|
598
598
|
# The name of the custom verification email template.
|
@@ -606,12 +606,12 @@ module Aws::SESV2
|
|
606
606
|
# @option params [required, String] :template_content
|
607
607
|
# The content of the custom verification email. The total size of the
|
608
608
|
# email must be less than 10 MB. The message body may contain HTML, with
|
609
|
-
# some limitations. For more information, see [Custom
|
610
|
-
#
|
609
|
+
# some limitations. For more information, see [Custom verification email
|
610
|
+
# frequently asked questions][1] in the *Amazon SES Developer Guide*.
|
611
611
|
#
|
612
612
|
#
|
613
613
|
#
|
614
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
614
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom-faq
|
615
615
|
#
|
616
616
|
# @option params [required, String] :success_redirection_url
|
617
617
|
# The URL that the recipient of the verification email is sent to if his
|
@@ -656,6 +656,9 @@ module Aws::SESV2
|
|
656
656
|
# An object that defines the tags (keys and values) that you want to
|
657
657
|
# associate with the pool.
|
658
658
|
#
|
659
|
+
# @option params [String] :scaling_mode
|
660
|
+
# The type of scaling mode.
|
661
|
+
#
|
659
662
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
660
663
|
#
|
661
664
|
# @example Request syntax with placeholder values
|
@@ -668,6 +671,7 @@ module Aws::SESV2
|
|
668
671
|
# value: "TagValue", # required
|
669
672
|
# },
|
670
673
|
# ],
|
674
|
+
# scaling_mode: "STANDARD", # accepts STANDARD, MANAGED
|
671
675
|
# })
|
672
676
|
#
|
673
677
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateDedicatedIpPool AWS API Documentation
|
@@ -1126,14 +1130,14 @@ module Aws::SESV2
|
|
1126
1130
|
# Deletes an existing custom verification email template.
|
1127
1131
|
#
|
1128
1132
|
# For more information about custom verification email templates, see
|
1129
|
-
# [Using
|
1133
|
+
# [Using custom verification email templates][1] in the *Amazon SES
|
1130
1134
|
# Developer Guide*.
|
1131
1135
|
#
|
1132
1136
|
# You can execute this operation no more than once per second.
|
1133
1137
|
#
|
1134
1138
|
#
|
1135
1139
|
#
|
1136
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
1140
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
|
1137
1141
|
#
|
1138
1142
|
# @option params [required, String] :template_name
|
1139
1143
|
# The name of the custom verification email template that you want to
|
@@ -1571,14 +1575,14 @@ module Aws::SESV2
|
|
1571
1575
|
# you specify.
|
1572
1576
|
#
|
1573
1577
|
# For more information about custom verification email templates, see
|
1574
|
-
# [Using
|
1578
|
+
# [Using custom verification email templates][1] in the *Amazon SES
|
1575
1579
|
# Developer Guide*.
|
1576
1580
|
#
|
1577
1581
|
# You can execute this operation no more than once per second.
|
1578
1582
|
#
|
1579
1583
|
#
|
1580
1584
|
#
|
1581
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
1585
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
|
1582
1586
|
#
|
1583
1587
|
# @option params [required, String] :template_name
|
1584
1588
|
# The name of the custom verification email template that you want to
|
@@ -1652,6 +1656,35 @@ module Aws::SESV2
|
|
1652
1656
|
req.send_request(options)
|
1653
1657
|
end
|
1654
1658
|
|
1659
|
+
# Retrieve information about the dedicated pool.
|
1660
|
+
#
|
1661
|
+
# @option params [required, String] :pool_name
|
1662
|
+
# The name of the dedicated IP pool to retrieve.
|
1663
|
+
#
|
1664
|
+
# @return [Types::GetDedicatedIpPoolResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1665
|
+
#
|
1666
|
+
# * {Types::GetDedicatedIpPoolResponse#dedicated_ip_pool #dedicated_ip_pool} => Types::DedicatedIpPool
|
1667
|
+
#
|
1668
|
+
# @example Request syntax with placeholder values
|
1669
|
+
#
|
1670
|
+
# resp = client.get_dedicated_ip_pool({
|
1671
|
+
# pool_name: "PoolName", # required
|
1672
|
+
# })
|
1673
|
+
#
|
1674
|
+
# @example Response structure
|
1675
|
+
#
|
1676
|
+
# resp.dedicated_ip_pool.pool_name #=> String
|
1677
|
+
# resp.dedicated_ip_pool.scaling_mode #=> String, one of "STANDARD", "MANAGED"
|
1678
|
+
#
|
1679
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetDedicatedIpPool AWS API Documentation
|
1680
|
+
#
|
1681
|
+
# @overload get_dedicated_ip_pool(params = {})
|
1682
|
+
# @param [Hash] params ({})
|
1683
|
+
def get_dedicated_ip_pool(params = {}, options = {})
|
1684
|
+
req = build_request(:get_dedicated_ip_pool, params)
|
1685
|
+
req.send_request(options)
|
1686
|
+
end
|
1687
|
+
|
1655
1688
|
# List the dedicated IP addresses that are associated with your Amazon
|
1656
1689
|
# Web Services account.
|
1657
1690
|
#
|
@@ -1932,6 +1965,7 @@ module Aws::SESV2
|
|
1932
1965
|
# * {Types::GetEmailIdentityResponse#policies #policies} => Hash<String,String>
|
1933
1966
|
# * {Types::GetEmailIdentityResponse#tags #tags} => Array<Types::Tag>
|
1934
1967
|
# * {Types::GetEmailIdentityResponse#configuration_set_name #configuration_set_name} => String
|
1968
|
+
# * {Types::GetEmailIdentityResponse#verification_status #verification_status} => String
|
1935
1969
|
#
|
1936
1970
|
# @example Request syntax with placeholder values
|
1937
1971
|
#
|
@@ -1961,6 +1995,7 @@ module Aws::SESV2
|
|
1961
1995
|
# resp.tags[0].key #=> String
|
1962
1996
|
# resp.tags[0].value #=> String
|
1963
1997
|
# resp.configuration_set_name #=> String
|
1998
|
+
# resp.verification_status #=> String, one of "PENDING", "SUCCESS", "FAILED", "TEMPORARY_FAILURE", "NOT_STARTED"
|
1964
1999
|
#
|
1965
2000
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetEmailIdentity AWS API Documentation
|
1966
2001
|
#
|
@@ -2298,14 +2333,14 @@ module Aws::SESV2
|
|
2298
2333
|
# account in the current Amazon Web Services Region.
|
2299
2334
|
#
|
2300
2335
|
# For more information about custom verification email templates, see
|
2301
|
-
# [Using
|
2336
|
+
# [Using custom verification email templates][1] in the *Amazon SES
|
2302
2337
|
# Developer Guide*.
|
2303
2338
|
#
|
2304
2339
|
# You can execute this operation no more than once per second.
|
2305
2340
|
#
|
2306
2341
|
#
|
2307
2342
|
#
|
2308
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
2343
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
|
2309
2344
|
#
|
2310
2345
|
# @option params [String] :next_token
|
2311
2346
|
# A token returned from a previous call to
|
@@ -2457,13 +2492,12 @@ module Aws::SESV2
|
|
2457
2492
|
# dashboard for the domain.
|
2458
2493
|
#
|
2459
2494
|
# @option params [required, Time,DateTime,Date,Integer,String] :start_date
|
2460
|
-
# The first day
|
2461
|
-
# deliverability data for.
|
2495
|
+
# The first day that you want to obtain deliverability data for.
|
2462
2496
|
#
|
2463
2497
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_date
|
2464
|
-
# The last day
|
2465
|
-
#
|
2466
|
-
#
|
2498
|
+
# The last day that you want to obtain deliverability data for. This
|
2499
|
+
# value has to be less than or equal to 30 days after the value of the
|
2500
|
+
# `StartDate` parameter.
|
2467
2501
|
#
|
2468
2502
|
# @option params [required, String] :subscribed_domain
|
2469
2503
|
# The domain to obtain deliverability data for.
|
@@ -2566,6 +2600,7 @@ module Aws::SESV2
|
|
2566
2600
|
# resp.email_identities[0].identity_type #=> String, one of "EMAIL_ADDRESS", "DOMAIN", "MANAGED_DOMAIN"
|
2567
2601
|
# resp.email_identities[0].identity_name #=> String
|
2568
2602
|
# resp.email_identities[0].sending_enabled #=> Boolean
|
2603
|
+
# resp.email_identities[0].verification_status #=> String, one of "PENDING", "SUCCESS", "FAILED", "TEMPORARY_FAILURE", "NOT_STARTED"
|
2569
2604
|
# resp.next_token #=> String
|
2570
2605
|
#
|
2571
2606
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListEmailIdentities AWS API Documentation
|
@@ -2668,6 +2703,8 @@ module Aws::SESV2
|
|
2668
2703
|
# resp.import_jobs[0].import_destination.contact_list_destination.contact_list_import_action #=> String, one of "DELETE", "PUT"
|
2669
2704
|
# resp.import_jobs[0].job_status #=> String, one of "CREATED", "PROCESSING", "COMPLETED", "FAILED"
|
2670
2705
|
# resp.import_jobs[0].created_timestamp #=> Time
|
2706
|
+
# resp.import_jobs[0].processed_records_count #=> Integer
|
2707
|
+
# resp.import_jobs[0].failed_records_count #=> Integer
|
2671
2708
|
# resp.next_token #=> String
|
2672
2709
|
#
|
2673
2710
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListImportJobs AWS API Documentation
|
@@ -2688,12 +2725,12 @@ module Aws::SESV2
|
|
2688
2725
|
# @option params [Time,DateTime,Date,Integer,String] :start_date
|
2689
2726
|
# Used to filter the list of suppressed email destinations so that it
|
2690
2727
|
# only includes addresses that were added to the list after a specific
|
2691
|
-
# date.
|
2728
|
+
# date.
|
2692
2729
|
#
|
2693
2730
|
# @option params [Time,DateTime,Date,Integer,String] :end_date
|
2694
2731
|
# Used to filter the list of suppressed email destinations so that it
|
2695
2732
|
# only includes addresses that were added to the list before a specific
|
2696
|
-
# date.
|
2733
|
+
# date.
|
2697
2734
|
#
|
2698
2735
|
# @option params [String] :next_token
|
2699
2736
|
# A token returned from a previous call to `ListSuppressedDestinations`
|
@@ -3591,14 +3628,14 @@ module Aws::SESV2
|
|
3591
3628
|
#
|
3592
3629
|
# To use this operation, you must first create a custom verification
|
3593
3630
|
# email template. For more information about creating and using custom
|
3594
|
-
# verification email templates, see [Using
|
3595
|
-
#
|
3631
|
+
# verification email templates, see [Using custom verification email
|
3632
|
+
# templates][1] in the *Amazon SES Developer Guide*.
|
3596
3633
|
#
|
3597
3634
|
# You can execute this operation no more than once per second.
|
3598
3635
|
#
|
3599
3636
|
#
|
3600
3637
|
#
|
3601
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
3638
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
|
3602
3639
|
#
|
3603
3640
|
# @option params [required, String] :email_address
|
3604
3641
|
# The email address to verify.
|
@@ -4063,14 +4100,14 @@ module Aws::SESV2
|
|
4063
4100
|
# Updates an existing custom verification email template.
|
4064
4101
|
#
|
4065
4102
|
# For more information about custom verification email templates, see
|
4066
|
-
# [Using
|
4103
|
+
# [Using custom verification email templates][1] in the *Amazon SES
|
4067
4104
|
# Developer Guide*.
|
4068
4105
|
#
|
4069
4106
|
# You can execute this operation no more than once per second.
|
4070
4107
|
#
|
4071
4108
|
#
|
4072
4109
|
#
|
4073
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
4110
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
|
4074
4111
|
#
|
4075
4112
|
# @option params [required, String] :template_name
|
4076
4113
|
# The name of the custom verification email template that you want to
|
@@ -4085,12 +4122,12 @@ module Aws::SESV2
|
|
4085
4122
|
# @option params [required, String] :template_content
|
4086
4123
|
# The content of the custom verification email. The total size of the
|
4087
4124
|
# email must be less than 10 MB. The message body may contain HTML, with
|
4088
|
-
# some limitations. For more information, see [Custom
|
4089
|
-
#
|
4125
|
+
# some limitations. For more information, see [Custom verification email
|
4126
|
+
# frequently asked questions][1] in the *Amazon SES Developer Guide*.
|
4090
4127
|
#
|
4091
4128
|
#
|
4092
4129
|
#
|
4093
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
4130
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom-faq
|
4094
4131
|
#
|
4095
4132
|
# @option params [required, String] :success_redirection_url
|
4096
4133
|
# The URL that the recipient of the verification email is sent to if his
|
@@ -4232,7 +4269,7 @@ module Aws::SESV2
|
|
4232
4269
|
params: params,
|
4233
4270
|
config: config)
|
4234
4271
|
context[:gem_name] = 'aws-sdk-sesv2'
|
4235
|
-
context[:gem_version] = '1.
|
4272
|
+
context[:gem_version] = '1.28.0'
|
4236
4273
|
Seahorse::Client::Request.new(handlers, context)
|
4237
4274
|
end
|
4238
4275
|
|
@@ -82,6 +82,7 @@ module Aws::SESV2
|
|
82
82
|
DataFormat = Shapes::StringShape.new(name: 'DataFormat')
|
83
83
|
DedicatedIp = Shapes::StructureShape.new(name: 'DedicatedIp')
|
84
84
|
DedicatedIpList = Shapes::ListShape.new(name: 'DedicatedIpList')
|
85
|
+
DedicatedIpPool = Shapes::StructureShape.new(name: 'DedicatedIpPool')
|
85
86
|
DefaultDimensionValue = Shapes::StringShape.new(name: 'DefaultDimensionValue')
|
86
87
|
DeleteConfigurationSetEventDestinationRequest = Shapes::StructureShape.new(name: 'DeleteConfigurationSetEventDestinationRequest')
|
87
88
|
DeleteConfigurationSetEventDestinationResponse = Shapes::StructureShape.new(name: 'DeleteConfigurationSetEventDestinationResponse')
|
@@ -170,6 +171,8 @@ module Aws::SESV2
|
|
170
171
|
GetContactResponse = Shapes::StructureShape.new(name: 'GetContactResponse')
|
171
172
|
GetCustomVerificationEmailTemplateRequest = Shapes::StructureShape.new(name: 'GetCustomVerificationEmailTemplateRequest')
|
172
173
|
GetCustomVerificationEmailTemplateResponse = Shapes::StructureShape.new(name: 'GetCustomVerificationEmailTemplateResponse')
|
174
|
+
GetDedicatedIpPoolRequest = Shapes::StructureShape.new(name: 'GetDedicatedIpPoolRequest')
|
175
|
+
GetDedicatedIpPoolResponse = Shapes::StructureShape.new(name: 'GetDedicatedIpPoolResponse')
|
173
176
|
GetDedicatedIpRequest = Shapes::StructureShape.new(name: 'GetDedicatedIpRequest')
|
174
177
|
GetDedicatedIpResponse = Shapes::StructureShape.new(name: 'GetDedicatedIpResponse')
|
175
178
|
GetDedicatedIpsRequest = Shapes::StructureShape.new(name: 'GetDedicatedIpsRequest')
|
@@ -322,6 +325,7 @@ module Aws::SESV2
|
|
322
325
|
ReviewDetails = Shapes::StructureShape.new(name: 'ReviewDetails')
|
323
326
|
ReviewStatus = Shapes::StringShape.new(name: 'ReviewStatus')
|
324
327
|
S3Url = Shapes::StringShape.new(name: 'S3Url')
|
328
|
+
ScalingMode = Shapes::StringShape.new(name: 'ScalingMode')
|
325
329
|
Selector = Shapes::StringShape.new(name: 'Selector')
|
326
330
|
SendBulkEmailRequest = Shapes::StructureShape.new(name: 'SendBulkEmailRequest')
|
327
331
|
SendBulkEmailResponse = Shapes::StructureShape.new(name: 'SendBulkEmailResponse')
|
@@ -386,6 +390,7 @@ module Aws::SESV2
|
|
386
390
|
UpdateEmailTemplateResponse = Shapes::StructureShape.new(name: 'UpdateEmailTemplateResponse')
|
387
391
|
UseCaseDescription = Shapes::StringShape.new(name: 'UseCaseDescription')
|
388
392
|
UseDefaultIfPreferenceUnavailable = Shapes::BooleanShape.new(name: 'UseDefaultIfPreferenceUnavailable')
|
393
|
+
VerificationStatus = Shapes::StringShape.new(name: 'VerificationStatus')
|
389
394
|
Volume = Shapes::IntegerShape.new(name: 'Volume')
|
390
395
|
VolumeStatistics = Shapes::StructureShape.new(name: 'VolumeStatistics')
|
391
396
|
WarmupStatus = Shapes::StringShape.new(name: 'WarmupStatus')
|
@@ -522,6 +527,7 @@ module Aws::SESV2
|
|
522
527
|
|
523
528
|
CreateDedicatedIpPoolRequest.add_member(:pool_name, Shapes::ShapeRef.new(shape: PoolName, required: true, location_name: "PoolName"))
|
524
529
|
CreateDedicatedIpPoolRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
530
|
+
CreateDedicatedIpPoolRequest.add_member(:scaling_mode, Shapes::ShapeRef.new(shape: ScalingMode, location_name: "ScalingMode"))
|
525
531
|
CreateDedicatedIpPoolRequest.struct_class = Types::CreateDedicatedIpPoolRequest
|
526
532
|
|
527
533
|
CreateDedicatedIpPoolResponse.struct_class = Types::CreateDedicatedIpPoolResponse
|
@@ -591,6 +597,10 @@ module Aws::SESV2
|
|
591
597
|
|
592
598
|
DedicatedIpList.member = Shapes::ShapeRef.new(shape: DedicatedIp)
|
593
599
|
|
600
|
+
DedicatedIpPool.add_member(:pool_name, Shapes::ShapeRef.new(shape: PoolName, required: true, location_name: "PoolName"))
|
601
|
+
DedicatedIpPool.add_member(:scaling_mode, Shapes::ShapeRef.new(shape: ScalingMode, required: true, location_name: "ScalingMode"))
|
602
|
+
DedicatedIpPool.struct_class = Types::DedicatedIpPool
|
603
|
+
|
594
604
|
DeleteConfigurationSetEventDestinationRequest.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, required: true, location: "uri", location_name: "ConfigurationSetName"))
|
595
605
|
DeleteConfigurationSetEventDestinationRequest.add_member(:event_destination_name, Shapes::ShapeRef.new(shape: EventDestinationName, required: true, location: "uri", location_name: "EventDestinationName"))
|
596
606
|
DeleteConfigurationSetEventDestinationRequest.struct_class = Types::DeleteConfigurationSetEventDestinationRequest
|
@@ -829,6 +839,12 @@ module Aws::SESV2
|
|
829
839
|
GetCustomVerificationEmailTemplateResponse.add_member(:failure_redirection_url, Shapes::ShapeRef.new(shape: FailureRedirectionURL, location_name: "FailureRedirectionURL"))
|
830
840
|
GetCustomVerificationEmailTemplateResponse.struct_class = Types::GetCustomVerificationEmailTemplateResponse
|
831
841
|
|
842
|
+
GetDedicatedIpPoolRequest.add_member(:pool_name, Shapes::ShapeRef.new(shape: PoolName, required: true, location: "uri", location_name: "PoolName"))
|
843
|
+
GetDedicatedIpPoolRequest.struct_class = Types::GetDedicatedIpPoolRequest
|
844
|
+
|
845
|
+
GetDedicatedIpPoolResponse.add_member(:dedicated_ip_pool, Shapes::ShapeRef.new(shape: DedicatedIpPool, location_name: "DedicatedIpPool"))
|
846
|
+
GetDedicatedIpPoolResponse.struct_class = Types::GetDedicatedIpPoolResponse
|
847
|
+
|
832
848
|
GetDedicatedIpRequest.add_member(:ip, Shapes::ShapeRef.new(shape: Ip, required: true, location: "uri", location_name: "IP"))
|
833
849
|
GetDedicatedIpRequest.struct_class = Types::GetDedicatedIpRequest
|
834
850
|
|
@@ -895,6 +911,7 @@ module Aws::SESV2
|
|
895
911
|
GetEmailIdentityResponse.add_member(:policies, Shapes::ShapeRef.new(shape: PolicyMap, location_name: "Policies"))
|
896
912
|
GetEmailIdentityResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
897
913
|
GetEmailIdentityResponse.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, location_name: "ConfigurationSetName"))
|
914
|
+
GetEmailIdentityResponse.add_member(:verification_status, Shapes::ShapeRef.new(shape: VerificationStatus, location_name: "VerificationStatus"))
|
898
915
|
GetEmailIdentityResponse.struct_class = Types::GetEmailIdentityResponse
|
899
916
|
|
900
917
|
GetEmailTemplateRequest.add_member(:template_name, Shapes::ShapeRef.new(shape: EmailTemplateName, required: true, location: "uri", location_name: "TemplateName"))
|
@@ -927,6 +944,7 @@ module Aws::SESV2
|
|
927
944
|
IdentityInfo.add_member(:identity_type, Shapes::ShapeRef.new(shape: IdentityType, location_name: "IdentityType"))
|
928
945
|
IdentityInfo.add_member(:identity_name, Shapes::ShapeRef.new(shape: Identity, location_name: "IdentityName"))
|
929
946
|
IdentityInfo.add_member(:sending_enabled, Shapes::ShapeRef.new(shape: Enabled, location_name: "SendingEnabled"))
|
947
|
+
IdentityInfo.add_member(:verification_status, Shapes::ShapeRef.new(shape: VerificationStatus, location_name: "VerificationStatus"))
|
930
948
|
IdentityInfo.struct_class = Types::IdentityInfo
|
931
949
|
|
932
950
|
IdentityInfoList.member = Shapes::ShapeRef.new(shape: IdentityInfo)
|
@@ -943,6 +961,8 @@ module Aws::SESV2
|
|
943
961
|
ImportJobSummary.add_member(:import_destination, Shapes::ShapeRef.new(shape: ImportDestination, location_name: "ImportDestination"))
|
944
962
|
ImportJobSummary.add_member(:job_status, Shapes::ShapeRef.new(shape: JobStatus, location_name: "JobStatus"))
|
945
963
|
ImportJobSummary.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTimestamp"))
|
964
|
+
ImportJobSummary.add_member(:processed_records_count, Shapes::ShapeRef.new(shape: ProcessedRecordsCount, location_name: "ProcessedRecordsCount"))
|
965
|
+
ImportJobSummary.add_member(:failed_records_count, Shapes::ShapeRef.new(shape: FailedRecordsCount, location_name: "FailedRecordsCount"))
|
946
966
|
ImportJobSummary.struct_class = Types::ImportJobSummary
|
947
967
|
|
948
968
|
ImportJobSummaryList.member = Shapes::ShapeRef.new(shape: ImportJobSummary)
|
@@ -1805,6 +1825,17 @@ module Aws::SESV2
|
|
1805
1825
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1806
1826
|
end)
|
1807
1827
|
|
1828
|
+
api.add_operation(:get_dedicated_ip_pool, Seahorse::Model::Operation.new.tap do |o|
|
1829
|
+
o.name = "GetDedicatedIpPool"
|
1830
|
+
o.http_method = "GET"
|
1831
|
+
o.http_request_uri = "/v2/email/dedicated-ip-pools/{PoolName}"
|
1832
|
+
o.input = Shapes::ShapeRef.new(shape: GetDedicatedIpPoolRequest)
|
1833
|
+
o.output = Shapes::ShapeRef.new(shape: GetDedicatedIpPoolResponse)
|
1834
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1835
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1836
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1837
|
+
end)
|
1838
|
+
|
1808
1839
|
api.add_operation(:get_dedicated_ips, Seahorse::Model::Operation.new.tap do |o|
|
1809
1840
|
o.name = "GetDedicatedIps"
|
1810
1841
|
o.http_method = "GET"
|
data/lib/aws-sdk-sesv2/types.rb
CHANGED
@@ -87,8 +87,7 @@ module Aws::SESV2
|
|
87
87
|
# @return [String]
|
88
88
|
#
|
89
89
|
# @!attribute [rw] listing_time
|
90
|
-
# The time when the blacklisting event occurred
|
91
|
-
# format.
|
90
|
+
# The time when the blacklisting event occurred.
|
92
91
|
# @return [Time]
|
93
92
|
#
|
94
93
|
# @!attribute [rw] description
|
@@ -379,8 +378,8 @@ module Aws::SESV2
|
|
379
378
|
# CloudWatch if you don't provide the value of the dimension when you
|
380
379
|
# send an email. This value has to meet the following criteria:
|
381
380
|
#
|
382
|
-
# *
|
383
|
-
# underscores (\_), or dashes (-).
|
381
|
+
# * Can only contain ASCII letters (a–z, A–Z), numbers (0–9),
|
382
|
+
# underscores (\_), or dashes (-), at signs (@), and periods (.).
|
384
383
|
#
|
385
384
|
# * It can contain no more than 256 characters.
|
386
385
|
# @return [String]
|
@@ -819,12 +818,12 @@ module Aws::SESV2
|
|
819
818
|
# The content of the custom verification email. The total size of the
|
820
819
|
# email must be less than 10 MB. The message body may contain HTML,
|
821
820
|
# with some limitations. For more information, see [Custom
|
822
|
-
#
|
821
|
+
# verification email frequently asked questions][1] in the *Amazon SES
|
823
822
|
# Developer Guide*.
|
824
823
|
#
|
825
824
|
#
|
826
825
|
#
|
827
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
826
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom-faq
|
828
827
|
# @return [String]
|
829
828
|
#
|
830
829
|
# @!attribute [rw] success_redirection_url
|
@@ -870,6 +869,7 @@ module Aws::SESV2
|
|
870
869
|
# value: "TagValue", # required
|
871
870
|
# },
|
872
871
|
# ],
|
872
|
+
# scaling_mode: "STANDARD", # accepts STANDARD, MANAGED
|
873
873
|
# }
|
874
874
|
#
|
875
875
|
# @!attribute [rw] pool_name
|
@@ -881,11 +881,16 @@ module Aws::SESV2
|
|
881
881
|
# associate with the pool.
|
882
882
|
# @return [Array<Types::Tag>]
|
883
883
|
#
|
884
|
+
# @!attribute [rw] scaling_mode
|
885
|
+
# The type of scaling mode.
|
886
|
+
# @return [String]
|
887
|
+
#
|
884
888
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateDedicatedIpPoolRequest AWS API Documentation
|
885
889
|
#
|
886
890
|
class CreateDedicatedIpPoolRequest < Struct.new(
|
887
891
|
:pool_name,
|
888
|
-
:tags
|
892
|
+
:tags,
|
893
|
+
:scaling_mode)
|
889
894
|
SENSITIVE = []
|
890
895
|
include Aws::Structure
|
891
896
|
end
|
@@ -1369,6 +1374,31 @@ module Aws::SESV2
|
|
1369
1374
|
include Aws::Structure
|
1370
1375
|
end
|
1371
1376
|
|
1377
|
+
# Contains information about a dedicated IP pool.
|
1378
|
+
#
|
1379
|
+
# @!attribute [rw] pool_name
|
1380
|
+
# The name of the dedicated IP pool.
|
1381
|
+
# @return [String]
|
1382
|
+
#
|
1383
|
+
# @!attribute [rw] scaling_mode
|
1384
|
+
# The type of the dedicated IP pool.
|
1385
|
+
#
|
1386
|
+
# * `STANDARD` – A dedicated IP pool where the customer can control
|
1387
|
+
# which IPs are part of the pool.
|
1388
|
+
#
|
1389
|
+
# * `MANAGED` – A dedicated IP pool where the reputation and number of
|
1390
|
+
# IPs is automatically managed by Amazon SES.
|
1391
|
+
# @return [String]
|
1392
|
+
#
|
1393
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DedicatedIpPool AWS API Documentation
|
1394
|
+
#
|
1395
|
+
class DedicatedIpPool < Struct.new(
|
1396
|
+
:pool_name,
|
1397
|
+
:scaling_mode)
|
1398
|
+
SENSITIVE = []
|
1399
|
+
include Aws::Structure
|
1400
|
+
end
|
1401
|
+
|
1372
1402
|
# A request to delete an event destination from a configuration set.
|
1373
1403
|
#
|
1374
1404
|
# @note When making an API call, you may pass DeleteConfigurationSetEventDestinationRequest
|
@@ -1705,7 +1735,7 @@ module Aws::SESV2
|
|
1705
1735
|
#
|
1706
1736
|
# @!attribute [rw] create_date
|
1707
1737
|
# The date and time when the predictive inbox placement test was
|
1708
|
-
# created
|
1738
|
+
# created.
|
1709
1739
|
# @return [Time]
|
1710
1740
|
#
|
1711
1741
|
# @!attribute [rw] deliverability_test_status
|
@@ -1990,17 +2020,15 @@ module Aws::SESV2
|
|
1990
2020
|
# @return [Array<String>]
|
1991
2021
|
#
|
1992
2022
|
# @!attribute [rw] first_seen_date_time
|
1993
|
-
# The first time
|
1994
|
-
#
|
1995
|
-
#
|
1996
|
-
# message.
|
2023
|
+
# The first time when the email message was delivered to any
|
2024
|
+
# recipient's inbox. This value can help you determine how long it
|
2025
|
+
# took for a campaign to deliver an email message.
|
1997
2026
|
# @return [Time]
|
1998
2027
|
#
|
1999
2028
|
# @!attribute [rw] last_seen_date_time
|
2000
|
-
# The last time
|
2001
|
-
#
|
2002
|
-
#
|
2003
|
-
# message.
|
2029
|
+
# The last time when the email message was delivered to any
|
2030
|
+
# recipient's inbox. This value can help you determine how long it
|
2031
|
+
# took for a campaign to deliver an email message.
|
2004
2032
|
# @return [Time]
|
2005
2033
|
#
|
2006
2034
|
# @!attribute [rw] inbox_count
|
@@ -2089,8 +2117,8 @@ module Aws::SESV2
|
|
2089
2117
|
# @return [String]
|
2090
2118
|
#
|
2091
2119
|
# @!attribute [rw] subscription_start_date
|
2092
|
-
# The date
|
2093
|
-
#
|
2120
|
+
# The date when you enabled the Deliverability dashboard for the
|
2121
|
+
# domain.
|
2094
2122
|
# @return [Time]
|
2095
2123
|
#
|
2096
2124
|
# @!attribute [rw] inbox_placement_tracking_option
|
@@ -2904,6 +2932,41 @@ module Aws::SESV2
|
|
2904
2932
|
include Aws::Structure
|
2905
2933
|
end
|
2906
2934
|
|
2935
|
+
# A request to obtain more information about a dedicated IP pool.
|
2936
|
+
#
|
2937
|
+
# @note When making an API call, you may pass GetDedicatedIpPoolRequest
|
2938
|
+
# data as a hash:
|
2939
|
+
#
|
2940
|
+
# {
|
2941
|
+
# pool_name: "PoolName", # required
|
2942
|
+
# }
|
2943
|
+
#
|
2944
|
+
# @!attribute [rw] pool_name
|
2945
|
+
# The name of the dedicated IP pool to retrieve.
|
2946
|
+
# @return [String]
|
2947
|
+
#
|
2948
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetDedicatedIpPoolRequest AWS API Documentation
|
2949
|
+
#
|
2950
|
+
class GetDedicatedIpPoolRequest < Struct.new(
|
2951
|
+
:pool_name)
|
2952
|
+
SENSITIVE = []
|
2953
|
+
include Aws::Structure
|
2954
|
+
end
|
2955
|
+
|
2956
|
+
# The following element is returned by the service.
|
2957
|
+
#
|
2958
|
+
# @!attribute [rw] dedicated_ip_pool
|
2959
|
+
# An object that contains information about a dedicated IP pool.
|
2960
|
+
# @return [Types::DedicatedIpPool]
|
2961
|
+
#
|
2962
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetDedicatedIpPoolResponse AWS API Documentation
|
2963
|
+
#
|
2964
|
+
class GetDedicatedIpPoolResponse < Struct.new(
|
2965
|
+
:dedicated_ip_pool)
|
2966
|
+
SENSITIVE = []
|
2967
|
+
include Aws::Structure
|
2968
|
+
end
|
2969
|
+
|
2907
2970
|
# A request to obtain more information about a dedicated IP address.
|
2908
2971
|
#
|
2909
2972
|
# @note When making an API call, you may pass GetDedicatedIpRequest
|
@@ -3035,11 +3098,11 @@ module Aws::SESV2
|
|
3035
3098
|
# @return [Boolean]
|
3036
3099
|
#
|
3037
3100
|
# @!attribute [rw] subscription_expiry_date
|
3038
|
-
# The date
|
3039
|
-
#
|
3040
|
-
#
|
3041
|
-
#
|
3042
|
-
#
|
3101
|
+
# The date when your current subscription to the Deliverability
|
3102
|
+
# dashboard is scheduled to expire, if your subscription is scheduled
|
3103
|
+
# to expire at the end of the current calendar month. This value is
|
3104
|
+
# null if you have an active subscription that isn’t due to expire at
|
3105
|
+
# the end of the month.
|
3043
3106
|
# @return [Time]
|
3044
3107
|
#
|
3045
3108
|
# @!attribute [rw] account_status
|
@@ -3351,6 +3414,24 @@ module Aws::SESV2
|
|
3351
3414
|
# identity.
|
3352
3415
|
# @return [String]
|
3353
3416
|
#
|
3417
|
+
# @!attribute [rw] verification_status
|
3418
|
+
# The verification status of the identity. The status can be one of
|
3419
|
+
# the following:
|
3420
|
+
#
|
3421
|
+
# * `PENDING` – The verification process was initiated, but Amazon SES
|
3422
|
+
# hasn't yet been able to verify the identity.
|
3423
|
+
#
|
3424
|
+
# * `SUCCESS` – The verification process completed successfully.
|
3425
|
+
#
|
3426
|
+
# * `FAILED` – The verification process failed.
|
3427
|
+
#
|
3428
|
+
# * `TEMPORARY_FAILURE` – A temporary issue is preventing Amazon SES
|
3429
|
+
# from determining the verification status of the identity.
|
3430
|
+
#
|
3431
|
+
# * `NOT_STARTED` – The verification process hasn't been initiated
|
3432
|
+
# for the identity.
|
3433
|
+
# @return [String]
|
3434
|
+
#
|
3354
3435
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetEmailIdentityResponse AWS API Documentation
|
3355
3436
|
#
|
3356
3437
|
class GetEmailIdentityResponse < Struct.new(
|
@@ -3361,7 +3442,8 @@ module Aws::SESV2
|
|
3361
3442
|
:mail_from_attributes,
|
3362
3443
|
:policies,
|
3363
3444
|
:tags,
|
3364
|
-
:configuration_set_name
|
3445
|
+
:configuration_set_name,
|
3446
|
+
:verification_status)
|
3365
3447
|
SENSITIVE = []
|
3366
3448
|
include Aws::Structure
|
3367
3449
|
end
|
@@ -3543,12 +3625,31 @@ module Aws::SESV2
|
|
3543
3625
|
# SES to send email from that identity.
|
3544
3626
|
# @return [Boolean]
|
3545
3627
|
#
|
3628
|
+
# @!attribute [rw] verification_status
|
3629
|
+
# The verification status of the identity. The status can be one of
|
3630
|
+
# the following:
|
3631
|
+
#
|
3632
|
+
# * `PENDING` – The verification process was initiated, but Amazon SES
|
3633
|
+
# hasn't yet been able to verify the identity.
|
3634
|
+
#
|
3635
|
+
# * `SUCCESS` – The verification process completed successfully.
|
3636
|
+
#
|
3637
|
+
# * `FAILED` – The verification process failed.
|
3638
|
+
#
|
3639
|
+
# * `TEMPORARY_FAILURE` – A temporary issue is preventing Amazon SES
|
3640
|
+
# from determining the verification status of the identity.
|
3641
|
+
#
|
3642
|
+
# * `NOT_STARTED` – The verification process hasn't been initiated
|
3643
|
+
# for the identity.
|
3644
|
+
# @return [String]
|
3645
|
+
#
|
3546
3646
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/IdentityInfo AWS API Documentation
|
3547
3647
|
#
|
3548
3648
|
class IdentityInfo < Struct.new(
|
3549
3649
|
:identity_type,
|
3550
3650
|
:identity_name,
|
3551
|
-
:sending_enabled
|
3651
|
+
:sending_enabled,
|
3652
|
+
:verification_status)
|
3552
3653
|
SENSITIVE = []
|
3553
3654
|
include Aws::Structure
|
3554
3655
|
end
|
@@ -3636,13 +3737,24 @@ module Aws::SESV2
|
|
3636
3737
|
# The date and time when the import job was created.
|
3637
3738
|
# @return [Time]
|
3638
3739
|
#
|
3740
|
+
# @!attribute [rw] processed_records_count
|
3741
|
+
# The current number of records processed.
|
3742
|
+
# @return [Integer]
|
3743
|
+
#
|
3744
|
+
# @!attribute [rw] failed_records_count
|
3745
|
+
# The number of records that failed processing because of invalid
|
3746
|
+
# input or other reasons.
|
3747
|
+
# @return [Integer]
|
3748
|
+
#
|
3639
3749
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ImportJobSummary AWS API Documentation
|
3640
3750
|
#
|
3641
3751
|
class ImportJobSummary < Struct.new(
|
3642
3752
|
:job_id,
|
3643
3753
|
:import_destination,
|
3644
3754
|
:job_status,
|
3645
|
-
:created_timestamp
|
3755
|
+
:created_timestamp,
|
3756
|
+
:processed_records_count,
|
3757
|
+
:failed_records_count)
|
3646
3758
|
SENSITIVE = []
|
3647
3759
|
include Aws::Structure
|
3648
3760
|
end
|
@@ -4148,14 +4260,13 @@ module Aws::SESV2
|
|
4148
4260
|
# }
|
4149
4261
|
#
|
4150
4262
|
# @!attribute [rw] start_date
|
4151
|
-
# The first day
|
4152
|
-
# deliverability data for.
|
4263
|
+
# The first day that you want to obtain deliverability data for.
|
4153
4264
|
# @return [Time]
|
4154
4265
|
#
|
4155
4266
|
# @!attribute [rw] end_date
|
4156
|
-
# The last day
|
4157
|
-
#
|
4158
|
-
#
|
4267
|
+
# The last day that you want to obtain deliverability data for. This
|
4268
|
+
# value has to be less than or equal to 30 days after the value of the
|
4269
|
+
# `StartDate` parameter.
|
4159
4270
|
# @return [Time]
|
4160
4271
|
#
|
4161
4272
|
# @!attribute [rw] subscribed_domain
|
@@ -4451,14 +4562,13 @@ module Aws::SESV2
|
|
4451
4562
|
# @!attribute [rw] start_date
|
4452
4563
|
# Used to filter the list of suppressed email destinations so that it
|
4453
4564
|
# only includes addresses that were added to the list after a specific
|
4454
|
-
# date.
|
4565
|
+
# date.
|
4455
4566
|
# @return [Time]
|
4456
4567
|
#
|
4457
4568
|
# @!attribute [rw] end_date
|
4458
4569
|
# Used to filter the list of suppressed email destinations so that it
|
4459
4570
|
# only includes addresses that were added to the list before a
|
4460
|
-
# specific date.
|
4461
|
-
# format.
|
4571
|
+
# specific date.
|
4462
4572
|
# @return [Time]
|
4463
4573
|
#
|
4464
4574
|
# @!attribute [rw] next_token
|
@@ -4570,11 +4680,11 @@ module Aws::SESV2
|
|
4570
4680
|
#
|
4571
4681
|
# @!attribute [rw] behavior_on_mx_failure
|
4572
4682
|
# The action to take if the required MX record can't be found when
|
4573
|
-
# you send an email. When you set this value to `
|
4574
|
-
# mail is sent using *amazonses.com* as the MAIL FROM domain. When
|
4575
|
-
# set this value to `
|
4576
|
-
# `MailFromDomainNotVerified` error, and doesn't attempt to
|
4577
|
-
# the email.
|
4683
|
+
# you send an email. When you set this value to `USE_DEFAULT_VALUE`,
|
4684
|
+
# the mail is sent using *amazonses.com* as the MAIL FROM domain. When
|
4685
|
+
# you set this value to `REJECT_MESSAGE`, the Amazon SES API v2
|
4686
|
+
# returns a `MailFromDomainNotVerified` error, and doesn't attempt to
|
4687
|
+
# deliver the email.
|
4578
4688
|
#
|
4579
4689
|
# These behaviors are taken when the custom MAIL FROM domain
|
4580
4690
|
# configuration is in the `Pending`, `Failed`, and `TemporaryFailure`
|
@@ -6214,8 +6324,9 @@ module Aws::SESV2
|
|
6214
6324
|
#
|
6215
6325
|
# @!attribute [rw] max_24_hour_send
|
6216
6326
|
# The maximum number of emails that you can send in the current Amazon
|
6217
|
-
# Web Services Region over a 24-hour period.
|
6218
|
-
# your *sending
|
6327
|
+
# Web Services Region over a 24-hour period. A value of -1 signifies
|
6328
|
+
# an unlimited quota. (This value is also referred to as your *sending
|
6329
|
+
# quota*.)
|
6219
6330
|
# @return [Float]
|
6220
6331
|
#
|
6221
6332
|
# @!attribute [rw] max_send_rate
|
@@ -7020,12 +7131,12 @@ module Aws::SESV2
|
|
7020
7131
|
# The content of the custom verification email. The total size of the
|
7021
7132
|
# email must be less than 10 MB. The message body may contain HTML,
|
7022
7133
|
# with some limitations. For more information, see [Custom
|
7023
|
-
#
|
7134
|
+
# verification email frequently asked questions][1] in the *Amazon SES
|
7024
7135
|
# Developer Guide*.
|
7025
7136
|
#
|
7026
7137
|
#
|
7027
7138
|
#
|
7028
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
7139
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom-faq
|
7029
7140
|
# @return [String]
|
7030
7141
|
#
|
7031
7142
|
# @!attribute [rw] success_redirection_url
|
data/lib/aws-sdk-sesv2.rb
CHANGED
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.28.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: 2022-
|
11
|
+
date: 2022-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|