aws-sdk-sesv2 1.105.0 → 1.107.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 +248 -14
- data/lib/aws-sdk-sesv2/client_api.rb +133 -0
- data/lib/aws-sdk-sesv2/types.rb +409 -17
- data/lib/aws-sdk-sesv2.rb +2 -2
- data/sig/client.rbs +60 -2
- data/sig/params.rbs +10 -0
- data/sig/types.rbs +91 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 15881793800d4934a9a5fa99541bab7f694a1b5c86b342369e433e487693d859
|
|
4
|
+
data.tar.gz: 55e7d30fe09e99592b1cb4dfa685883d610c21cfe02ee047389927c0f5821adf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 898baa7e51b115a0f25518df0b95f612f4c67dea067504b515530f27c0df53133db43a0e37bdf3ff2571661f71535865725f2c3b32b3a4efcfcaaa0e2d4fe029
|
|
7
|
+
data.tar.gz: d602552794fb7196fbf6ec9df6927827fa69b6552a0b2e3716089a57eed363136a4cd01bc26675f695d3672114d7dd136cf0476ff4584411c91ec0b16af27325
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.107.0 (2026-09-01)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added support for managing SMIME signing certificates for email identities, including associating, listing, and disassociating certificates. Added the UpdateConfigurationSet operation to configure message security options such as signing scheme.
|
|
8
|
+
|
|
9
|
+
1.106.0 (2026-08-20)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Amazon SES now supports per-message tracking overrides. You can use the new ConfigurationOverrides parameter in SendEmail and SendBulkEmail to enable or disable open and click tracking for individual messages without changing your account-level or configuration set settings.
|
|
13
|
+
|
|
4
14
|
1.105.0 (2026-07-22)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.107.0
|
data/lib/aws-sdk-sesv2/client.rb
CHANGED
|
@@ -474,6 +474,63 @@ module Aws::SESV2
|
|
|
474
474
|
|
|
475
475
|
# @!group API Operations
|
|
476
476
|
|
|
477
|
+
# Associates an S/MIME certificate with an email identity. After the
|
|
478
|
+
# certificate is active, Amazon SES API v2 can add an S/MIME signature
|
|
479
|
+
# to messages that you send from the associated address when signing is
|
|
480
|
+
# enabled on the configuration set used to send the message.
|
|
481
|
+
#
|
|
482
|
+
# The certificate is an X.509 certificate that you manage in Certificate
|
|
483
|
+
# Manager (ACM). You identify it by its Amazon Resource Name (ARN).
|
|
484
|
+
#
|
|
485
|
+
# * If the email identity is a domain, you must specify a `FromAddress`
|
|
486
|
+
# that belongs to that domain or one of its subdomains. The
|
|
487
|
+
# certificate applies to messages sent from that address.
|
|
488
|
+
#
|
|
489
|
+
# * If the email identity is an email address, `FromAddress` is
|
|
490
|
+
# optional. If you specify it, it must exactly match the email
|
|
491
|
+
# identity.
|
|
492
|
+
#
|
|
493
|
+
# When the association is created, the certificate begins provisioning
|
|
494
|
+
# and its status is `PROVISIONING`. The status changes to `ACTIVE` when
|
|
495
|
+
# the certificate is ready to use for signing. Each email address can
|
|
496
|
+
# have only one certificate association. If an association already
|
|
497
|
+
# exists for the address, this operation returns an error, unless the
|
|
498
|
+
# existing association is in the `DEPROVISIONING` state.
|
|
499
|
+
#
|
|
500
|
+
# @option params [required, String] :email_identity
|
|
501
|
+
# The email identity, either an email address or a domain, to associate
|
|
502
|
+
# the certificate with.
|
|
503
|
+
#
|
|
504
|
+
# @option params [String] :from_address
|
|
505
|
+
# The email address that the certificate applies to. This value is
|
|
506
|
+
# required when the email identity is a domain, and the address must
|
|
507
|
+
# belong to that domain or one of its subdomains. When the email
|
|
508
|
+
# identity is an email address, this value is optional. If you specify
|
|
509
|
+
# it, it must exactly match the email identity.
|
|
510
|
+
#
|
|
511
|
+
# @option params [required, String] :certificate_arn
|
|
512
|
+
# The Amazon Resource Name (ARN) of the Certificate Manager (ACM)
|
|
513
|
+
# certificate to associate with the email identity.
|
|
514
|
+
#
|
|
515
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
516
|
+
#
|
|
517
|
+
# @example Request syntax with placeholder values
|
|
518
|
+
#
|
|
519
|
+
# resp = client.associate_email_identity_certificate({
|
|
520
|
+
# email_identity: "Identity", # required
|
|
521
|
+
# from_address: "EmailAddress",
|
|
522
|
+
# certificate_arn: "CertificateArn", # required
|
|
523
|
+
# })
|
|
524
|
+
#
|
|
525
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/AssociateEmailIdentityCertificate AWS API Documentation
|
|
526
|
+
#
|
|
527
|
+
# @overload associate_email_identity_certificate(params = {})
|
|
528
|
+
# @param [Hash] params ({})
|
|
529
|
+
def associate_email_identity_certificate(params = {}, options = {})
|
|
530
|
+
req = build_request(:associate_email_identity_certificate, params)
|
|
531
|
+
req.send_request(options)
|
|
532
|
+
end
|
|
533
|
+
|
|
477
534
|
# Retrieves batches of metric data collected based on your sending
|
|
478
535
|
# activity.
|
|
479
536
|
#
|
|
@@ -604,6 +661,11 @@ module Aws::SESV2
|
|
|
604
661
|
# An object that defines the MailManager archiving options for emails
|
|
605
662
|
# that you send using the configuration set.
|
|
606
663
|
#
|
|
664
|
+
# @option params [Types::MessageSecurityOptions] :message_security_options
|
|
665
|
+
# The message security options to apply to the configuration set, such
|
|
666
|
+
# as the signing scheme used for messages that you send with the
|
|
667
|
+
# configuration set.
|
|
668
|
+
#
|
|
607
669
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
608
670
|
#
|
|
609
671
|
# @example Request syntax with placeholder values
|
|
@@ -655,6 +717,15 @@ module Aws::SESV2
|
|
|
655
717
|
# archiving_options: {
|
|
656
718
|
# archive_arn: "ArchiveArn",
|
|
657
719
|
# },
|
|
720
|
+
# message_security_options: {
|
|
721
|
+
# signing_scheme: {
|
|
722
|
+
# default_scheme: {
|
|
723
|
+
# },
|
|
724
|
+
# smime_scheme: {
|
|
725
|
+
# signature_format: "DETACHED", # accepts DETACHED
|
|
726
|
+
# },
|
|
727
|
+
# },
|
|
728
|
+
# },
|
|
658
729
|
# })
|
|
659
730
|
#
|
|
660
731
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateConfigurationSet AWS API Documentation
|
|
@@ -2012,6 +2083,45 @@ module Aws::SESV2
|
|
|
2012
2083
|
req.send_request(options)
|
|
2013
2084
|
end
|
|
2014
2085
|
|
|
2086
|
+
# Removes the association between an S/MIME certificate and an email
|
|
2087
|
+
# identity. After the association is removed, Amazon SES API v2 stops
|
|
2088
|
+
# adding an S/MIME signature to messages sent from that address.
|
|
2089
|
+
#
|
|
2090
|
+
# If the email identity is a domain, specify the `FromAddress` whose
|
|
2091
|
+
# certificate association you want to remove.
|
|
2092
|
+
#
|
|
2093
|
+
# This operation is idempotent. If the specified email identity exists
|
|
2094
|
+
# but there's no matching certificate association, the operation
|
|
2095
|
+
# succeeds without making any changes. Amazon SES API v2 returns a
|
|
2096
|
+
# `NotFoundException` only when the specified email identity doesn't
|
|
2097
|
+
# exist.
|
|
2098
|
+
#
|
|
2099
|
+
# @option params [required, String] :email_identity
|
|
2100
|
+
# The email identity whose certificate association you want to remove.
|
|
2101
|
+
#
|
|
2102
|
+
# @option params [String] :from_address
|
|
2103
|
+
# The email address whose certificate association you want to remove.
|
|
2104
|
+
# This value is required when the email identity is a domain. When the
|
|
2105
|
+
# email identity is an email address, this value is optional.
|
|
2106
|
+
#
|
|
2107
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
2108
|
+
#
|
|
2109
|
+
# @example Request syntax with placeholder values
|
|
2110
|
+
#
|
|
2111
|
+
# resp = client.disassociate_email_identity_certificate({
|
|
2112
|
+
# email_identity: "Identity", # required
|
|
2113
|
+
# from_address: "EmailAddress",
|
|
2114
|
+
# })
|
|
2115
|
+
#
|
|
2116
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DisassociateEmailIdentityCertificate AWS API Documentation
|
|
2117
|
+
#
|
|
2118
|
+
# @overload disassociate_email_identity_certificate(params = {})
|
|
2119
|
+
# @param [Hash] params ({})
|
|
2120
|
+
def disassociate_email_identity_certificate(params = {}, options = {})
|
|
2121
|
+
req = build_request(:disassociate_email_identity_certificate, params)
|
|
2122
|
+
req.send_request(options)
|
|
2123
|
+
end
|
|
2124
|
+
|
|
2015
2125
|
# Obtain information about the email-sending status and capabilities of
|
|
2016
2126
|
# your Amazon SES account in the current Amazon Web Services Region.
|
|
2017
2127
|
#
|
|
@@ -2122,6 +2232,7 @@ module Aws::SESV2
|
|
|
2122
2232
|
# * {Types::GetConfigurationSetResponse#suppression_options #suppression_options} => Types::SuppressionOptions
|
|
2123
2233
|
# * {Types::GetConfigurationSetResponse#vdm_options #vdm_options} => Types::VdmOptions
|
|
2124
2234
|
# * {Types::GetConfigurationSetResponse#archiving_options #archiving_options} => Types::ArchivingOptions
|
|
2235
|
+
# * {Types::GetConfigurationSetResponse#message_security_options #message_security_options} => Types::MessageSecurityOptions
|
|
2125
2236
|
#
|
|
2126
2237
|
# @example Request syntax with placeholder values
|
|
2127
2238
|
#
|
|
@@ -2151,6 +2262,7 @@ module Aws::SESV2
|
|
|
2151
2262
|
# resp.vdm_options.dashboard_options.engagement_metrics #=> String, one of "ENABLED", "DISABLED"
|
|
2152
2263
|
# resp.vdm_options.guardian_options.optimized_shared_delivery #=> String, one of "ENABLED", "DISABLED"
|
|
2153
2264
|
# resp.archiving_options.archive_arn #=> String
|
|
2265
|
+
# resp.message_security_options.signing_scheme.smime_scheme.signature_format #=> String, one of "DETACHED"
|
|
2154
2266
|
#
|
|
2155
2267
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetConfigurationSet AWS API Documentation
|
|
2156
2268
|
#
|
|
@@ -3827,6 +3939,67 @@ module Aws::SESV2
|
|
|
3827
3939
|
req.send_request(options)
|
|
3828
3940
|
end
|
|
3829
3941
|
|
|
3942
|
+
# Lists the S/MIME certificates that are associated with the specified
|
|
3943
|
+
# email identity. The results include certificates in all states, such
|
|
3944
|
+
# as `PROVISIONING`, `ACTIVE`, `INACTIVE`, `DEPROVISIONING`, and
|
|
3945
|
+
# `FAILED`.
|
|
3946
|
+
#
|
|
3947
|
+
# If a certificate has passed its expiration time, it's returned with a
|
|
3948
|
+
# status of `FAILED`.
|
|
3949
|
+
#
|
|
3950
|
+
# We recommend using pagination to ensure that the operation returns
|
|
3951
|
+
# quickly and successfully. When there are more results than fit in a
|
|
3952
|
+
# single response, the response includes a `NextToken` value that you
|
|
3953
|
+
# use in a subsequent call to retrieve the next set of results.
|
|
3954
|
+
#
|
|
3955
|
+
# @option params [required, String] :email_identity
|
|
3956
|
+
# The email identity whose certificate associations you want to list.
|
|
3957
|
+
#
|
|
3958
|
+
# @option params [String] :next_token
|
|
3959
|
+
# A token returned from a previous call to
|
|
3960
|
+
# `ListEmailIdentityCertificates` to indicate the position in the list
|
|
3961
|
+
# of certificates.
|
|
3962
|
+
#
|
|
3963
|
+
# @option params [Integer] :page_size
|
|
3964
|
+
# The number of results to show in a single call to
|
|
3965
|
+
# `ListEmailIdentityCertificates`. If the number of results is larger
|
|
3966
|
+
# than the number you specified in this parameter, then the response
|
|
3967
|
+
# includes a `NextToken` element, which you can use to obtain additional
|
|
3968
|
+
# results.
|
|
3969
|
+
#
|
|
3970
|
+
# @return [Types::ListEmailIdentityCertificatesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3971
|
+
#
|
|
3972
|
+
# * {Types::ListEmailIdentityCertificatesResponse#certificates #certificates} => Array<Types::IdentityCertificate>
|
|
3973
|
+
# * {Types::ListEmailIdentityCertificatesResponse#next_token #next_token} => String
|
|
3974
|
+
#
|
|
3975
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
3976
|
+
#
|
|
3977
|
+
# @example Request syntax with placeholder values
|
|
3978
|
+
#
|
|
3979
|
+
# resp = client.list_email_identity_certificates({
|
|
3980
|
+
# email_identity: "Identity", # required
|
|
3981
|
+
# next_token: "NextToken",
|
|
3982
|
+
# page_size: 1,
|
|
3983
|
+
# })
|
|
3984
|
+
#
|
|
3985
|
+
# @example Response structure
|
|
3986
|
+
#
|
|
3987
|
+
# resp.certificates #=> Array
|
|
3988
|
+
# resp.certificates[0].from_address #=> String
|
|
3989
|
+
# resp.certificates[0].status #=> String, one of "PROVISIONING", "INACTIVE", "DEPROVISIONING", "ACTIVE", "FAILED"
|
|
3990
|
+
# resp.certificates[0].certificate_arn #=> String
|
|
3991
|
+
# resp.certificates[0].certificate_expiry_time #=> Time
|
|
3992
|
+
# resp.next_token #=> String
|
|
3993
|
+
#
|
|
3994
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListEmailIdentityCertificates AWS API Documentation
|
|
3995
|
+
#
|
|
3996
|
+
# @overload list_email_identity_certificates(params = {})
|
|
3997
|
+
# @param [Hash] params ({})
|
|
3998
|
+
def list_email_identity_certificates(params = {}, options = {})
|
|
3999
|
+
req = build_request(:list_email_identity_certificates, params)
|
|
4000
|
+
req.send_request(options)
|
|
4001
|
+
end
|
|
4002
|
+
|
|
3830
4003
|
# Lists the email templates present in your Amazon SES account in the
|
|
3831
4004
|
# current Amazon Web Services Region.
|
|
3832
4005
|
#
|
|
@@ -4534,25 +4707,24 @@ module Aws::SESV2
|
|
|
4534
4707
|
req.send_request(options)
|
|
4535
4708
|
end
|
|
4536
4709
|
|
|
4537
|
-
# Set the pricing plan for your Amazon SES account.
|
|
4538
|
-
# to choose a billing plan that packages multiple Amazon SES features at
|
|
4539
|
-
# a single rate.
|
|
4710
|
+
# Set the pricing plan for your Amazon SES account.
|
|
4540
4711
|
#
|
|
4541
4712
|
# @option params [required, String] :plan
|
|
4542
|
-
# The pricing plan to apply to your Amazon SES account.
|
|
4543
|
-
# the
|
|
4713
|
+
# The pricing plan to apply to your Amazon SES account. For details
|
|
4714
|
+
# about each plan, see [Amazon SES Pricing][1]. Can be one of the
|
|
4715
|
+
# following:
|
|
4716
|
+
#
|
|
4717
|
+
# * `NONE`
|
|
4718
|
+
#
|
|
4719
|
+
# * `ESSENTIALS`
|
|
4720
|
+
#
|
|
4721
|
+
# * `PRO`
|
|
4544
4722
|
#
|
|
4545
|
-
# * `
|
|
4546
|
-
# pricing.
|
|
4723
|
+
# * `ENTERPRISE`
|
|
4547
4724
|
#
|
|
4548
|
-
# * `ESSENTIALS` – Baseline Amazon SES capabilities and select premium
|
|
4549
|
-
# features.
|
|
4550
4725
|
#
|
|
4551
|
-
# * `PRO` – Includes everything in `ESSENTIALS`, plus additional premium
|
|
4552
|
-
# features for growing senders.
|
|
4553
4726
|
#
|
|
4554
|
-
#
|
|
4555
|
-
# for large-scale senders.
|
|
4727
|
+
# [1]: http://aws.amazon.com/ses/pricing/
|
|
4556
4728
|
#
|
|
4557
4729
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
4558
4730
|
#
|
|
@@ -5524,6 +5696,12 @@ module Aws::SESV2
|
|
|
5524
5696
|
#
|
|
5525
5697
|
# </note>
|
|
5526
5698
|
#
|
|
5699
|
+
# @option params [Types::ConfigurationOverrides] :configuration_overrides
|
|
5700
|
+
# An object that overrides, for the messages in this request only,
|
|
5701
|
+
# settings that would otherwise apply to them. The overrides apply to
|
|
5702
|
+
# every message in the request. Each setting that you don't override
|
|
5703
|
+
# keeps the value that already applies.
|
|
5704
|
+
#
|
|
5527
5705
|
# @return [Types::SendBulkEmailResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5528
5706
|
#
|
|
5529
5707
|
# * {Types::SendBulkEmailResponse#bulk_email_entry_results #bulk_email_entry_results} => Array<Types::BulkEmailEntryResult>
|
|
@@ -5600,6 +5778,12 @@ module Aws::SESV2
|
|
|
5600
5778
|
# configuration_set_name: "ConfigurationSetName",
|
|
5601
5779
|
# endpoint_id: "EndpointId",
|
|
5602
5780
|
# tenant_name: "TenantName",
|
|
5781
|
+
# configuration_overrides: {
|
|
5782
|
+
# tracking: {
|
|
5783
|
+
# open_tracking_enabled: "ENABLED", # accepts ENABLED, DISABLED
|
|
5784
|
+
# click_tracking_enabled: "ENABLED", # accepts ENABLED, DISABLED
|
|
5785
|
+
# },
|
|
5786
|
+
# },
|
|
5603
5787
|
# })
|
|
5604
5788
|
#
|
|
5605
5789
|
# @example Response structure
|
|
@@ -5775,6 +5959,11 @@ module Aws::SESV2
|
|
|
5775
5959
|
# An object used to specify a list or topic to which an email belongs,
|
|
5776
5960
|
# which will be used when a contact chooses to unsubscribe.
|
|
5777
5961
|
#
|
|
5962
|
+
# @option params [Types::ConfigurationOverrides] :configuration_overrides
|
|
5963
|
+
# An object that overrides, for this message only, settings that would
|
|
5964
|
+
# otherwise apply to it. Each setting that you don't override keeps the
|
|
5965
|
+
# value that already applies.
|
|
5966
|
+
#
|
|
5778
5967
|
# @return [Types::SendEmailResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5779
5968
|
#
|
|
5780
5969
|
# * {Types::SendEmailResponse#message_id #message_id} => String
|
|
@@ -5870,6 +6059,12 @@ module Aws::SESV2
|
|
|
5870
6059
|
# contact_list_name: "ContactListName", # required
|
|
5871
6060
|
# topic_name: "TopicName",
|
|
5872
6061
|
# },
|
|
6062
|
+
# configuration_overrides: {
|
|
6063
|
+
# tracking: {
|
|
6064
|
+
# open_tracking_enabled: "ENABLED", # accepts ENABLED, DISABLED
|
|
6065
|
+
# click_tracking_enabled: "ENABLED", # accepts ENABLED, DISABLED
|
|
6066
|
+
# },
|
|
6067
|
+
# },
|
|
5873
6068
|
# })
|
|
5874
6069
|
#
|
|
5875
6070
|
# @example Response structure
|
|
@@ -6000,6 +6195,45 @@ module Aws::SESV2
|
|
|
6000
6195
|
req.send_request(options)
|
|
6001
6196
|
end
|
|
6002
6197
|
|
|
6198
|
+
# Updates an existing configuration set.
|
|
6199
|
+
#
|
|
6200
|
+
# This operation performs a partial update. Only the attributes that you
|
|
6201
|
+
# include in the request are updated; any omitted attribute is left
|
|
6202
|
+
# unchanged.
|
|
6203
|
+
#
|
|
6204
|
+
# @option params [required, String] :configuration_set_name
|
|
6205
|
+
# The name of the configuration set to update.
|
|
6206
|
+
#
|
|
6207
|
+
# @option params [Types::MessageSecurityOptions] :message_security_options
|
|
6208
|
+
# The security options that apply to the MIME message itself for
|
|
6209
|
+
# messages sent with the configuration set.
|
|
6210
|
+
#
|
|
6211
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
6212
|
+
#
|
|
6213
|
+
# @example Request syntax with placeholder values
|
|
6214
|
+
#
|
|
6215
|
+
# resp = client.update_configuration_set({
|
|
6216
|
+
# configuration_set_name: "ConfigurationSetName", # required
|
|
6217
|
+
# message_security_options: {
|
|
6218
|
+
# signing_scheme: {
|
|
6219
|
+
# default_scheme: {
|
|
6220
|
+
# },
|
|
6221
|
+
# smime_scheme: {
|
|
6222
|
+
# signature_format: "DETACHED", # accepts DETACHED
|
|
6223
|
+
# },
|
|
6224
|
+
# },
|
|
6225
|
+
# },
|
|
6226
|
+
# })
|
|
6227
|
+
#
|
|
6228
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/UpdateConfigurationSet AWS API Documentation
|
|
6229
|
+
#
|
|
6230
|
+
# @overload update_configuration_set(params = {})
|
|
6231
|
+
# @param [Hash] params ({})
|
|
6232
|
+
def update_configuration_set(params = {}, options = {})
|
|
6233
|
+
req = build_request(:update_configuration_set, params)
|
|
6234
|
+
req.send_request(options)
|
|
6235
|
+
end
|
|
6236
|
+
|
|
6003
6237
|
# Update the configuration of an event destination for a configuration
|
|
6004
6238
|
# set.
|
|
6005
6239
|
#
|
|
@@ -6424,7 +6658,7 @@ module Aws::SESV2
|
|
|
6424
6658
|
tracer: tracer
|
|
6425
6659
|
)
|
|
6426
6660
|
context[:gem_name] = 'aws-sdk-sesv2'
|
|
6427
|
-
context[:gem_version] = '1.
|
|
6661
|
+
context[:gem_version] = '1.107.0'
|
|
6428
6662
|
Seahorse::Client::Request.new(handlers, context)
|
|
6429
6663
|
end
|
|
6430
6664
|
|