aws-sdk-sesv2 1.66.0 → 1.68.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.
@@ -1210,6 +1210,62 @@ module Aws::SESV2
1210
1210
  include Aws::Structure
1211
1211
  end
1212
1212
 
1213
+ # Represents a request to create a multi-region endpoint
1214
+ # (global-endpoint).
1215
+ #
1216
+ # @!attribute [rw] endpoint_name
1217
+ # The name of the multi-region endpoint (global-endpoint).
1218
+ # @return [String]
1219
+ #
1220
+ # @!attribute [rw] details
1221
+ # Contains details of a multi-region endpoint (global-endpoint) being
1222
+ # created.
1223
+ # @return [Types::Details]
1224
+ #
1225
+ # @!attribute [rw] tags
1226
+ # An array of objects that define the tags (keys and values) to
1227
+ # associate with the multi-region endpoint (global-endpoint).
1228
+ # @return [Array<Types::Tag>]
1229
+ #
1230
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateMultiRegionEndpointRequest AWS API Documentation
1231
+ #
1232
+ class CreateMultiRegionEndpointRequest < Struct.new(
1233
+ :endpoint_name,
1234
+ :details,
1235
+ :tags)
1236
+ SENSITIVE = []
1237
+ include Aws::Structure
1238
+ end
1239
+
1240
+ # An HTTP 200 response if the request succeeds, or an error message if
1241
+ # the request fails.
1242
+ #
1243
+ # @!attribute [rw] status
1244
+ # A status of the multi-region endpoint (global-endpoint) right after
1245
+ # the create request.
1246
+ #
1247
+ # * `CREATING` – The resource is being provisioned.
1248
+ #
1249
+ # * `READY` – The resource is ready to use.
1250
+ #
1251
+ # * `FAILED` – The resource failed to be provisioned.
1252
+ #
1253
+ # * `DELETING` – The resource is being deleted as requested.
1254
+ # @return [String]
1255
+ #
1256
+ # @!attribute [rw] endpoint_id
1257
+ # The ID of the multi-region endpoint (global-endpoint).
1258
+ # @return [String]
1259
+ #
1260
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateMultiRegionEndpointResponse AWS API Documentation
1261
+ #
1262
+ class CreateMultiRegionEndpointResponse < Struct.new(
1263
+ :status,
1264
+ :endpoint_id)
1265
+ SENSITIVE = []
1266
+ include Aws::Structure
1267
+ end
1268
+
1213
1269
  # Contains information about a custom verification email template.
1214
1270
  #
1215
1271
  # @!attribute [rw] template_name
@@ -1607,6 +1663,46 @@ module Aws::SESV2
1607
1663
  #
1608
1664
  class DeleteEmailTemplateResponse < Aws::EmptyStructure; end
1609
1665
 
1666
+ # Represents a request to delete a multi-region endpoint
1667
+ # (global-endpoint).
1668
+ #
1669
+ # @!attribute [rw] endpoint_name
1670
+ # The name of the multi-region endpoint (global-endpoint) to be
1671
+ # deleted.
1672
+ # @return [String]
1673
+ #
1674
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteMultiRegionEndpointRequest AWS API Documentation
1675
+ #
1676
+ class DeleteMultiRegionEndpointRequest < Struct.new(
1677
+ :endpoint_name)
1678
+ SENSITIVE = []
1679
+ include Aws::Structure
1680
+ end
1681
+
1682
+ # An HTTP 200 response if the request succeeds, or an error message if
1683
+ # the request fails.
1684
+ #
1685
+ # @!attribute [rw] status
1686
+ # A status of the multi-region endpoint (global-endpoint) right after
1687
+ # the delete request.
1688
+ #
1689
+ # * `CREATING` – The resource is being provisioned.
1690
+ #
1691
+ # * `READY` – The resource is ready to use.
1692
+ #
1693
+ # * `FAILED` – The resource failed to be provisioned.
1694
+ #
1695
+ # * `DELETING` – The resource is being deleted as requested.
1696
+ # @return [String]
1697
+ #
1698
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteMultiRegionEndpointResponse AWS API Documentation
1699
+ #
1700
+ class DeleteMultiRegionEndpointResponse < Struct.new(
1701
+ :status)
1702
+ SENSITIVE = []
1703
+ include Aws::Structure
1704
+ end
1705
+
1610
1706
  # A request to remove an email address from the suppression list for
1611
1707
  # your account.
1612
1708
  #
@@ -1753,6 +1849,22 @@ module Aws::SESV2
1753
1849
  include Aws::Structure
1754
1850
  end
1755
1851
 
1852
+ # An object that contains configuration details of multi-region endpoint
1853
+ # (global-endpoint).
1854
+ #
1855
+ # @!attribute [rw] routes_details
1856
+ # A list of route configuration details. Must contain exactly one
1857
+ # route configuration.
1858
+ # @return [Array<Types::RouteDetails>]
1859
+ #
1860
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/Details AWS API Documentation
1861
+ #
1862
+ class Details < Struct.new(
1863
+ :routes_details)
1864
+ SENSITIVE = []
1865
+ include Aws::Structure
1866
+ end
1867
+
1756
1868
  # An object that contains information about the DKIM authentication
1757
1869
  # status for an email identity.
1758
1870
  #
@@ -1829,6 +1941,108 @@ module Aws::SESV2
1829
1941
  # * `EXTERNAL` – Indicates that DKIM was configured for the identity
1830
1942
  # by using Bring Your Own DKIM (BYODKIM).
1831
1943
  #
1944
+ # * `AWS_SES_AF_SOUTH_1` – Indicates that DKIM was configured for the
1945
+ # identity by replicating signing attributes from a parent identity
1946
+ # in Africa (Cape Town) region using Deterministic Easy-DKIM (DEED).
1947
+ #
1948
+ # * `AWS_SES_EU_NORTH_1` – Indicates that DKIM was configured for the
1949
+ # identity by replicating signing attributes from a parent identity
1950
+ # in Europe (Stockholm) region using Deterministic Easy-DKIM (DEED).
1951
+ #
1952
+ # * `AWS_SES_AP_SOUTH_1` – Indicates that DKIM was configured for the
1953
+ # identity by replicating signing attributes from a parent identity
1954
+ # in Asia Pacific (Mumbai) region using Deterministic Easy-DKIM
1955
+ # (DEED).
1956
+ #
1957
+ # * `AWS_SES_EU_WEST_3` – Indicates that DKIM was configured for the
1958
+ # identity by replicating signing attributes from a parent identity
1959
+ # in Europe (Paris) region using Deterministic Easy-DKIM (DEED).
1960
+ #
1961
+ # * `AWS_SES_EU_WEST_2` – Indicates that DKIM was configured for the
1962
+ # identity by replicating signing attributes from a parent identity
1963
+ # in Europe (London) region using Deterministic Easy-DKIM (DEED).
1964
+ #
1965
+ # * `AWS_SES_EU_SOUTH_1` – Indicates that DKIM was configured for the
1966
+ # identity by replicating signing attributes from a parent identity
1967
+ # in Europe (Milan) region using Deterministic Easy-DKIM (DEED).
1968
+ #
1969
+ # * `AWS_SES_EU_WEST_1` – Indicates that DKIM was configured for the
1970
+ # identity by replicating signing attributes from a parent identity
1971
+ # in Europe (Ireland) region using Deterministic Easy-DKIM (DEED).
1972
+ #
1973
+ # * `AWS_SES_AP_NORTHEAST_3` – Indicates that DKIM was configured for
1974
+ # the identity by replicating signing attributes from a parent
1975
+ # identity in Asia Pacific (Osaka) region using Deterministic
1976
+ # Easy-DKIM (DEED).
1977
+ #
1978
+ # * `AWS_SES_AP_NORTHEAST_2` – Indicates that DKIM was configured for
1979
+ # the identity by replicating signing attributes from a parent
1980
+ # identity in Asia Pacific (Seoul) region using Deterministic
1981
+ # Easy-DKIM (DEED).
1982
+ #
1983
+ # * `AWS_SES_ME_SOUTH_1` – Indicates that DKIM was configured for the
1984
+ # identity by replicating signing attributes from a parent identity
1985
+ # in Middle East (Bahrain) region using Deterministic Easy-DKIM
1986
+ # (DEED).
1987
+ #
1988
+ # * `AWS_SES_AP_NORTHEAST_1` – Indicates that DKIM was configured for
1989
+ # the identity by replicating signing attributes from a parent
1990
+ # identity in Asia Pacific (Tokyo) region using Deterministic
1991
+ # Easy-DKIM (DEED).
1992
+ #
1993
+ # * `AWS_SES_IL_CENTRAL_1` – Indicates that DKIM was configured for
1994
+ # the identity by replicating signing attributes from a parent
1995
+ # identity in Israel (Tel Aviv) region using Deterministic Easy-DKIM
1996
+ # (DEED).
1997
+ #
1998
+ # * `AWS_SES_SA_EAST_1` – Indicates that DKIM was configured for the
1999
+ # identity by replicating signing attributes from a parent identity
2000
+ # in South America (São Paulo) region using Deterministic Easy-DKIM
2001
+ # (DEED).
2002
+ #
2003
+ # * `AWS_SES_CA_CENTRAL_1` – Indicates that DKIM was configured for
2004
+ # the identity by replicating signing attributes from a parent
2005
+ # identity in Canada (Central) region using Deterministic Easy-DKIM
2006
+ # (DEED).
2007
+ #
2008
+ # * `AWS_SES_AP_SOUTHEAST_1` – Indicates that DKIM was configured for
2009
+ # the identity by replicating signing attributes from a parent
2010
+ # identity in Asia Pacific (Singapore) region using Deterministic
2011
+ # Easy-DKIM (DEED).
2012
+ #
2013
+ # * `AWS_SES_AP_SOUTHEAST_2` – Indicates that DKIM was configured for
2014
+ # the identity by replicating signing attributes from a parent
2015
+ # identity in Asia Pacific (Sydney) region using Deterministic
2016
+ # Easy-DKIM (DEED).
2017
+ #
2018
+ # * `AWS_SES_AP_SOUTHEAST_3` – Indicates that DKIM was configured for
2019
+ # the identity by replicating signing attributes from a parent
2020
+ # identity in Asia Pacific (Jakarta) region using Deterministic
2021
+ # Easy-DKIM (DEED).
2022
+ #
2023
+ # * `AWS_SES_EU_CENTRAL_1` – Indicates that DKIM was configured for
2024
+ # the identity by replicating signing attributes from a parent
2025
+ # identity in Europe (Frankfurt) region using Deterministic
2026
+ # Easy-DKIM (DEED).
2027
+ #
2028
+ # * `AWS_SES_US_EAST_1` – Indicates that DKIM was configured for the
2029
+ # identity by replicating signing attributes from a parent identity
2030
+ # in US East (N. Virginia) region using Deterministic Easy-DKIM
2031
+ # (DEED).
2032
+ #
2033
+ # * `AWS_SES_US_EAST_2` – Indicates that DKIM was configured for the
2034
+ # identity by replicating signing attributes from a parent identity
2035
+ # in US East (Ohio) region using Deterministic Easy-DKIM (DEED).
2036
+ #
2037
+ # * `AWS_SES_US_WEST_1` – Indicates that DKIM was configured for the
2038
+ # identity by replicating signing attributes from a parent identity
2039
+ # in US West (N. California) region using Deterministic Easy-DKIM
2040
+ # (DEED).
2041
+ #
2042
+ # * `AWS_SES_US_WEST_2` – Indicates that DKIM was configured for the
2043
+ # identity by replicating signing attributes from a parent identity
2044
+ # in US West (Oregon) region using Deterministic Easy-DKIM (DEED).
2045
+ #
1832
2046
  #
1833
2047
  #
1834
2048
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
@@ -1883,12 +2097,128 @@ module Aws::SESV2
1883
2097
  # generated. This can be changed at most once per day.
1884
2098
  # @return [String]
1885
2099
  #
2100
+ # @!attribute [rw] domain_signing_attributes_origin
2101
+ # The attribute to use for configuring DKIM for the identity depends
2102
+ # on the operation:
2103
+ #
2104
+ # 1. For `PutEmailIdentityDkimSigningAttributes`:
2105
+ #
2106
+ # * None of the values are allowed - use the [
2107
+ # `SigningAttributesOrigin` ][1] parameter instead
2108
+ #
2109
+ # ^
2110
+ # 2. For `CreateEmailIdentity` when replicating a parent identity's
2111
+ # DKIM configuration:
2112
+ #
2113
+ # * Allowed values: All values except `AWS_SES` and `EXTERNAL`
2114
+ #
2115
+ # ^
2116
+ #
2117
+ # * `AWS_SES` – Configure DKIM for the identity by using Easy DKIM.
2118
+ #
2119
+ # * `EXTERNAL` – Configure DKIM for the identity by using Bring Your
2120
+ # Own DKIM (BYODKIM).
2121
+ #
2122
+ # * `AWS_SES_AF_SOUTH_1` – Configure DKIM for the identity by
2123
+ # replicating from a parent identity in Africa (Cape Town) region
2124
+ # using Deterministic Easy-DKIM (DEED).
2125
+ #
2126
+ # * `AWS_SES_EU_NORTH_1` – Configure DKIM for the identity by
2127
+ # replicating from a parent identity in Europe (Stockholm) region
2128
+ # using Deterministic Easy-DKIM (DEED).
2129
+ #
2130
+ # * `AWS_SES_AP_SOUTH_1` – Configure DKIM for the identity by
2131
+ # replicating from a parent identity in Asia Pacific (Mumbai) region
2132
+ # using Deterministic Easy-DKIM (DEED).
2133
+ #
2134
+ # * `AWS_SES_EU_WEST_3` – Configure DKIM for the identity by
2135
+ # replicating from a parent identity in Europe (Paris) region using
2136
+ # Deterministic Easy-DKIM (DEED).
2137
+ #
2138
+ # * `AWS_SES_EU_WEST_2` – Configure DKIM for the identity by
2139
+ # replicating from a parent identity in Europe (London) region using
2140
+ # Deterministic Easy-DKIM (DEED).
2141
+ #
2142
+ # * `AWS_SES_EU_SOUTH_1` – Configure DKIM for the identity by
2143
+ # replicating from a parent identity in Europe (Milan) region using
2144
+ # Deterministic Easy-DKIM (DEED).
2145
+ #
2146
+ # * `AWS_SES_EU_WEST_1` – Configure DKIM for the identity by
2147
+ # replicating from a parent identity in Europe (Ireland) region
2148
+ # using Deterministic Easy-DKIM (DEED).
2149
+ #
2150
+ # * `AWS_SES_AP_NORTHEAST_3` – Configure DKIM for the identity by
2151
+ # replicating from a parent identity in Asia Pacific (Osaka) region
2152
+ # using Deterministic Easy-DKIM (DEED).
2153
+ #
2154
+ # * `AWS_SES_AP_NORTHEAST_2` – Configure DKIM for the identity by
2155
+ # replicating from a parent identity in Asia Pacific (Seoul) region
2156
+ # using Deterministic Easy-DKIM (DEED).
2157
+ #
2158
+ # * `AWS_SES_ME_SOUTH_1` – Configure DKIM for the identity by
2159
+ # replicating from a parent identity in Middle East (Bahrain) region
2160
+ # using Deterministic Easy-DKIM (DEED).
2161
+ #
2162
+ # * `AWS_SES_AP_NORTHEAST_1` – Configure DKIM for the identity by
2163
+ # replicating from a parent identity in Asia Pacific (Tokyo) region
2164
+ # using Deterministic Easy-DKIM (DEED).
2165
+ #
2166
+ # * `AWS_SES_IL_CENTRAL_1` – Configure DKIM for the identity by
2167
+ # replicating from a parent identity in Israel (Tel Aviv) region
2168
+ # using Deterministic Easy-DKIM (DEED).
2169
+ #
2170
+ # * `AWS_SES_SA_EAST_1` – Configure DKIM for the identity by
2171
+ # replicating from a parent identity in South America (São Paulo)
2172
+ # region using Deterministic Easy-DKIM (DEED).
2173
+ #
2174
+ # * `AWS_SES_CA_CENTRAL_1` – Configure DKIM for the identity by
2175
+ # replicating from a parent identity in Canada (Central) region
2176
+ # using Deterministic Easy-DKIM (DEED).
2177
+ #
2178
+ # * `AWS_SES_AP_SOUTHEAST_1` – Configure DKIM for the identity by
2179
+ # replicating from a parent identity in Asia Pacific (Singapore)
2180
+ # region using Deterministic Easy-DKIM (DEED).
2181
+ #
2182
+ # * `AWS_SES_AP_SOUTHEAST_2` – Configure DKIM for the identity by
2183
+ # replicating from a parent identity in Asia Pacific (Sydney) region
2184
+ # using Deterministic Easy-DKIM (DEED).
2185
+ #
2186
+ # * `AWS_SES_AP_SOUTHEAST_3` – Configure DKIM for the identity by
2187
+ # replicating from a parent identity in Asia Pacific (Jakarta)
2188
+ # region using Deterministic Easy-DKIM (DEED).
2189
+ #
2190
+ # * `AWS_SES_EU_CENTRAL_1` – Configure DKIM for the identity by
2191
+ # replicating from a parent identity in Europe (Frankfurt) region
2192
+ # using Deterministic Easy-DKIM (DEED).
2193
+ #
2194
+ # * `AWS_SES_US_EAST_1` – Configure DKIM for the identity by
2195
+ # replicating from a parent identity in US East (N. Virginia) region
2196
+ # using Deterministic Easy-DKIM (DEED).
2197
+ #
2198
+ # * `AWS_SES_US_EAST_2` – Configure DKIM for the identity by
2199
+ # replicating from a parent identity in US East (Ohio) region using
2200
+ # Deterministic Easy-DKIM (DEED).
2201
+ #
2202
+ # * `AWS_SES_US_WEST_1` – Configure DKIM for the identity by
2203
+ # replicating from a parent identity in US West (N. California)
2204
+ # region using Deterministic Easy-DKIM (DEED).
2205
+ #
2206
+ # * `AWS_SES_US_WEST_2` – Configure DKIM for the identity by
2207
+ # replicating from a parent identity in US West (Oregon) region
2208
+ # using Deterministic Easy-DKIM (DEED).
2209
+ #
2210
+ #
2211
+ #
2212
+ # [1]: https://docs.aws.amazon.com/ses/latest/APIReference-V2/API_PutEmailIdentityDkimSigningAttributes.html#SES-PutEmailIdentityDkimSigningAttributes-request-SigningAttributesOrigin
2213
+ # @return [String]
2214
+ #
1886
2215
  # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DkimSigningAttributes AWS API Documentation
1887
2216
  #
1888
2217
  class DkimSigningAttributes < Struct.new(
1889
2218
  :domain_signing_selector,
1890
2219
  :domain_signing_private_key,
1891
- :next_signing_key_length)
2220
+ :next_signing_key_length,
2221
+ :domain_signing_attributes_origin)
1892
2222
  SENSITIVE = [:domain_signing_private_key]
1893
2223
  include Aws::Structure
1894
2224
  end
@@ -3716,6 +4046,72 @@ module Aws::SESV2
3716
4046
  include Aws::Structure
3717
4047
  end
3718
4048
 
4049
+ # Represents a request to display the multi-region endpoint
4050
+ # (global-endpoint).
4051
+ #
4052
+ # @!attribute [rw] endpoint_name
4053
+ # The name of the multi-region endpoint (global-endpoint).
4054
+ # @return [String]
4055
+ #
4056
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetMultiRegionEndpointRequest AWS API Documentation
4057
+ #
4058
+ class GetMultiRegionEndpointRequest < Struct.new(
4059
+ :endpoint_name)
4060
+ SENSITIVE = []
4061
+ include Aws::Structure
4062
+ end
4063
+
4064
+ # An HTTP 200 response if the request succeeds, or an error message if
4065
+ # the request fails.
4066
+ #
4067
+ # @!attribute [rw] endpoint_name
4068
+ # The name of the multi-region endpoint (global-endpoint).
4069
+ # @return [String]
4070
+ #
4071
+ # @!attribute [rw] endpoint_id
4072
+ # The ID of the multi-region endpoint (global-endpoint).
4073
+ # @return [String]
4074
+ #
4075
+ # @!attribute [rw] routes
4076
+ # Contains routes information for the multi-region endpoint
4077
+ # (global-endpoint).
4078
+ # @return [Array<Types::Route>]
4079
+ #
4080
+ # @!attribute [rw] status
4081
+ # The status of the multi-region endpoint (global-endpoint).
4082
+ #
4083
+ # * `CREATING` – The resource is being provisioned.
4084
+ #
4085
+ # * `READY` – The resource is ready to use.
4086
+ #
4087
+ # * `FAILED` – The resource failed to be provisioned.
4088
+ #
4089
+ # * `DELETING` – The resource is being deleted as requested.
4090
+ # @return [String]
4091
+ #
4092
+ # @!attribute [rw] created_timestamp
4093
+ # The time stamp of when the multi-region endpoint (global-endpoint)
4094
+ # was created.
4095
+ # @return [Time]
4096
+ #
4097
+ # @!attribute [rw] last_updated_timestamp
4098
+ # The time stamp of when the multi-region endpoint (global-endpoint)
4099
+ # was last updated.
4100
+ # @return [Time]
4101
+ #
4102
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetMultiRegionEndpointResponse AWS API Documentation
4103
+ #
4104
+ class GetMultiRegionEndpointResponse < Struct.new(
4105
+ :endpoint_name,
4106
+ :endpoint_id,
4107
+ :routes,
4108
+ :status,
4109
+ :created_timestamp,
4110
+ :last_updated_timestamp)
4111
+ SENSITIVE = []
4112
+ include Aws::Structure
4113
+ end
4114
+
3719
4115
  # A request to retrieve information about an email address that's on
3720
4116
  # the suppression list for your account.
3721
4117
  #
@@ -4702,6 +5098,56 @@ module Aws::SESV2
4702
5098
  include Aws::Structure
4703
5099
  end
4704
5100
 
5101
+ # Represents a request to list all the multi-region endpoints
5102
+ # (global-endpoints) whose primary region is the AWS-Region where
5103
+ # operation is executed.
5104
+ #
5105
+ # @!attribute [rw] next_token
5106
+ # A token returned from a previous call to `ListMultiRegionEndpoints`
5107
+ # to indicate the position in the list of multi-region endpoints
5108
+ # (global-endpoints).
5109
+ # @return [String]
5110
+ #
5111
+ # @!attribute [rw] page_size
5112
+ # The number of results to show in a single call to
5113
+ # `ListMultiRegionEndpoints`. If the number of results is larger than
5114
+ # the number you specified in this parameter, the response includes a
5115
+ # `NextToken` element that you can use to retrieve the next page of
5116
+ # results.
5117
+ # @return [Integer]
5118
+ #
5119
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListMultiRegionEndpointsRequest AWS API Documentation
5120
+ #
5121
+ class ListMultiRegionEndpointsRequest < Struct.new(
5122
+ :next_token,
5123
+ :page_size)
5124
+ SENSITIVE = []
5125
+ include Aws::Structure
5126
+ end
5127
+
5128
+ # The following elements are returned by the service.
5129
+ #
5130
+ # @!attribute [rw] multi_region_endpoints
5131
+ # An array that contains key multi-region endpoint (global-endpoint)
5132
+ # properties.
5133
+ # @return [Array<Types::MultiRegionEndpoint>]
5134
+ #
5135
+ # @!attribute [rw] next_token
5136
+ # A token indicating that there are additional multi-region endpoints
5137
+ # (global-endpoints) available to be listed. Pass this token to a
5138
+ # subsequent `ListMultiRegionEndpoints` call to retrieve the next
5139
+ # page.
5140
+ # @return [String]
5141
+ #
5142
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListMultiRegionEndpointsResponse AWS API Documentation
5143
+ #
5144
+ class ListMultiRegionEndpointsResponse < Struct.new(
5145
+ :multi_region_endpoints,
5146
+ :next_token)
5147
+ SENSITIVE = []
5148
+ include Aws::Structure
5149
+ end
5150
+
4705
5151
  # Represents a request to list the existing recommendations for your
4706
5152
  # account.
4707
5153
  #
@@ -5200,6 +5646,57 @@ module Aws::SESV2
5200
5646
  include Aws::Structure
5201
5647
  end
5202
5648
 
5649
+ # An object that contains multi-region endpoint (global-endpoint)
5650
+ # properties.
5651
+ #
5652
+ # @!attribute [rw] endpoint_name
5653
+ # The name of the multi-region endpoint (global-endpoint).
5654
+ # @return [String]
5655
+ #
5656
+ # @!attribute [rw] status
5657
+ # The status of the multi-region endpoint (global-endpoint).
5658
+ #
5659
+ # * `CREATING` – The resource is being provisioned.
5660
+ #
5661
+ # * `READY` – The resource is ready to use.
5662
+ #
5663
+ # * `FAILED` – The resource failed to be provisioned.
5664
+ #
5665
+ # * `DELETING` – The resource is being deleted as requested.
5666
+ # @return [String]
5667
+ #
5668
+ # @!attribute [rw] endpoint_id
5669
+ # The ID of the multi-region endpoint (global-endpoint).
5670
+ # @return [String]
5671
+ #
5672
+ # @!attribute [rw] regions
5673
+ # Primary and secondary regions between which multi-region endpoint
5674
+ # splits sending traffic.
5675
+ # @return [Array<String>]
5676
+ #
5677
+ # @!attribute [rw] created_timestamp
5678
+ # The time stamp of when the multi-region endpoint (global-endpoint)
5679
+ # was created.
5680
+ # @return [Time]
5681
+ #
5682
+ # @!attribute [rw] last_updated_timestamp
5683
+ # The time stamp of when the multi-region endpoint (global-endpoint)
5684
+ # was last updated.
5685
+ # @return [Time]
5686
+ #
5687
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/MultiRegionEndpoint AWS API Documentation
5688
+ #
5689
+ class MultiRegionEndpoint < Struct.new(
5690
+ :endpoint_name,
5691
+ :status,
5692
+ :endpoint_id,
5693
+ :regions,
5694
+ :created_timestamp,
5695
+ :last_updated_timestamp)
5696
+ SENSITIVE = []
5697
+ include Aws::Structure
5698
+ end
5699
+
5203
5700
  # The resource you attempted to access doesn't exist.
5204
5701
  #
5205
5702
  # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/NotFoundException AWS API Documentation
@@ -6262,6 +6759,36 @@ module Aws::SESV2
6262
6759
  include Aws::Structure
6263
6760
  end
6264
6761
 
6762
+ # An object which contains an AWS-Region and routing status.
6763
+ #
6764
+ # @!attribute [rw] region
6765
+ # The name of an AWS-Region.
6766
+ # @return [String]
6767
+ #
6768
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/Route AWS API Documentation
6769
+ #
6770
+ class Route < Struct.new(
6771
+ :region)
6772
+ SENSITIVE = []
6773
+ include Aws::Structure
6774
+ end
6775
+
6776
+ # An object that contains route configuration. Includes secondary region
6777
+ # name.
6778
+ #
6779
+ # @!attribute [rw] region
6780
+ # The name of an AWS-Region to be a secondary region for the
6781
+ # multi-region endpoint (global-endpoint).
6782
+ # @return [String]
6783
+ #
6784
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/RouteDetails AWS API Documentation
6785
+ #
6786
+ class RouteDetails < Struct.new(
6787
+ :region)
6788
+ SENSITIVE = []
6789
+ include Aws::Structure
6790
+ end
6791
+
6265
6792
  # An object that contains information about the start of authority (SOA)
6266
6793
  # record associated with the identity.
6267
6794
  #
@@ -6372,6 +6899,10 @@ module Aws::SESV2
6372
6899
  # The name of the configuration set to use when sending the email.
6373
6900
  # @return [String]
6374
6901
  #
6902
+ # @!attribute [rw] endpoint_id
6903
+ # The ID of the multi-region endpoint (global-endpoint).
6904
+ # @return [String]
6905
+ #
6375
6906
  # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/SendBulkEmailRequest AWS API Documentation
6376
6907
  #
6377
6908
  class SendBulkEmailRequest < Struct.new(
@@ -6383,7 +6914,8 @@ module Aws::SESV2
6383
6914
  :default_email_tags,
6384
6915
  :default_content,
6385
6916
  :bulk_email_entries,
6386
- :configuration_set_name)
6917
+ :configuration_set_name,
6918
+ :endpoint_id)
6387
6919
  SENSITIVE = []
6388
6920
  include Aws::Structure
6389
6921
  end
@@ -6533,6 +7065,10 @@ module Aws::SESV2
6533
7065
  # The name of the configuration set to use when sending the email.
6534
7066
  # @return [String]
6535
7067
  #
7068
+ # @!attribute [rw] endpoint_id
7069
+ # The ID of the multi-region endpoint (global-endpoint).
7070
+ # @return [String]
7071
+ #
6536
7072
  # @!attribute [rw] list_management_options
6537
7073
  # An object used to specify a list or topic to which an email belongs,
6538
7074
  # which will be used when a contact chooses to unsubscribe.
@@ -6550,6 +7086,7 @@ module Aws::SESV2
6550
7086
  :content,
6551
7087
  :email_tags,
6552
7088
  :configuration_set_name,
7089
+ :endpoint_id,
6553
7090
  :list_management_options)
6554
7091
  SENSITIVE = []
6555
7092
  include Aws::Structure
@@ -7438,6 +7975,31 @@ module Aws::SESV2
7438
7975
  #
7439
7976
  # * `DNS_SERVER_ERROR` – The DNS server encountered an issue and was
7440
7977
  # unable to complete the request.
7978
+ #
7979
+ # * `REPLICATION_ACCESS_DENIED` – The verification failed because the
7980
+ # user does not have the required permissions to replicate the DKIM
7981
+ # key from the primary region. Ensure you have the necessary
7982
+ # permissions in both primary and replica regions.
7983
+ #
7984
+ # * `REPLICATION_PRIMARY_NOT_FOUND` – The verification failed because
7985
+ # no corresponding identity was found in the specified primary
7986
+ # region. Ensure the identity exists in the primary region before
7987
+ # attempting replication.
7988
+ #
7989
+ # * `REPLICATION_PRIMARY_BYO_DKIM_NOT_SUPPORTED` – The verification
7990
+ # failed because the identity in the primary region is configured
7991
+ # with Bring Your Own DKIM (BYODKIM). DKIM key replication is only
7992
+ # supported for identities using Easy DKIM.
7993
+ #
7994
+ # * `REPLICATION_REPLICA_AS_PRIMARY_NOT_SUPPORTED` – The verification
7995
+ # failed because the specified primary identity is a replica of
7996
+ # another identity, and multi-level replication is not supported;
7997
+ # the primary identity must be a non-replica identity.
7998
+ #
7999
+ # * `REPLICATION_PRIMARY_INVALID_REGION` – The verification failed due
8000
+ # to an invalid primary region specified. Ensure you provide a valid
8001
+ # AWS region where Amazon SES is available and different from the
8002
+ # replica region.
7441
8003
  # @return [String]
7442
8004
  #
7443
8005
  # @!attribute [rw] soa_record
data/lib/aws-sdk-sesv2.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::SESV2
54
54
  autoload :EndpointProvider, 'aws-sdk-sesv2/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-sesv2/endpoints'
56
56
 
57
- GEM_VERSION = '1.66.0'
57
+ GEM_VERSION = '1.68.0'
58
58
 
59
59
  end
60
60