aws-sdk-sesv2 1.26.0 → 1.28.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c2c722ec298628dbf9ec7622da090c3890a15c52eab14158b9fb7e7f874c6050
4
- data.tar.gz: 4af2d79bdb48441e819a27cb5f0f11aacf05ab8e68eb70e692ea848a476db7a0
3
+ metadata.gz: 7c29b3b1698d4efeabd46a3b9333cf26998317feb507abe563a700a3152caab1
4
+ data.tar.gz: 886722433b9c1928a9f3ef9e928d88ebe40c167d7a963595d83b864094b64610
5
5
  SHA512:
6
- metadata.gz: f5a6f98df3911848b5d5f1df7791a72197452ba1a900585555896bc941cc07255d5c9bba80598508a623db1a044d70ad12b66c542396e40c6e90036c557c67c6
7
- data.tar.gz: c2329d75e2aa3b16affb11d8f4256f8f845da2a73e78e964668fc1c27148795706084d60d308503d0d3ea124b5e06915cee0633a3d7118ec54cce1832f741270
6
+ metadata.gz: 6bcd5e63830fbe0123fc6e548156ad9acb2b96ebce66d5ac9a4602a8719aed93e16d4f4890d883689fc8fc0163d99bf29f53bd1a79c389646336afc517d4d34b
7
+ data.tar.gz: 9864515ef3bc7c3fdcff47f52ccc6db2c50e098703f98290140405c713618a678bb2112c81ca6af5823f79730c42526bea54cac35a24ebeb6b6a5970246c0618
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.27.0 (2022-02-24)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.26.0 (2022-02-03)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.26.0
1
+ 1.28.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
31
32
  require 'aws-sdk-core/plugins/recursion_detection.rb'
32
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
@@ -75,6 +76,7 @@ module Aws::SESV2
75
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
76
77
  add_plugin(Aws::Plugins::TransferEncoding)
77
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
78
80
  add_plugin(Aws::Plugins::DefaultsMode)
79
81
  add_plugin(Aws::Plugins::RecursionDetection)
80
82
  add_plugin(Aws::Plugins::SignatureV4)
@@ -583,14 +585,14 @@ module Aws::SESV2
583
585
  # Creates a new custom verification email template.
584
586
  #
585
587
  # For more information about custom verification email templates, see
586
- # [Using Custom Verification Email Templates][1] in the *Amazon SES
588
+ # [Using custom verification email templates][1] in the *Amazon SES
587
589
  # Developer Guide*.
588
590
  #
589
591
  # You can execute this operation no more than once per second.
590
592
  #
591
593
  #
592
594
  #
593
- # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-verify-address-custom.html
595
+ # [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
594
596
  #
595
597
  # @option params [required, String] :template_name
596
598
  # The name of the custom verification email template.
@@ -604,12 +606,12 @@ module Aws::SESV2
604
606
  # @option params [required, String] :template_content
605
607
  # The content of the custom verification email. The total size of the
606
608
  # email must be less than 10 MB. The message body may contain HTML, with
607
- # some limitations. For more information, see [Custom Verification Email
608
- # Frequently Asked Questions][1] in the *Amazon SES Developer Guide*.
609
+ # some limitations. For more information, see [Custom verification email
610
+ # frequently asked questions][1] in the *Amazon SES Developer Guide*.
609
611
  #
610
612
  #
611
613
  #
612
- # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-verify-address-custom.html#custom-verification-emails-faq
614
+ # [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom-faq
613
615
  #
614
616
  # @option params [required, String] :success_redirection_url
615
617
  # The URL that the recipient of the verification email is sent to if his
@@ -654,6 +656,9 @@ module Aws::SESV2
654
656
  # An object that defines the tags (keys and values) that you want to
655
657
  # associate with the pool.
656
658
  #
659
+ # @option params [String] :scaling_mode
660
+ # The type of scaling mode.
661
+ #
657
662
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
658
663
  #
659
664
  # @example Request syntax with placeholder values
@@ -666,6 +671,7 @@ module Aws::SESV2
666
671
  # value: "TagValue", # required
667
672
  # },
668
673
  # ],
674
+ # scaling_mode: "STANDARD", # accepts STANDARD, MANAGED
669
675
  # })
670
676
  #
671
677
  # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateDedicatedIpPool AWS API Documentation
@@ -1124,14 +1130,14 @@ module Aws::SESV2
1124
1130
  # Deletes an existing custom verification email template.
1125
1131
  #
1126
1132
  # For more information about custom verification email templates, see
1127
- # [Using Custom Verification Email Templates][1] in the *Amazon SES
1133
+ # [Using custom verification email templates][1] in the *Amazon SES
1128
1134
  # Developer Guide*.
1129
1135
  #
1130
1136
  # You can execute this operation no more than once per second.
1131
1137
  #
1132
1138
  #
1133
1139
  #
1134
- # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-verify-address-custom.html
1140
+ # [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
1135
1141
  #
1136
1142
  # @option params [required, String] :template_name
1137
1143
  # The name of the custom verification email template that you want to
@@ -1569,14 +1575,14 @@ module Aws::SESV2
1569
1575
  # you specify.
1570
1576
  #
1571
1577
  # For more information about custom verification email templates, see
1572
- # [Using Custom Verification Email Templates][1] in the *Amazon SES
1578
+ # [Using custom verification email templates][1] in the *Amazon SES
1573
1579
  # Developer Guide*.
1574
1580
  #
1575
1581
  # You can execute this operation no more than once per second.
1576
1582
  #
1577
1583
  #
1578
1584
  #
1579
- # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-verify-address-custom.html
1585
+ # [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
1580
1586
  #
1581
1587
  # @option params [required, String] :template_name
1582
1588
  # The name of the custom verification email template that you want to
@@ -1650,6 +1656,35 @@ module Aws::SESV2
1650
1656
  req.send_request(options)
1651
1657
  end
1652
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
+
1653
1688
  # List the dedicated IP addresses that are associated with your Amazon
1654
1689
  # Web Services account.
1655
1690
  #
@@ -1930,6 +1965,7 @@ module Aws::SESV2
1930
1965
  # * {Types::GetEmailIdentityResponse#policies #policies} => Hash<String,String>
1931
1966
  # * {Types::GetEmailIdentityResponse#tags #tags} => Array<Types::Tag>
1932
1967
  # * {Types::GetEmailIdentityResponse#configuration_set_name #configuration_set_name} => String
1968
+ # * {Types::GetEmailIdentityResponse#verification_status #verification_status} => String
1933
1969
  #
1934
1970
  # @example Request syntax with placeholder values
1935
1971
  #
@@ -1959,6 +1995,7 @@ module Aws::SESV2
1959
1995
  # resp.tags[0].key #=> String
1960
1996
  # resp.tags[0].value #=> String
1961
1997
  # resp.configuration_set_name #=> String
1998
+ # resp.verification_status #=> String, one of "PENDING", "SUCCESS", "FAILED", "TEMPORARY_FAILURE", "NOT_STARTED"
1962
1999
  #
1963
2000
  # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetEmailIdentity AWS API Documentation
1964
2001
  #
@@ -2296,14 +2333,14 @@ module Aws::SESV2
2296
2333
  # account in the current Amazon Web Services Region.
2297
2334
  #
2298
2335
  # For more information about custom verification email templates, see
2299
- # [Using Custom Verification Email Templates][1] in the *Amazon SES
2336
+ # [Using custom verification email templates][1] in the *Amazon SES
2300
2337
  # Developer Guide*.
2301
2338
  #
2302
2339
  # You can execute this operation no more than once per second.
2303
2340
  #
2304
2341
  #
2305
2342
  #
2306
- # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-verify-address-custom.html
2343
+ # [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
2307
2344
  #
2308
2345
  # @option params [String] :next_token
2309
2346
  # A token returned from a previous call to
@@ -2455,13 +2492,12 @@ module Aws::SESV2
2455
2492
  # dashboard for the domain.
2456
2493
  #
2457
2494
  # @option params [required, Time,DateTime,Date,Integer,String] :start_date
2458
- # The first day, in Unix time format, that you want to obtain
2459
- # deliverability data for.
2495
+ # The first day that you want to obtain deliverability data for.
2460
2496
  #
2461
2497
  # @option params [required, Time,DateTime,Date,Integer,String] :end_date
2462
- # The last day, in Unix time format, that you want to obtain
2463
- # deliverability data for. This value has to be less than or equal to 30
2464
- # days after the value of the `StartDate` parameter.
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.
2465
2501
  #
2466
2502
  # @option params [required, String] :subscribed_domain
2467
2503
  # The domain to obtain deliverability data for.
@@ -2564,6 +2600,7 @@ module Aws::SESV2
2564
2600
  # resp.email_identities[0].identity_type #=> String, one of "EMAIL_ADDRESS", "DOMAIN", "MANAGED_DOMAIN"
2565
2601
  # resp.email_identities[0].identity_name #=> String
2566
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"
2567
2604
  # resp.next_token #=> String
2568
2605
  #
2569
2606
  # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListEmailIdentities AWS API Documentation
@@ -2666,6 +2703,8 @@ module Aws::SESV2
2666
2703
  # resp.import_jobs[0].import_destination.contact_list_destination.contact_list_import_action #=> String, one of "DELETE", "PUT"
2667
2704
  # resp.import_jobs[0].job_status #=> String, one of "CREATED", "PROCESSING", "COMPLETED", "FAILED"
2668
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
2669
2708
  # resp.next_token #=> String
2670
2709
  #
2671
2710
  # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListImportJobs AWS API Documentation
@@ -2686,12 +2725,12 @@ module Aws::SESV2
2686
2725
  # @option params [Time,DateTime,Date,Integer,String] :start_date
2687
2726
  # Used to filter the list of suppressed email destinations so that it
2688
2727
  # only includes addresses that were added to the list after a specific
2689
- # date. The date that you specify should be in Unix time format.
2728
+ # date.
2690
2729
  #
2691
2730
  # @option params [Time,DateTime,Date,Integer,String] :end_date
2692
2731
  # Used to filter the list of suppressed email destinations so that it
2693
2732
  # only includes addresses that were added to the list before a specific
2694
- # date. The date that you specify should be in Unix time format.
2733
+ # date.
2695
2734
  #
2696
2735
  # @option params [String] :next_token
2697
2736
  # A token returned from a previous call to `ListSuppressedDestinations`
@@ -3589,14 +3628,14 @@ module Aws::SESV2
3589
3628
  #
3590
3629
  # To use this operation, you must first create a custom verification
3591
3630
  # email template. For more information about creating and using custom
3592
- # verification email templates, see [Using Custom Verification Email
3593
- # Templates][1] in the *Amazon SES Developer Guide*.
3631
+ # verification email templates, see [Using custom verification email
3632
+ # templates][1] in the *Amazon SES Developer Guide*.
3594
3633
  #
3595
3634
  # You can execute this operation no more than once per second.
3596
3635
  #
3597
3636
  #
3598
3637
  #
3599
- # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-verify-address-custom.html
3638
+ # [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
3600
3639
  #
3601
3640
  # @option params [required, String] :email_address
3602
3641
  # The email address to verify.
@@ -4061,14 +4100,14 @@ module Aws::SESV2
4061
4100
  # Updates an existing custom verification email template.
4062
4101
  #
4063
4102
  # For more information about custom verification email templates, see
4064
- # [Using Custom Verification Email Templates][1] in the *Amazon SES
4103
+ # [Using custom verification email templates][1] in the *Amazon SES
4065
4104
  # Developer Guide*.
4066
4105
  #
4067
4106
  # You can execute this operation no more than once per second.
4068
4107
  #
4069
4108
  #
4070
4109
  #
4071
- # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-verify-address-custom.html
4110
+ # [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
4072
4111
  #
4073
4112
  # @option params [required, String] :template_name
4074
4113
  # The name of the custom verification email template that you want to
@@ -4083,12 +4122,12 @@ module Aws::SESV2
4083
4122
  # @option params [required, String] :template_content
4084
4123
  # The content of the custom verification email. The total size of the
4085
4124
  # email must be less than 10 MB. The message body may contain HTML, with
4086
- # some limitations. For more information, see [Custom Verification Email
4087
- # Frequently Asked Questions][1] in the *Amazon SES Developer Guide*.
4125
+ # some limitations. For more information, see [Custom verification email
4126
+ # frequently asked questions][1] in the *Amazon SES Developer Guide*.
4088
4127
  #
4089
4128
  #
4090
4129
  #
4091
- # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-verify-address-custom.html#custom-verification-emails-faq
4130
+ # [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom-faq
4092
4131
  #
4093
4132
  # @option params [required, String] :success_redirection_url
4094
4133
  # The URL that the recipient of the verification email is sent to if his
@@ -4230,7 +4269,7 @@ module Aws::SESV2
4230
4269
  params: params,
4231
4270
  config: config)
4232
4271
  context[:gem_name] = 'aws-sdk-sesv2'
4233
- context[:gem_version] = '1.26.0'
4272
+ context[:gem_version] = '1.28.0'
4234
4273
  Seahorse::Client::Request.new(handlers, context)
4235
4274
  end
4236
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"
@@ -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, shown in Unix time
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
- # * It can only contain ASCII letters (a–z, A–Z), numbers (0–9),
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
- # Verification Email Frequently Asked Questions][1] in the *Amazon SES
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/DeveloperGuide/send-email-verify-address-custom.html#custom-verification-emails-faq
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, in Unix time format.
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, in Unix time format, when the email message was
1994
- # delivered to any recipient's inbox. This value can help you
1995
- # determine how long it took for a campaign to deliver an email
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, in Unix time format, when the email message was
2001
- # delivered to any recipient's inbox. This value can help you
2002
- # determine how long it took for a campaign to deliver an email
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, in Unix time format, when you enabled the Deliverability
2093
- # dashboard for the domain.
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, in Unix time format, when your current subscription to the
3039
- # Deliverability dashboard is scheduled to expire, if your
3040
- # subscription is scheduled to expire at the end of the current
3041
- # calendar month. This value is null if you have an active
3042
- # subscription that isn’t due to expire at the end of the month.
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, in Unix time format, that you want to obtain
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, in Unix time format, that you want to obtain
4157
- # deliverability data for. This value has to be less than or equal to
4158
- # 30 days after the value of the `StartDate` parameter.
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. The date that you specify should be in Unix time format.
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. The date that you specify should be in Unix time
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 `UseDefaultValue`, the
4574
- # mail is sent using *amazonses.com* as the MAIL FROM domain. When you
4575
- # set this value to `RejectMessage`, the Amazon SES API v2 returns a
4576
- # `MailFromDomainNotVerified` error, and doesn't attempt to deliver
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. This value is also called
6218
- # your *sending quota*.
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
- # Verification Email Frequently Asked Questions][1] in the *Amazon SES
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/DeveloperGuide/send-email-verify-address-custom.html#custom-verification-emails-faq
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
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-sesv2/customizations'
48
48
  # @!group service
49
49
  module Aws::SESV2
50
50
 
51
- GEM_VERSION = '1.26.0'
51
+ GEM_VERSION = '1.28.0'
52
52
 
53
53
  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.26.0
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-02-03 00:00:00.000000000 Z
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
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.126.0
22
+ version: 3.127.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.126.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement