aws-sdk-sesv2 1.71.0 → 1.73.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 +59 -1
- data/lib/aws-sdk-sesv2/client_api.rb +26 -0
- data/lib/aws-sdk-sesv2/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-sesv2/types.rb +61 -6
- data/lib/aws-sdk-sesv2.rb +1 -1
- data/sig/client.rbs +14 -0
- data/sig/types.rbs +16 -0
- 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: 308d7f4ec6e97009093b58c9410901a8b7c69fd3b28fce31f69517ed7b08d20e
|
4
|
+
data.tar.gz: '007091e70b9aa8c101971309989600d65b32f68cc509e184254014a7ec33c142'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9dc0a83e428171ebdecc0b532c94637232a896f2032db9fdc3260c648cd3658e0c8bb59461bf5d93df323d892d7fec763675c42460acfa18c10a4bf873aa2c7
|
7
|
+
data.tar.gz: 199adbe79c7b79a61f5f0edecbad65e746f20619ae3a930dd437618554aa920cfb9f71748cd2c6d887d982b53de293495e7739f171cfef878e4118d4f257ea3a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.73.0 (2025-03-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add dual-stack support to global endpoints.
|
8
|
+
|
9
|
+
1.72.0 (2025-02-19)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds the ability for outbound email sent with SES to preserve emails to a Mail Manager archive.
|
13
|
+
|
4
14
|
1.71.0 (2025-02-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.73.0
|
data/lib/aws-sdk-sesv2/client.rb
CHANGED
@@ -594,6 +594,10 @@ module Aws::SESV2
|
|
594
594
|
# An object that defines the VDM options for emails that you send using
|
595
595
|
# the configuration set.
|
596
596
|
#
|
597
|
+
# @option params [Types::ArchivingOptions] :archiving_options
|
598
|
+
# An object that defines the MailManager archiving options for emails
|
599
|
+
# that you send using the configuration set.
|
600
|
+
#
|
597
601
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
598
602
|
#
|
599
603
|
# @example Request syntax with placeholder values
|
@@ -633,6 +637,9 @@ module Aws::SESV2
|
|
633
637
|
# optimized_shared_delivery: "ENABLED", # accepts ENABLED, DISABLED
|
634
638
|
# },
|
635
639
|
# },
|
640
|
+
# archiving_options: {
|
641
|
+
# archive_arn: "ArchiveArn",
|
642
|
+
# },
|
636
643
|
# })
|
637
644
|
#
|
638
645
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateConfigurationSet AWS API Documentation
|
@@ -1872,6 +1879,7 @@ module Aws::SESV2
|
|
1872
1879
|
# * {Types::GetConfigurationSetResponse#tags #tags} => Array<Types::Tag>
|
1873
1880
|
# * {Types::GetConfigurationSetResponse#suppression_options #suppression_options} => Types::SuppressionOptions
|
1874
1881
|
# * {Types::GetConfigurationSetResponse#vdm_options #vdm_options} => Types::VdmOptions
|
1882
|
+
# * {Types::GetConfigurationSetResponse#archiving_options #archiving_options} => Types::ArchivingOptions
|
1875
1883
|
#
|
1876
1884
|
# @example Request syntax with placeholder values
|
1877
1885
|
#
|
@@ -1897,6 +1905,7 @@ module Aws::SESV2
|
|
1897
1905
|
# resp.suppression_options.suppressed_reasons[0] #=> String, one of "BOUNCE", "COMPLAINT"
|
1898
1906
|
# resp.vdm_options.dashboard_options.engagement_metrics #=> String, one of "ENABLED", "DISABLED"
|
1899
1907
|
# resp.vdm_options.guardian_options.optimized_shared_delivery #=> String, one of "ENABLED", "DISABLED"
|
1908
|
+
# resp.archiving_options.archive_arn #=> String
|
1900
1909
|
#
|
1901
1910
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetConfigurationSet AWS API Documentation
|
1902
1911
|
#
|
@@ -2990,6 +2999,10 @@ module Aws::SESV2
|
|
2990
2999
|
|
2991
3000
|
# Lists all of the contact lists available.
|
2992
3001
|
#
|
3002
|
+
# If your output includes a "NextToken" field with a string value,
|
3003
|
+
# this indicates there may be additional contacts on the filtered list -
|
3004
|
+
# regardless of the number of contacts returned.
|
3005
|
+
#
|
2993
3006
|
# @option params [Integer] :page_size
|
2994
3007
|
# Maximum number of contact lists to return at once. Use this parameter
|
2995
3008
|
# to paginate results. If additional contact lists exist beyond the
|
@@ -3948,6 +3961,51 @@ module Aws::SESV2
|
|
3948
3961
|
req.send_request(options)
|
3949
3962
|
end
|
3950
3963
|
|
3964
|
+
# Associate the configuration set with a MailManager archive. When you
|
3965
|
+
# send email using the `SendEmail` or `SendBulkEmail` operations the
|
3966
|
+
# message as it will be given to the receiving SMTP server will be
|
3967
|
+
# archived, along with the recipient information.
|
3968
|
+
#
|
3969
|
+
# @option params [required, String] :configuration_set_name
|
3970
|
+
# The name of the configuration set to associate with a MailManager
|
3971
|
+
# archive.
|
3972
|
+
#
|
3973
|
+
# @option params [String] :archive_arn
|
3974
|
+
# The Amazon Resource Name (ARN) of the MailManager archive that the
|
3975
|
+
# Amazon SES API v2 sends email to.
|
3976
|
+
#
|
3977
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3978
|
+
#
|
3979
|
+
#
|
3980
|
+
# @example Example: Used to associate an MailManager archive with a ConfigurationSet.
|
3981
|
+
#
|
3982
|
+
# # This example associates an archive arn with a configuration set.
|
3983
|
+
#
|
3984
|
+
# resp = client.put_configuration_set_archiving_options({
|
3985
|
+
# archive_arn: "arn:aws:ses:us-west-2:123456789012:mailmanager-archive/a-abcdefghijklmnopqrstuvwxyz",
|
3986
|
+
# configuration_set_name: "sample-configuration-name",
|
3987
|
+
# })
|
3988
|
+
#
|
3989
|
+
# resp.to_h outputs the following:
|
3990
|
+
# {
|
3991
|
+
# }
|
3992
|
+
#
|
3993
|
+
# @example Request syntax with placeholder values
|
3994
|
+
#
|
3995
|
+
# resp = client.put_configuration_set_archiving_options({
|
3996
|
+
# configuration_set_name: "ConfigurationSetName", # required
|
3997
|
+
# archive_arn: "ArchiveArn",
|
3998
|
+
# })
|
3999
|
+
#
|
4000
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/PutConfigurationSetArchivingOptions AWS API Documentation
|
4001
|
+
#
|
4002
|
+
# @overload put_configuration_set_archiving_options(params = {})
|
4003
|
+
# @param [Hash] params ({})
|
4004
|
+
def put_configuration_set_archiving_options(params = {}, options = {})
|
4005
|
+
req = build_request(:put_configuration_set_archiving_options, params)
|
4006
|
+
req.send_request(options)
|
4007
|
+
end
|
4008
|
+
|
3951
4009
|
# Associate a configuration set with a dedicated IP pool. You can use
|
3952
4010
|
# dedicated IP pools to create groups of dedicated IP addresses for
|
3953
4011
|
# sending specific types of email.
|
@@ -5416,7 +5474,7 @@ module Aws::SESV2
|
|
5416
5474
|
tracer: tracer
|
5417
5475
|
)
|
5418
5476
|
context[:gem_name] = 'aws-sdk-sesv2'
|
5419
|
-
context[:gem_version] = '1.
|
5477
|
+
context[:gem_version] = '1.73.0'
|
5420
5478
|
Seahorse::Client::Request.new(handlers, context)
|
5421
5479
|
end
|
5422
5480
|
|
@@ -21,6 +21,8 @@ module Aws::SESV2
|
|
21
21
|
AdminEmail = Shapes::StringShape.new(name: 'AdminEmail')
|
22
22
|
AlreadyExistsException = Shapes::StructureShape.new(name: 'AlreadyExistsException')
|
23
23
|
AmazonResourceName = Shapes::StringShape.new(name: 'AmazonResourceName')
|
24
|
+
ArchiveArn = Shapes::StringShape.new(name: 'ArchiveArn')
|
25
|
+
ArchivingOptions = Shapes::StructureShape.new(name: 'ArchivingOptions')
|
24
26
|
AttributesData = Shapes::StringShape.new(name: 'AttributesData')
|
25
27
|
BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
|
26
28
|
BatchGetMetricDataQueries = Shapes::ListShape.new(name: 'BatchGetMetricDataQueries')
|
@@ -386,6 +388,8 @@ module Aws::SESV2
|
|
386
388
|
PutAccountSuppressionAttributesResponse = Shapes::StructureShape.new(name: 'PutAccountSuppressionAttributesResponse')
|
387
389
|
PutAccountVdmAttributesRequest = Shapes::StructureShape.new(name: 'PutAccountVdmAttributesRequest')
|
388
390
|
PutAccountVdmAttributesResponse = Shapes::StructureShape.new(name: 'PutAccountVdmAttributesResponse')
|
391
|
+
PutConfigurationSetArchivingOptionsRequest = Shapes::StructureShape.new(name: 'PutConfigurationSetArchivingOptionsRequest')
|
392
|
+
PutConfigurationSetArchivingOptionsResponse = Shapes::StructureShape.new(name: 'PutConfigurationSetArchivingOptionsResponse')
|
389
393
|
PutConfigurationSetDeliveryOptionsRequest = Shapes::StructureShape.new(name: 'PutConfigurationSetDeliveryOptionsRequest')
|
390
394
|
PutConfigurationSetDeliveryOptionsResponse = Shapes::StructureShape.new(name: 'PutConfigurationSetDeliveryOptionsResponse')
|
391
395
|
PutConfigurationSetReputationOptionsRequest = Shapes::StructureShape.new(name: 'PutConfigurationSetReputationOptionsRequest')
|
@@ -538,6 +542,9 @@ module Aws::SESV2
|
|
538
542
|
|
539
543
|
AlreadyExistsException.struct_class = Types::AlreadyExistsException
|
540
544
|
|
545
|
+
ArchivingOptions.add_member(:archive_arn, Shapes::ShapeRef.new(shape: ArchiveArn, location_name: "ArchiveArn"))
|
546
|
+
ArchivingOptions.struct_class = Types::ArchivingOptions
|
547
|
+
|
541
548
|
BadRequestException.struct_class = Types::BadRequestException
|
542
549
|
|
543
550
|
BatchGetMetricDataQueries.member = Shapes::ShapeRef.new(shape: BatchGetMetricDataQuery)
|
@@ -655,6 +662,7 @@ module Aws::SESV2
|
|
655
662
|
CreateConfigurationSetRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
656
663
|
CreateConfigurationSetRequest.add_member(:suppression_options, Shapes::ShapeRef.new(shape: SuppressionOptions, location_name: "SuppressionOptions"))
|
657
664
|
CreateConfigurationSetRequest.add_member(:vdm_options, Shapes::ShapeRef.new(shape: VdmOptions, location_name: "VdmOptions"))
|
665
|
+
CreateConfigurationSetRequest.add_member(:archiving_options, Shapes::ShapeRef.new(shape: ArchivingOptions, location_name: "ArchivingOptions"))
|
658
666
|
CreateConfigurationSetRequest.struct_class = Types::CreateConfigurationSetRequest
|
659
667
|
|
660
668
|
CreateConfigurationSetResponse.struct_class = Types::CreateConfigurationSetResponse
|
@@ -1052,6 +1060,7 @@ module Aws::SESV2
|
|
1052
1060
|
GetConfigurationSetResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1053
1061
|
GetConfigurationSetResponse.add_member(:suppression_options, Shapes::ShapeRef.new(shape: SuppressionOptions, location_name: "SuppressionOptions"))
|
1054
1062
|
GetConfigurationSetResponse.add_member(:vdm_options, Shapes::ShapeRef.new(shape: VdmOptions, location_name: "VdmOptions"))
|
1063
|
+
GetConfigurationSetResponse.add_member(:archiving_options, Shapes::ShapeRef.new(shape: ArchivingOptions, location_name: "ArchivingOptions"))
|
1055
1064
|
GetConfigurationSetResponse.struct_class = Types::GetConfigurationSetResponse
|
1056
1065
|
|
1057
1066
|
GetContactListRequest.add_member(:contact_list_name, Shapes::ShapeRef.new(shape: ContactListName, required: true, location: "uri", location_name: "ContactListName"))
|
@@ -1568,6 +1577,12 @@ module Aws::SESV2
|
|
1568
1577
|
|
1569
1578
|
PutAccountVdmAttributesResponse.struct_class = Types::PutAccountVdmAttributesResponse
|
1570
1579
|
|
1580
|
+
PutConfigurationSetArchivingOptionsRequest.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, required: true, location: "uri", location_name: "ConfigurationSetName"))
|
1581
|
+
PutConfigurationSetArchivingOptionsRequest.add_member(:archive_arn, Shapes::ShapeRef.new(shape: ArchiveArn, location_name: "ArchiveArn"))
|
1582
|
+
PutConfigurationSetArchivingOptionsRequest.struct_class = Types::PutConfigurationSetArchivingOptionsRequest
|
1583
|
+
|
1584
|
+
PutConfigurationSetArchivingOptionsResponse.struct_class = Types::PutConfigurationSetArchivingOptionsResponse
|
1585
|
+
|
1571
1586
|
PutConfigurationSetDeliveryOptionsRequest.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, required: true, location: "uri", location_name: "ConfigurationSetName"))
|
1572
1587
|
PutConfigurationSetDeliveryOptionsRequest.add_member(:tls_policy, Shapes::ShapeRef.new(shape: TlsPolicy, location_name: "TlsPolicy"))
|
1573
1588
|
PutConfigurationSetDeliveryOptionsRequest.add_member(:sending_pool_name, Shapes::ShapeRef.new(shape: SendingPoolName, location_name: "SendingPoolName"))
|
@@ -2799,6 +2814,17 @@ module Aws::SESV2
|
|
2799
2814
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
2800
2815
|
end)
|
2801
2816
|
|
2817
|
+
api.add_operation(:put_configuration_set_archiving_options, Seahorse::Model::Operation.new.tap do |o|
|
2818
|
+
o.name = "PutConfigurationSetArchivingOptions"
|
2819
|
+
o.http_method = "PUT"
|
2820
|
+
o.http_request_uri = "/v2/email/configuration-sets/{ConfigurationSetName}/archiving-options"
|
2821
|
+
o.input = Shapes::ShapeRef.new(shape: PutConfigurationSetArchivingOptionsRequest)
|
2822
|
+
o.output = Shapes::ShapeRef.new(shape: PutConfigurationSetArchivingOptionsResponse)
|
2823
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
2824
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
2825
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
2826
|
+
end)
|
2827
|
+
|
2802
2828
|
api.add_operation(:put_configuration_set_delivery_options, Seahorse::Model::Operation.new.tap do |o|
|
2803
2829
|
o.name = "PutConfigurationSetDeliveryOptions"
|
2804
2830
|
o.http_method = "PUT"
|
@@ -18,7 +18,7 @@ module Aws::SESV2
|
|
18
18
|
end
|
19
19
|
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
20
20
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
21
|
-
return Aws::Endpoints::Endpoint.new(url: "https://#{parameters.endpoint_id}.endpoints.email.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4a", "signingName"=>"ses", "signingRegionSet"=>["*"]}]})
|
21
|
+
return Aws::Endpoints::Endpoint.new(url: "https://#{parameters.endpoint_id}.endpoints.email.global.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4a", "signingName"=>"ses", "signingRegionSet"=>["*"]}]})
|
22
22
|
end
|
23
23
|
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
24
24
|
end
|
data/lib/aws-sdk-sesv2/types.rb
CHANGED
@@ -72,6 +72,21 @@ module Aws::SESV2
|
|
72
72
|
#
|
73
73
|
class AlreadyExistsException < Aws::EmptyStructure; end
|
74
74
|
|
75
|
+
# Used to associate a configuration set with a MailManager archive.
|
76
|
+
#
|
77
|
+
# @!attribute [rw] archive_arn
|
78
|
+
# The Amazon Resource Name (ARN) of the MailManager archive where the
|
79
|
+
# Amazon SES API v2 will archive sent emails.
|
80
|
+
# @return [String]
|
81
|
+
#
|
82
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ArchivingOptions AWS API Documentation
|
83
|
+
#
|
84
|
+
class ArchivingOptions < Struct.new(
|
85
|
+
:archive_arn)
|
86
|
+
SENSITIVE = []
|
87
|
+
include Aws::Structure
|
88
|
+
end
|
89
|
+
|
75
90
|
# The input you provided is invalid.
|
76
91
|
#
|
77
92
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/BadRequestException AWS API Documentation
|
@@ -734,6 +749,11 @@ module Aws::SESV2
|
|
734
749
|
# using the configuration set.
|
735
750
|
# @return [Types::VdmOptions]
|
736
751
|
#
|
752
|
+
# @!attribute [rw] archiving_options
|
753
|
+
# An object that defines the MailManager archiving options for emails
|
754
|
+
# that you send using the configuration set.
|
755
|
+
# @return [Types::ArchivingOptions]
|
756
|
+
#
|
737
757
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateConfigurationSetRequest AWS API Documentation
|
738
758
|
#
|
739
759
|
class CreateConfigurationSetRequest < Struct.new(
|
@@ -744,7 +764,8 @@ module Aws::SESV2
|
|
744
764
|
:sending_options,
|
745
765
|
:tags,
|
746
766
|
:suppression_options,
|
747
|
-
:vdm_options
|
767
|
+
:vdm_options,
|
768
|
+
:archiving_options)
|
748
769
|
SENSITIVE = []
|
749
770
|
include Aws::Structure
|
750
771
|
end
|
@@ -3164,6 +3185,11 @@ module Aws::SESV2
|
|
3164
3185
|
# your configuration set.
|
3165
3186
|
# @return [Types::VdmOptions]
|
3166
3187
|
#
|
3188
|
+
# @!attribute [rw] archiving_options
|
3189
|
+
# An object that defines the MailManager archive where sent emails are
|
3190
|
+
# archived that you send using the configuration set.
|
3191
|
+
# @return [Types::ArchivingOptions]
|
3192
|
+
#
|
3167
3193
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetConfigurationSetResponse AWS API Documentation
|
3168
3194
|
#
|
3169
3195
|
class GetConfigurationSetResponse < Struct.new(
|
@@ -3174,7 +3200,8 @@ module Aws::SESV2
|
|
3174
3200
|
:sending_options,
|
3175
3201
|
:tags,
|
3176
3202
|
:suppression_options,
|
3177
|
-
:vdm_options
|
3203
|
+
:vdm_options,
|
3204
|
+
:archiving_options)
|
3178
3205
|
SENSITIVE = []
|
3179
3206
|
include Aws::Structure
|
3180
3207
|
end
|
@@ -5956,6 +5983,34 @@ module Aws::SESV2
|
|
5956
5983
|
#
|
5957
5984
|
class PutAccountVdmAttributesResponse < Aws::EmptyStructure; end
|
5958
5985
|
|
5986
|
+
# A request to associate a configuration set with a MailManager archive.
|
5987
|
+
#
|
5988
|
+
# @!attribute [rw] configuration_set_name
|
5989
|
+
# The name of the configuration set to associate with a MailManager
|
5990
|
+
# archive.
|
5991
|
+
# @return [String]
|
5992
|
+
#
|
5993
|
+
# @!attribute [rw] archive_arn
|
5994
|
+
# The Amazon Resource Name (ARN) of the MailManager archive that the
|
5995
|
+
# Amazon SES API v2 sends email to.
|
5996
|
+
# @return [String]
|
5997
|
+
#
|
5998
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/PutConfigurationSetArchivingOptionsRequest AWS API Documentation
|
5999
|
+
#
|
6000
|
+
class PutConfigurationSetArchivingOptionsRequest < Struct.new(
|
6001
|
+
:configuration_set_name,
|
6002
|
+
:archive_arn)
|
6003
|
+
SENSITIVE = []
|
6004
|
+
include Aws::Structure
|
6005
|
+
end
|
6006
|
+
|
6007
|
+
# An HTTP 200 response if the request succeeds, or an error message if
|
6008
|
+
# the request fails.
|
6009
|
+
#
|
6010
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/PutConfigurationSetArchivingOptionsResponse AWS API Documentation
|
6011
|
+
#
|
6012
|
+
class PutConfigurationSetArchivingOptionsResponse < Aws::EmptyStructure; end
|
6013
|
+
|
5959
6014
|
# A request to associate a configuration set with a dedicated IP pool.
|
5960
6015
|
#
|
5961
6016
|
# @!attribute [rw] configuration_set_name
|
@@ -6627,8 +6682,8 @@ module Aws::SESV2
|
|
6627
6682
|
# @return [String]
|
6628
6683
|
#
|
6629
6684
|
# @!attribute [rw] type
|
6630
|
-
# The recommendation type, with values like `DKIM`, `SPF`, `DMARC
|
6631
|
-
# `BIMI`.
|
6685
|
+
# The recommendation type, with values like `DKIM`, `SPF`, `DMARC`,
|
6686
|
+
# `BIMI`, or `COMPLAINT`.
|
6632
6687
|
# @return [String]
|
6633
6688
|
#
|
6634
6689
|
# @!attribute [rw] description
|
@@ -7998,8 +8053,8 @@ module Aws::SESV2
|
|
7998
8053
|
#
|
7999
8054
|
# * `REPLICATION_PRIMARY_INVALID_REGION` – The verification failed due
|
8000
8055
|
# to an invalid primary region specified. Ensure you provide a valid
|
8001
|
-
#
|
8002
|
-
# replica region.
|
8056
|
+
# Amazon Web Services region where Amazon SES is available and
|
8057
|
+
# different from the replica region.
|
8003
8058
|
# @return [String]
|
8004
8059
|
#
|
8005
8060
|
# @!attribute [rw] soa_record
|
data/lib/aws-sdk-sesv2.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -144,6 +144,9 @@ module Aws
|
|
144
144
|
guardian_options: {
|
145
145
|
optimized_shared_delivery: ("ENABLED" | "DISABLED")?
|
146
146
|
}?
|
147
|
+
},
|
148
|
+
?archiving_options: {
|
149
|
+
archive_arn: ::String?
|
147
150
|
}
|
148
151
|
) -> _CreateConfigurationSetResponseSuccess
|
149
152
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationSetResponseSuccess
|
@@ -600,6 +603,7 @@ module Aws
|
|
600
603
|
def tags: () -> ::Array[Types::Tag]
|
601
604
|
def suppression_options: () -> Types::SuppressionOptions
|
602
605
|
def vdm_options: () -> Types::VdmOptions
|
606
|
+
def archiving_options: () -> Types::ArchivingOptions
|
603
607
|
end
|
604
608
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#get_configuration_set-instance_method
|
605
609
|
def get_configuration_set: (
|
@@ -1117,6 +1121,16 @@ module Aws
|
|
1117
1121
|
) -> _PutAccountVdmAttributesResponseSuccess
|
1118
1122
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutAccountVdmAttributesResponseSuccess
|
1119
1123
|
|
1124
|
+
interface _PutConfigurationSetArchivingOptionsResponseSuccess
|
1125
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutConfigurationSetArchivingOptionsResponse]
|
1126
|
+
end
|
1127
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_configuration_set_archiving_options-instance_method
|
1128
|
+
def put_configuration_set_archiving_options: (
|
1129
|
+
configuration_set_name: ::String,
|
1130
|
+
?archive_arn: ::String
|
1131
|
+
) -> _PutConfigurationSetArchivingOptionsResponseSuccess
|
1132
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutConfigurationSetArchivingOptionsResponseSuccess
|
1133
|
+
|
1120
1134
|
interface _PutConfigurationSetDeliveryOptionsResponseSuccess
|
1121
1135
|
include ::Seahorse::Client::_ResponseSuccess[Types::PutConfigurationSetDeliveryOptionsResponse]
|
1122
1136
|
end
|
data/sig/types.rbs
CHANGED
@@ -24,6 +24,11 @@ module Aws::SESV2
|
|
24
24
|
class AlreadyExistsException < Aws::EmptyStructure
|
25
25
|
end
|
26
26
|
|
27
|
+
class ArchivingOptions
|
28
|
+
attr_accessor archive_arn: ::String
|
29
|
+
SENSITIVE: []
|
30
|
+
end
|
31
|
+
|
27
32
|
class BadRequestException < Aws::EmptyStructure
|
28
33
|
end
|
29
34
|
|
@@ -166,6 +171,7 @@ module Aws::SESV2
|
|
166
171
|
attr_accessor tags: ::Array[Types::Tag]
|
167
172
|
attr_accessor suppression_options: Types::SuppressionOptions
|
168
173
|
attr_accessor vdm_options: Types::VdmOptions
|
174
|
+
attr_accessor archiving_options: Types::ArchivingOptions
|
169
175
|
SENSITIVE: []
|
170
176
|
end
|
171
177
|
|
@@ -665,6 +671,7 @@ module Aws::SESV2
|
|
665
671
|
attr_accessor tags: ::Array[Types::Tag]
|
666
672
|
attr_accessor suppression_options: Types::SuppressionOptions
|
667
673
|
attr_accessor vdm_options: Types::VdmOptions
|
674
|
+
attr_accessor archiving_options: Types::ArchivingOptions
|
668
675
|
SENSITIVE: []
|
669
676
|
end
|
670
677
|
|
@@ -1342,6 +1349,15 @@ module Aws::SESV2
|
|
1342
1349
|
class PutAccountVdmAttributesResponse < Aws::EmptyStructure
|
1343
1350
|
end
|
1344
1351
|
|
1352
|
+
class PutConfigurationSetArchivingOptionsRequest
|
1353
|
+
attr_accessor configuration_set_name: ::String
|
1354
|
+
attr_accessor archive_arn: ::String
|
1355
|
+
SENSITIVE: []
|
1356
|
+
end
|
1357
|
+
|
1358
|
+
class PutConfigurationSetArchivingOptionsResponse < Aws::EmptyStructure
|
1359
|
+
end
|
1360
|
+
|
1345
1361
|
class PutConfigurationSetDeliveryOptionsRequest
|
1346
1362
|
attr_accessor configuration_set_name: ::String
|
1347
1363
|
attr_accessor tls_policy: ("REQUIRE" | "OPTIONAL")
|
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.73.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: 2025-
|
11
|
+
date: 2025-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|