@aws-sdk/client-sesv2 3.708.0 → 3.710.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.
- package/README.md +32 -0
- package/dist-cjs/endpoint/endpointResolver.js +1 -1
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/index.js +258 -11
- package/dist-es/SESv2.js +8 -0
- package/dist-es/commands/CreateMultiRegionEndpointCommand.js +22 -0
- package/dist-es/commands/DeleteMultiRegionEndpointCommand.js +22 -0
- package/dist-es/commands/GetMultiRegionEndpointCommand.js +22 -0
- package/dist-es/commands/ListMultiRegionEndpointsCommand.js +22 -0
- package/dist-es/commands/PutEmailIdentityDkimSigningAttributesCommand.js +1 -1
- package/dist-es/commands/SendBulkEmailCommand.js +4 -1
- package/dist-es/commands/SendEmailCommand.js +4 -1
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +37 -8
- package/dist-es/models/models_1.js +5 -1
- package/dist-es/pagination/ListMultiRegionEndpointsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +128 -0
- package/dist-types/SESv2.d.ts +29 -0
- package/dist-types/SESv2Client.d.ts +6 -2
- package/dist-types/commands/CreateEmailIdentityCommand.d.ts +2 -1
- package/dist-types/commands/CreateMultiRegionEndpointCommand.d.ts +103 -0
- package/dist-types/commands/DeleteMultiRegionEndpointCommand.d.ts +85 -0
- package/dist-types/commands/GetEmailIdentityCommand.d.ts +2 -2
- package/dist-types/commands/GetMultiRegionEndpointCommand.d.ts +91 -0
- package/dist-types/commands/ListMultiRegionEndpointsCommand.d.ts +92 -0
- package/dist-types/commands/PutDedicatedIpInPoolCommand.d.ts +1 -1
- package/dist-types/commands/PutDedicatedIpPoolScalingAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutDedicatedIpWarmupAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutDeliverabilityDashboardOptionCommand.d.ts +1 -1
- package/dist-types/commands/PutEmailIdentityConfigurationSetAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutEmailIdentityDkimAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutEmailIdentityDkimSigningAttributesCommand.d.ts +3 -3
- package/dist-types/commands/SendBulkEmailCommand.d.ts +1 -0
- package/dist-types/commands/SendEmailCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +730 -232
- package/dist-types/models/models_1.d.ts +206 -1
- package/dist-types/pagination/ListMultiRegionEndpointsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/SESv2.d.ts +69 -0
- package/dist-types/ts3.4/SESv2Client.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateMultiRegionEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteMultiRegionEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetMultiRegionEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListMultiRegionEndpointsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutDedicatedIpInPoolCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutDedicatedIpPoolScalingAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutDedicatedIpWarmupAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutDeliverabilityDashboardOptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutEmailIdentityConfigurationSetAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutEmailIdentityDkimAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutEmailIdentityDkimSigningAttributesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +92 -44
- package/dist-types/ts3.4/models/models_1.d.ts +44 -0
- package/dist-types/ts3.4/pagination/ListMultiRegionEndpointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +36 -36
|
@@ -2117,6 +2117,40 @@ export declare class SendingPausedException extends __BaseException {
|
|
|
2117
2117
|
*/
|
|
2118
2118
|
constructor(opts: __ExceptionOptionType<SendingPausedException, __BaseException>);
|
|
2119
2119
|
}
|
|
2120
|
+
/**
|
|
2121
|
+
* @public
|
|
2122
|
+
* @enum
|
|
2123
|
+
*/
|
|
2124
|
+
export declare const DkimSigningAttributesOrigin: {
|
|
2125
|
+
readonly AWS_SES: "AWS_SES";
|
|
2126
|
+
readonly AWS_SES_AF_SOUTH_1: "AWS_SES_AF_SOUTH_1";
|
|
2127
|
+
readonly AWS_SES_AP_NORTHEAST_1: "AWS_SES_AP_NORTHEAST_1";
|
|
2128
|
+
readonly AWS_SES_AP_NORTHEAST_2: "AWS_SES_AP_NORTHEAST_2";
|
|
2129
|
+
readonly AWS_SES_AP_NORTHEAST_3: "AWS_SES_AP_NORTHEAST_3";
|
|
2130
|
+
readonly AWS_SES_AP_SOUTHEAST_1: "AWS_SES_AP_SOUTHEAST_1";
|
|
2131
|
+
readonly AWS_SES_AP_SOUTHEAST_2: "AWS_SES_AP_SOUTHEAST_2";
|
|
2132
|
+
readonly AWS_SES_AP_SOUTHEAST_3: "AWS_SES_AP_SOUTHEAST_3";
|
|
2133
|
+
readonly AWS_SES_AP_SOUTH_1: "AWS_SES_AP_SOUTH_1";
|
|
2134
|
+
readonly AWS_SES_CA_CENTRAL_1: "AWS_SES_CA_CENTRAL_1";
|
|
2135
|
+
readonly AWS_SES_EU_CENTRAL_1: "AWS_SES_EU_CENTRAL_1";
|
|
2136
|
+
readonly AWS_SES_EU_NORTH_1: "AWS_SES_EU_NORTH_1";
|
|
2137
|
+
readonly AWS_SES_EU_SOUTH_1: "AWS_SES_EU_SOUTH_1";
|
|
2138
|
+
readonly AWS_SES_EU_WEST_1: "AWS_SES_EU_WEST_1";
|
|
2139
|
+
readonly AWS_SES_EU_WEST_2: "AWS_SES_EU_WEST_2";
|
|
2140
|
+
readonly AWS_SES_EU_WEST_3: "AWS_SES_EU_WEST_3";
|
|
2141
|
+
readonly AWS_SES_IL_CENTRAL_1: "AWS_SES_IL_CENTRAL_1";
|
|
2142
|
+
readonly AWS_SES_ME_SOUTH_1: "AWS_SES_ME_SOUTH_1";
|
|
2143
|
+
readonly AWS_SES_SA_EAST_1: "AWS_SES_SA_EAST_1";
|
|
2144
|
+
readonly AWS_SES_US_EAST_1: "AWS_SES_US_EAST_1";
|
|
2145
|
+
readonly AWS_SES_US_EAST_2: "AWS_SES_US_EAST_2";
|
|
2146
|
+
readonly AWS_SES_US_WEST_1: "AWS_SES_US_WEST_1";
|
|
2147
|
+
readonly AWS_SES_US_WEST_2: "AWS_SES_US_WEST_2";
|
|
2148
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
2149
|
+
};
|
|
2150
|
+
/**
|
|
2151
|
+
* @public
|
|
2152
|
+
*/
|
|
2153
|
+
export type DkimSigningAttributesOrigin = (typeof DkimSigningAttributesOrigin)[keyof typeof DkimSigningAttributesOrigin];
|
|
2120
2154
|
/**
|
|
2121
2155
|
* @public
|
|
2122
2156
|
* @enum
|
|
@@ -2154,6 +2188,186 @@ export interface DkimSigningAttributes {
|
|
|
2154
2188
|
* @public
|
|
2155
2189
|
*/
|
|
2156
2190
|
NextSigningKeyLength?: DkimSigningKeyLength | undefined;
|
|
2191
|
+
/**
|
|
2192
|
+
* <p>The attribute to use for configuring DKIM for the identity depends on the
|
|
2193
|
+
* operation:
|
|
2194
|
+
* </p>
|
|
2195
|
+
* <ol>
|
|
2196
|
+
* <li>
|
|
2197
|
+
* <p>For <code>PutEmailIdentityDkimSigningAttributes</code>:
|
|
2198
|
+
* </p>
|
|
2199
|
+
* <ul>
|
|
2200
|
+
* <li>
|
|
2201
|
+
* <p>None of the values are allowed - use the
|
|
2202
|
+
* <a href="https://docs.aws.amazon.com/ses/latest/APIReference-V2/API_PutEmailIdentityDkimSigningAttributes.html#SES-PutEmailIdentityDkimSigningAttributes-request-SigningAttributesOrigin">
|
|
2203
|
+
* <code>SigningAttributesOrigin</code>
|
|
2204
|
+
* </a>
|
|
2205
|
+
* parameter instead
|
|
2206
|
+
* </p>
|
|
2207
|
+
* </li>
|
|
2208
|
+
* </ul>
|
|
2209
|
+
* </li>
|
|
2210
|
+
* <li>
|
|
2211
|
+
* <p>For <code>CreateEmailIdentity</code> when replicating a parent identity's DKIM
|
|
2212
|
+
* configuration:
|
|
2213
|
+
* </p>
|
|
2214
|
+
* <ul>
|
|
2215
|
+
* <li>
|
|
2216
|
+
* <p>Allowed values: All values except <code>AWS_SES</code> and
|
|
2217
|
+
* <code>EXTERNAL</code>
|
|
2218
|
+
* </p>
|
|
2219
|
+
* </li>
|
|
2220
|
+
* </ul>
|
|
2221
|
+
* </li>
|
|
2222
|
+
* </ol>
|
|
2223
|
+
* <ul>
|
|
2224
|
+
* <li>
|
|
2225
|
+
* <p>
|
|
2226
|
+
* <code>AWS_SES</code> – Configure DKIM for the identity by using Easy DKIM.
|
|
2227
|
+
* </p>
|
|
2228
|
+
* </li>
|
|
2229
|
+
* <li>
|
|
2230
|
+
* <p>
|
|
2231
|
+
* <code>EXTERNAL</code> – Configure DKIM for the identity by using Bring Your Own DKIM
|
|
2232
|
+
* (BYODKIM).
|
|
2233
|
+
* </p>
|
|
2234
|
+
* </li>
|
|
2235
|
+
* <li>
|
|
2236
|
+
* <p>
|
|
2237
|
+
* <code>AWS_SES_AF_SOUTH_1</code> – Configure DKIM for the identity by replicating from a parent
|
|
2238
|
+
* identity in Africa (Cape Town) region using Deterministic Easy-DKIM (DEED).
|
|
2239
|
+
* </p>
|
|
2240
|
+
* </li>
|
|
2241
|
+
* <li>
|
|
2242
|
+
* <p>
|
|
2243
|
+
* <code>AWS_SES_EU_NORTH_1</code> – Configure DKIM for the identity by replicating from a parent
|
|
2244
|
+
* identity in Europe (Stockholm) region using Deterministic Easy-DKIM (DEED).
|
|
2245
|
+
* </p>
|
|
2246
|
+
* </li>
|
|
2247
|
+
* <li>
|
|
2248
|
+
* <p>
|
|
2249
|
+
* <code>AWS_SES_AP_SOUTH_1</code> – Configure DKIM for the identity by replicating from a parent
|
|
2250
|
+
* identity in Asia Pacific (Mumbai) region using Deterministic Easy-DKIM (DEED).
|
|
2251
|
+
* </p>
|
|
2252
|
+
* </li>
|
|
2253
|
+
* <li>
|
|
2254
|
+
* <p>
|
|
2255
|
+
* <code>AWS_SES_EU_WEST_3</code> – Configure DKIM for the identity by replicating from a parent
|
|
2256
|
+
* identity in Europe (Paris) region using Deterministic Easy-DKIM (DEED).
|
|
2257
|
+
* </p>
|
|
2258
|
+
* </li>
|
|
2259
|
+
* <li>
|
|
2260
|
+
* <p>
|
|
2261
|
+
* <code>AWS_SES_EU_WEST_2</code> – Configure DKIM for the identity by replicating from a parent
|
|
2262
|
+
* identity in Europe (London) region using Deterministic Easy-DKIM (DEED).
|
|
2263
|
+
* </p>
|
|
2264
|
+
* </li>
|
|
2265
|
+
* <li>
|
|
2266
|
+
* <p>
|
|
2267
|
+
* <code>AWS_SES_EU_SOUTH_1</code> – Configure DKIM for the identity by replicating from a parent
|
|
2268
|
+
* identity in Europe (Milan) region using Deterministic Easy-DKIM (DEED).
|
|
2269
|
+
* </p>
|
|
2270
|
+
* </li>
|
|
2271
|
+
* <li>
|
|
2272
|
+
* <p>
|
|
2273
|
+
* <code>AWS_SES_EU_WEST_1</code> – Configure DKIM for the identity by replicating from a parent
|
|
2274
|
+
* identity in Europe (Ireland) region using Deterministic Easy-DKIM (DEED).
|
|
2275
|
+
* </p>
|
|
2276
|
+
* </li>
|
|
2277
|
+
* <li>
|
|
2278
|
+
* <p>
|
|
2279
|
+
* <code>AWS_SES_AP_NORTHEAST_3</code> – Configure DKIM for the identity by replicating from a
|
|
2280
|
+
* parent identity in Asia Pacific (Osaka) region using Deterministic Easy-DKIM (DEED).
|
|
2281
|
+
* </p>
|
|
2282
|
+
* </li>
|
|
2283
|
+
* <li>
|
|
2284
|
+
* <p>
|
|
2285
|
+
* <code>AWS_SES_AP_NORTHEAST_2</code> – Configure DKIM for the identity by replicating from a
|
|
2286
|
+
* parent identity in Asia Pacific (Seoul) region using Deterministic Easy-DKIM (DEED).
|
|
2287
|
+
* </p>
|
|
2288
|
+
* </li>
|
|
2289
|
+
* <li>
|
|
2290
|
+
* <p>
|
|
2291
|
+
* <code>AWS_SES_ME_SOUTH_1</code> – Configure DKIM for the identity by replicating from a parent
|
|
2292
|
+
* identity in Middle East (Bahrain) region using Deterministic Easy-DKIM (DEED).
|
|
2293
|
+
* </p>
|
|
2294
|
+
* </li>
|
|
2295
|
+
* <li>
|
|
2296
|
+
* <p>
|
|
2297
|
+
* <code>AWS_SES_AP_NORTHEAST_1</code> – Configure DKIM for the identity by replicating from a
|
|
2298
|
+
* parent identity in Asia Pacific (Tokyo) region using Deterministic Easy-DKIM (DEED).
|
|
2299
|
+
* </p>
|
|
2300
|
+
* </li>
|
|
2301
|
+
* <li>
|
|
2302
|
+
* <p>
|
|
2303
|
+
* <code>AWS_SES_IL_CENTRAL_1</code> – Configure DKIM for the identity by replicating from a
|
|
2304
|
+
* parent identity in Israel (Tel Aviv) region using Deterministic Easy-DKIM (DEED).
|
|
2305
|
+
* </p>
|
|
2306
|
+
* </li>
|
|
2307
|
+
* <li>
|
|
2308
|
+
* <p>
|
|
2309
|
+
* <code>AWS_SES_SA_EAST_1</code> – Configure DKIM for the identity by replicating from a parent
|
|
2310
|
+
* identity in South America (São Paulo) region using Deterministic Easy-DKIM (DEED).
|
|
2311
|
+
* </p>
|
|
2312
|
+
* </li>
|
|
2313
|
+
* <li>
|
|
2314
|
+
* <p>
|
|
2315
|
+
* <code>AWS_SES_CA_CENTRAL_1</code> – Configure DKIM for the identity by replicating from a
|
|
2316
|
+
* parent identity in Canada (Central) region using Deterministic Easy-DKIM (DEED).
|
|
2317
|
+
* </p>
|
|
2318
|
+
* </li>
|
|
2319
|
+
* <li>
|
|
2320
|
+
* <p>
|
|
2321
|
+
* <code>AWS_SES_AP_SOUTHEAST_1</code> – Configure DKIM for the identity by replicating from a
|
|
2322
|
+
* parent identity in Asia Pacific (Singapore) region using Deterministic Easy-DKIM (DEED).
|
|
2323
|
+
* </p>
|
|
2324
|
+
* </li>
|
|
2325
|
+
* <li>
|
|
2326
|
+
* <p>
|
|
2327
|
+
* <code>AWS_SES_AP_SOUTHEAST_2</code> – Configure DKIM for the identity by replicating from a
|
|
2328
|
+
* parent identity in Asia Pacific (Sydney) region using Deterministic Easy-DKIM (DEED).
|
|
2329
|
+
* </p>
|
|
2330
|
+
* </li>
|
|
2331
|
+
* <li>
|
|
2332
|
+
* <p>
|
|
2333
|
+
* <code>AWS_SES_AP_SOUTHEAST_3</code> – Configure DKIM for the identity by replicating from a
|
|
2334
|
+
* parent identity in Asia Pacific (Jakarta) region using Deterministic Easy-DKIM (DEED).
|
|
2335
|
+
* </p>
|
|
2336
|
+
* </li>
|
|
2337
|
+
* <li>
|
|
2338
|
+
* <p>
|
|
2339
|
+
* <code>AWS_SES_EU_CENTRAL_1</code> – Configure DKIM for the identity by replicating from a
|
|
2340
|
+
* parent identity in Europe (Frankfurt) region using Deterministic Easy-DKIM (DEED).
|
|
2341
|
+
* </p>
|
|
2342
|
+
* </li>
|
|
2343
|
+
* <li>
|
|
2344
|
+
* <p>
|
|
2345
|
+
* <code>AWS_SES_US_EAST_1</code> – Configure DKIM for the identity by replicating from a parent
|
|
2346
|
+
* identity in US East (N. Virginia) region using Deterministic Easy-DKIM (DEED).
|
|
2347
|
+
* </p>
|
|
2348
|
+
* </li>
|
|
2349
|
+
* <li>
|
|
2350
|
+
* <p>
|
|
2351
|
+
* <code>AWS_SES_US_EAST_2</code> – Configure DKIM for the identity by replicating from a parent
|
|
2352
|
+
* identity in US East (Ohio) region using Deterministic Easy-DKIM (DEED).
|
|
2353
|
+
* </p>
|
|
2354
|
+
* </li>
|
|
2355
|
+
* <li>
|
|
2356
|
+
* <p>
|
|
2357
|
+
* <code>AWS_SES_US_WEST_1</code> – Configure DKIM for the identity by replicating from a parent
|
|
2358
|
+
* identity in US West (N. California) region using Deterministic Easy-DKIM (DEED).
|
|
2359
|
+
* </p>
|
|
2360
|
+
* </li>
|
|
2361
|
+
* <li>
|
|
2362
|
+
* <p>
|
|
2363
|
+
* <code>AWS_SES_US_WEST_2</code> – Configure DKIM for the identity by replicating from a parent
|
|
2364
|
+
* identity in US West (Oregon) region using Deterministic Easy-DKIM (DEED).
|
|
2365
|
+
* </p>
|
|
2366
|
+
* </li>
|
|
2367
|
+
* </ul>
|
|
2368
|
+
* @public
|
|
2369
|
+
*/
|
|
2370
|
+
DomainSigningAttributesOrigin?: DkimSigningAttributesOrigin | undefined;
|
|
2157
2371
|
}
|
|
2158
2372
|
/**
|
|
2159
2373
|
* <p>A request to begin the verification process for an email identity (an email address or
|
|
@@ -2189,18 +2403,6 @@ export interface CreateEmailIdentityRequest {
|
|
|
2189
2403
|
*/
|
|
2190
2404
|
ConfigurationSetName?: string | undefined;
|
|
2191
2405
|
}
|
|
2192
|
-
/**
|
|
2193
|
-
* @public
|
|
2194
|
-
* @enum
|
|
2195
|
-
*/
|
|
2196
|
-
export declare const DkimSigningAttributesOrigin: {
|
|
2197
|
-
readonly AWS_SES: "AWS_SES";
|
|
2198
|
-
readonly EXTERNAL: "EXTERNAL";
|
|
2199
|
-
};
|
|
2200
|
-
/**
|
|
2201
|
-
* @public
|
|
2202
|
-
*/
|
|
2203
|
-
export type DkimSigningAttributesOrigin = (typeof DkimSigningAttributesOrigin)[keyof typeof DkimSigningAttributesOrigin];
|
|
2204
2406
|
/**
|
|
2205
2407
|
* @public
|
|
2206
2408
|
* @enum
|
|
@@ -2298,6 +2500,152 @@ export interface DkimAttributes {
|
|
|
2298
2500
|
* <code>EXTERNAL</code> – Indicates that DKIM was configured for the
|
|
2299
2501
|
* identity by using Bring Your Own DKIM (BYODKIM).</p>
|
|
2300
2502
|
* </li>
|
|
2503
|
+
* <li>
|
|
2504
|
+
* <p>
|
|
2505
|
+
* <code>AWS_SES_AF_SOUTH_1</code> – Indicates that DKIM was configured for the identity by
|
|
2506
|
+
* replicating signing attributes from a parent identity in Africa (Cape Town) region using Deterministic Easy-DKIM
|
|
2507
|
+
* (DEED).
|
|
2508
|
+
* </p>
|
|
2509
|
+
* </li>
|
|
2510
|
+
* <li>
|
|
2511
|
+
* <p>
|
|
2512
|
+
* <code>AWS_SES_EU_NORTH_1</code> – Indicates that DKIM was configured for the identity by
|
|
2513
|
+
* replicating signing attributes from a parent identity in Europe (Stockholm) region using Deterministic Easy-DKIM
|
|
2514
|
+
* (DEED).
|
|
2515
|
+
* </p>
|
|
2516
|
+
* </li>
|
|
2517
|
+
* <li>
|
|
2518
|
+
* <p>
|
|
2519
|
+
* <code>AWS_SES_AP_SOUTH_1</code> – Indicates that DKIM was configured for the identity by
|
|
2520
|
+
* replicating signing attributes from a parent identity in Asia Pacific (Mumbai) region using Deterministic Easy-DKIM
|
|
2521
|
+
* (DEED).
|
|
2522
|
+
* </p>
|
|
2523
|
+
* </li>
|
|
2524
|
+
* <li>
|
|
2525
|
+
* <p>
|
|
2526
|
+
* <code>AWS_SES_EU_WEST_3</code> – Indicates that DKIM was configured for the identity by
|
|
2527
|
+
* replicating signing attributes from a parent identity in Europe (Paris) region using Deterministic Easy-DKIM (DEED).
|
|
2528
|
+
* </p>
|
|
2529
|
+
* </li>
|
|
2530
|
+
* <li>
|
|
2531
|
+
* <p>
|
|
2532
|
+
* <code>AWS_SES_EU_WEST_2</code> – Indicates that DKIM was configured for the identity by
|
|
2533
|
+
* replicating signing attributes from a parent identity in Europe (London) region using Deterministic Easy-DKIM (DEED).
|
|
2534
|
+
* </p>
|
|
2535
|
+
* </li>
|
|
2536
|
+
* <li>
|
|
2537
|
+
* <p>
|
|
2538
|
+
* <code>AWS_SES_EU_SOUTH_1</code> – Indicates that DKIM was configured for the identity by
|
|
2539
|
+
* replicating signing attributes from a parent identity in Europe (Milan) region using Deterministic Easy-DKIM (DEED).
|
|
2540
|
+
* </p>
|
|
2541
|
+
* </li>
|
|
2542
|
+
* <li>
|
|
2543
|
+
* <p>
|
|
2544
|
+
* <code>AWS_SES_EU_WEST_1</code> – Indicates that DKIM was configured for the identity by
|
|
2545
|
+
* replicating signing attributes from a parent identity in Europe (Ireland) region using Deterministic Easy-DKIM (DEED).
|
|
2546
|
+
* </p>
|
|
2547
|
+
* </li>
|
|
2548
|
+
* <li>
|
|
2549
|
+
* <p>
|
|
2550
|
+
* <code>AWS_SES_AP_NORTHEAST_3</code> – Indicates that DKIM was configured for the identity by
|
|
2551
|
+
* replicating signing attributes from a parent identity in Asia Pacific (Osaka) region using Deterministic Easy-DKIM
|
|
2552
|
+
* (DEED).
|
|
2553
|
+
* </p>
|
|
2554
|
+
* </li>
|
|
2555
|
+
* <li>
|
|
2556
|
+
* <p>
|
|
2557
|
+
* <code>AWS_SES_AP_NORTHEAST_2</code> – Indicates that DKIM was configured for the identity by
|
|
2558
|
+
* replicating signing attributes from a parent identity in Asia Pacific (Seoul) region using Deterministic Easy-DKIM
|
|
2559
|
+
* (DEED).
|
|
2560
|
+
* </p>
|
|
2561
|
+
* </li>
|
|
2562
|
+
* <li>
|
|
2563
|
+
* <p>
|
|
2564
|
+
* <code>AWS_SES_ME_SOUTH_1</code> – Indicates that DKIM was configured for the identity by
|
|
2565
|
+
* replicating signing attributes from a parent identity in Middle East (Bahrain) region using Deterministic Easy-DKIM
|
|
2566
|
+
* (DEED).
|
|
2567
|
+
* </p>
|
|
2568
|
+
* </li>
|
|
2569
|
+
* <li>
|
|
2570
|
+
* <p>
|
|
2571
|
+
* <code>AWS_SES_AP_NORTHEAST_1</code> – Indicates that DKIM was configured for the identity by
|
|
2572
|
+
* replicating signing attributes from a parent identity in Asia Pacific (Tokyo) region using Deterministic Easy-DKIM
|
|
2573
|
+
* (DEED).
|
|
2574
|
+
* </p>
|
|
2575
|
+
* </li>
|
|
2576
|
+
* <li>
|
|
2577
|
+
* <p>
|
|
2578
|
+
* <code>AWS_SES_IL_CENTRAL_1</code> – Indicates that DKIM was configured for the identity by
|
|
2579
|
+
* replicating signing attributes from a parent identity in Israel (Tel Aviv) region using Deterministic Easy-DKIM (DEED).
|
|
2580
|
+
* </p>
|
|
2581
|
+
* </li>
|
|
2582
|
+
* <li>
|
|
2583
|
+
* <p>
|
|
2584
|
+
* <code>AWS_SES_SA_EAST_1</code> – Indicates that DKIM was configured for the identity by
|
|
2585
|
+
* replicating signing attributes from a parent identity in South America (São Paulo) region using Deterministic Easy-DKIM
|
|
2586
|
+
* (DEED).
|
|
2587
|
+
* </p>
|
|
2588
|
+
* </li>
|
|
2589
|
+
* <li>
|
|
2590
|
+
* <p>
|
|
2591
|
+
* <code>AWS_SES_CA_CENTRAL_1</code> – Indicates that DKIM was configured for the identity by
|
|
2592
|
+
* replicating signing attributes from a parent identity in Canada (Central) region using Deterministic Easy-DKIM (DEED).
|
|
2593
|
+
* </p>
|
|
2594
|
+
* </li>
|
|
2595
|
+
* <li>
|
|
2596
|
+
* <p>
|
|
2597
|
+
* <code>AWS_SES_AP_SOUTHEAST_1</code> – Indicates that DKIM was configured for the identity by
|
|
2598
|
+
* replicating signing attributes from a parent identity in Asia Pacific (Singapore) region using Deterministic Easy-DKIM
|
|
2599
|
+
* (DEED).
|
|
2600
|
+
* </p>
|
|
2601
|
+
* </li>
|
|
2602
|
+
* <li>
|
|
2603
|
+
* <p>
|
|
2604
|
+
* <code>AWS_SES_AP_SOUTHEAST_2</code> – Indicates that DKIM was configured for the identity by
|
|
2605
|
+
* replicating signing attributes from a parent identity in Asia Pacific (Sydney) region using Deterministic Easy-DKIM
|
|
2606
|
+
* (DEED).
|
|
2607
|
+
* </p>
|
|
2608
|
+
* </li>
|
|
2609
|
+
* <li>
|
|
2610
|
+
* <p>
|
|
2611
|
+
* <code>AWS_SES_AP_SOUTHEAST_3</code> – Indicates that DKIM was configured for the identity by
|
|
2612
|
+
* replicating signing attributes from a parent identity in Asia Pacific (Jakarta) region using Deterministic Easy-DKIM
|
|
2613
|
+
* (DEED).
|
|
2614
|
+
* </p>
|
|
2615
|
+
* </li>
|
|
2616
|
+
* <li>
|
|
2617
|
+
* <p>
|
|
2618
|
+
* <code>AWS_SES_EU_CENTRAL_1</code> – Indicates that DKIM was configured for the identity by
|
|
2619
|
+
* replicating signing attributes from a parent identity in Europe (Frankfurt) region using Deterministic Easy-DKIM
|
|
2620
|
+
* (DEED).
|
|
2621
|
+
* </p>
|
|
2622
|
+
* </li>
|
|
2623
|
+
* <li>
|
|
2624
|
+
* <p>
|
|
2625
|
+
* <code>AWS_SES_US_EAST_1</code> – Indicates that DKIM was configured for the identity by
|
|
2626
|
+
* replicating signing attributes from a parent identity in US East (N. Virginia) region using Deterministic Easy-DKIM
|
|
2627
|
+
* (DEED).
|
|
2628
|
+
* </p>
|
|
2629
|
+
* </li>
|
|
2630
|
+
* <li>
|
|
2631
|
+
* <p>
|
|
2632
|
+
* <code>AWS_SES_US_EAST_2</code> – Indicates that DKIM was configured for the identity by
|
|
2633
|
+
* replicating signing attributes from a parent identity in US East (Ohio) region using Deterministic Easy-DKIM (DEED).
|
|
2634
|
+
* </p>
|
|
2635
|
+
* </li>
|
|
2636
|
+
* <li>
|
|
2637
|
+
* <p>
|
|
2638
|
+
* <code>AWS_SES_US_WEST_1</code> – Indicates that DKIM was configured for the identity by
|
|
2639
|
+
* replicating signing attributes from a parent identity in US West (N. California) region using Deterministic Easy-DKIM
|
|
2640
|
+
* (DEED).
|
|
2641
|
+
* </p>
|
|
2642
|
+
* </li>
|
|
2643
|
+
* <li>
|
|
2644
|
+
* <p>
|
|
2645
|
+
* <code>AWS_SES_US_WEST_2</code> – Indicates that DKIM was configured for the identity by
|
|
2646
|
+
* replicating signing attributes from a parent identity in US West (Oregon) region using Deterministic Easy-DKIM (DEED).
|
|
2647
|
+
* </p>
|
|
2648
|
+
* </li>
|
|
2301
2649
|
* </ul>
|
|
2302
2650
|
* @public
|
|
2303
2651
|
*/
|
|
@@ -2848,6 +3196,98 @@ export interface CreateImportJobResponse {
|
|
|
2848
3196
|
*/
|
|
2849
3197
|
JobId?: string | undefined;
|
|
2850
3198
|
}
|
|
3199
|
+
/**
|
|
3200
|
+
* <p>An object that contains route configuration. Includes secondary region name.</p>
|
|
3201
|
+
* @public
|
|
3202
|
+
*/
|
|
3203
|
+
export interface RouteDetails {
|
|
3204
|
+
/**
|
|
3205
|
+
* <p>The name of an AWS-Region to be a secondary region for the multi-region endpoint (global-endpoint).</p>
|
|
3206
|
+
* @public
|
|
3207
|
+
*/
|
|
3208
|
+
Region: string | undefined;
|
|
3209
|
+
}
|
|
3210
|
+
/**
|
|
3211
|
+
* <p>An object that contains configuration details of multi-region endpoint (global-endpoint).</p>
|
|
3212
|
+
* @public
|
|
3213
|
+
*/
|
|
3214
|
+
export interface Details {
|
|
3215
|
+
/**
|
|
3216
|
+
* <p>A list of route configuration details. Must contain exactly one route configuration.</p>
|
|
3217
|
+
* @public
|
|
3218
|
+
*/
|
|
3219
|
+
RoutesDetails: RouteDetails[] | undefined;
|
|
3220
|
+
}
|
|
3221
|
+
/**
|
|
3222
|
+
* <p>Represents a request to create a multi-region endpoint (global-endpoint).</p>
|
|
3223
|
+
* @public
|
|
3224
|
+
*/
|
|
3225
|
+
export interface CreateMultiRegionEndpointRequest {
|
|
3226
|
+
/**
|
|
3227
|
+
* <p>The name of the multi-region endpoint (global-endpoint).</p>
|
|
3228
|
+
* @public
|
|
3229
|
+
*/
|
|
3230
|
+
EndpointName: string | undefined;
|
|
3231
|
+
/**
|
|
3232
|
+
* <p>Contains details of a multi-region endpoint (global-endpoint) being created.</p>
|
|
3233
|
+
* @public
|
|
3234
|
+
*/
|
|
3235
|
+
Details: Details | undefined;
|
|
3236
|
+
/**
|
|
3237
|
+
* <p>An array of objects that define the tags (keys and values) to associate with the multi-region endpoint (global-endpoint).</p>
|
|
3238
|
+
* @public
|
|
3239
|
+
*/
|
|
3240
|
+
Tags?: Tag[] | undefined;
|
|
3241
|
+
}
|
|
3242
|
+
/**
|
|
3243
|
+
* @public
|
|
3244
|
+
* @enum
|
|
3245
|
+
*/
|
|
3246
|
+
export declare const Status: {
|
|
3247
|
+
readonly CREATING: "CREATING";
|
|
3248
|
+
readonly DELETING: "DELETING";
|
|
3249
|
+
readonly FAILED: "FAILED";
|
|
3250
|
+
readonly READY: "READY";
|
|
3251
|
+
};
|
|
3252
|
+
/**
|
|
3253
|
+
* @public
|
|
3254
|
+
*/
|
|
3255
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
3256
|
+
/**
|
|
3257
|
+
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
3258
|
+
* fails.</p>
|
|
3259
|
+
* @public
|
|
3260
|
+
*/
|
|
3261
|
+
export interface CreateMultiRegionEndpointResponse {
|
|
3262
|
+
/**
|
|
3263
|
+
* <p>A status of the multi-region endpoint (global-endpoint) right after the create request.</p>
|
|
3264
|
+
* <ul>
|
|
3265
|
+
* <li>
|
|
3266
|
+
* <p>
|
|
3267
|
+
* <code>CREATING</code> – The resource is being provisioned.</p>
|
|
3268
|
+
* </li>
|
|
3269
|
+
* <li>
|
|
3270
|
+
* <p>
|
|
3271
|
+
* <code>READY</code> – The resource is ready to use.</p>
|
|
3272
|
+
* </li>
|
|
3273
|
+
* <li>
|
|
3274
|
+
* <p>
|
|
3275
|
+
* <code>FAILED</code> – The resource failed to be provisioned.</p>
|
|
3276
|
+
* </li>
|
|
3277
|
+
* <li>
|
|
3278
|
+
* <p>
|
|
3279
|
+
* <code>DELETING</code> – The resource is being deleted as requested.</p>
|
|
3280
|
+
* </li>
|
|
3281
|
+
* </ul>
|
|
3282
|
+
* @public
|
|
3283
|
+
*/
|
|
3284
|
+
Status?: Status | undefined;
|
|
3285
|
+
/**
|
|
3286
|
+
* <p>The ID of the multi-region endpoint (global-endpoint).</p>
|
|
3287
|
+
* @public
|
|
3288
|
+
*/
|
|
3289
|
+
EndpointId?: string | undefined;
|
|
3290
|
+
}
|
|
2851
3291
|
/**
|
|
2852
3292
|
* <p>Contains information about a custom verification email template.</p>
|
|
2853
3293
|
* @public
|
|
@@ -3259,6 +3699,47 @@ export interface DeleteEmailTemplateRequest {
|
|
|
3259
3699
|
*/
|
|
3260
3700
|
export interface DeleteEmailTemplateResponse {
|
|
3261
3701
|
}
|
|
3702
|
+
/**
|
|
3703
|
+
* <p>Represents a request to delete a multi-region endpoint (global-endpoint).</p>
|
|
3704
|
+
* @public
|
|
3705
|
+
*/
|
|
3706
|
+
export interface DeleteMultiRegionEndpointRequest {
|
|
3707
|
+
/**
|
|
3708
|
+
* <p>The name of the multi-region endpoint (global-endpoint) to be deleted.</p>
|
|
3709
|
+
* @public
|
|
3710
|
+
*/
|
|
3711
|
+
EndpointName: string | undefined;
|
|
3712
|
+
}
|
|
3713
|
+
/**
|
|
3714
|
+
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
3715
|
+
* fails.</p>
|
|
3716
|
+
* @public
|
|
3717
|
+
*/
|
|
3718
|
+
export interface DeleteMultiRegionEndpointResponse {
|
|
3719
|
+
/**
|
|
3720
|
+
* <p>A status of the multi-region endpoint (global-endpoint) right after the delete request.</p>
|
|
3721
|
+
* <ul>
|
|
3722
|
+
* <li>
|
|
3723
|
+
* <p>
|
|
3724
|
+
* <code>CREATING</code> – The resource is being provisioned.</p>
|
|
3725
|
+
* </li>
|
|
3726
|
+
* <li>
|
|
3727
|
+
* <p>
|
|
3728
|
+
* <code>READY</code> – The resource is ready to use.</p>
|
|
3729
|
+
* </li>
|
|
3730
|
+
* <li>
|
|
3731
|
+
* <p>
|
|
3732
|
+
* <code>FAILED</code> – The resource failed to be provisioned.</p>
|
|
3733
|
+
* </li>
|
|
3734
|
+
* <li>
|
|
3735
|
+
* <p>
|
|
3736
|
+
* <code>DELETING</code> – The resource is being deleted as requested.</p>
|
|
3737
|
+
* </li>
|
|
3738
|
+
* </ul>
|
|
3739
|
+
* @public
|
|
3740
|
+
*/
|
|
3741
|
+
Status?: Status | undefined;
|
|
3742
|
+
}
|
|
3262
3743
|
/**
|
|
3263
3744
|
* <p>A request to remove an email address from the suppression list for your
|
|
3264
3745
|
* account.</p>
|
|
@@ -4699,6 +5180,11 @@ export declare const VerificationError: {
|
|
|
4699
5180
|
readonly DNS_SERVER_ERROR: "DNS_SERVER_ERROR";
|
|
4700
5181
|
readonly HOST_NOT_FOUND: "HOST_NOT_FOUND";
|
|
4701
5182
|
readonly INVALID_VALUE: "INVALID_VALUE";
|
|
5183
|
+
readonly REPLICATION_ACCESS_DENIED: "REPLICATION_ACCESS_DENIED";
|
|
5184
|
+
readonly REPLICATION_PRIMARY_BYO_DKIM_NOT_SUPPORTED: "REPLICATION_PRIMARY_BYO_DKIM_NOT_SUPPORTED";
|
|
5185
|
+
readonly REPLICATION_PRIMARY_INVALID_REGION: "REPLICATION_PRIMARY_INVALID_REGION";
|
|
5186
|
+
readonly REPLICATION_PRIMARY_NOT_FOUND: "REPLICATION_PRIMARY_NOT_FOUND";
|
|
5187
|
+
readonly REPLICATION_REPLICA_AS_PRIMARY_NOT_SUPPORTED: "REPLICATION_REPLICA_AS_PRIMARY_NOT_SUPPORTED";
|
|
4702
5188
|
readonly SERVICE_ERROR: "SERVICE_ERROR";
|
|
4703
5189
|
readonly TYPE_NOT_FOUND: "TYPE_NOT_FOUND";
|
|
4704
5190
|
};
|
|
@@ -4776,6 +5262,41 @@ export interface VerificationInfo {
|
|
|
4776
5262
|
* <code>DNS_SERVER_ERROR</code> – The DNS server encountered an issue and
|
|
4777
5263
|
* was unable to complete the request.</p>
|
|
4778
5264
|
* </li>
|
|
5265
|
+
* <li>
|
|
5266
|
+
* <p>
|
|
5267
|
+
* <code>REPLICATION_ACCESS_DENIED</code> – The verification failed because the user does not
|
|
5268
|
+
* have the required permissions to replicate the DKIM key from the primary region. Ensure you have the
|
|
5269
|
+
* necessary permissions in both primary and replica regions.
|
|
5270
|
+
* </p>
|
|
5271
|
+
* </li>
|
|
5272
|
+
* <li>
|
|
5273
|
+
* <p>
|
|
5274
|
+
* <code>REPLICATION_PRIMARY_NOT_FOUND</code> – The verification failed because no corresponding
|
|
5275
|
+
* identity was found in the specified primary region. Ensure the identity exists in the primary region
|
|
5276
|
+
* before attempting replication.
|
|
5277
|
+
* </p>
|
|
5278
|
+
* </li>
|
|
5279
|
+
* <li>
|
|
5280
|
+
* <p>
|
|
5281
|
+
* <code>REPLICATION_PRIMARY_BYO_DKIM_NOT_SUPPORTED</code> – The verification failed because the
|
|
5282
|
+
* identity in the primary region is configured with Bring Your Own DKIM (BYODKIM). DKIM key
|
|
5283
|
+
* replication is only supported for identities using Easy DKIM.
|
|
5284
|
+
* </p>
|
|
5285
|
+
* </li>
|
|
5286
|
+
* <li>
|
|
5287
|
+
* <p>
|
|
5288
|
+
* <code>REPLICATION_REPLICA_AS_PRIMARY_NOT_SUPPORTED</code> – The verification failed because
|
|
5289
|
+
* the specified primary identity is a replica of another identity, and multi-level replication is not
|
|
5290
|
+
* supported; the primary identity must be a non-replica identity.
|
|
5291
|
+
* </p>
|
|
5292
|
+
* </li>
|
|
5293
|
+
* <li>
|
|
5294
|
+
* <p>
|
|
5295
|
+
* <code>REPLICATION_PRIMARY_INVALID_REGION</code> – The verification failed due to an invalid
|
|
5296
|
+
* primary region specified. Ensure you provide a valid AWS region where Amazon SES is available and different
|
|
5297
|
+
* from the replica region.
|
|
5298
|
+
* </p>
|
|
5299
|
+
* </li>
|
|
4779
5300
|
* </ul>
|
|
4780
5301
|
* @public
|
|
4781
5302
|
*/
|
|
@@ -5071,59 +5592,136 @@ export interface GetImportJobResponse {
|
|
|
5071
5592
|
*/
|
|
5072
5593
|
ProcessedRecordsCount?: number | undefined;
|
|
5073
5594
|
/**
|
|
5074
|
-
* <p>The number of records that failed processing because of invalid input or other
|
|
5075
|
-
* reasons.</p>
|
|
5595
|
+
* <p>The number of records that failed processing because of invalid input or other
|
|
5596
|
+
* reasons.</p>
|
|
5597
|
+
* @public
|
|
5598
|
+
*/
|
|
5599
|
+
FailedRecordsCount?: number | undefined;
|
|
5600
|
+
}
|
|
5601
|
+
/**
|
|
5602
|
+
* <p>A request to return information about a message.</p>
|
|
5603
|
+
* @public
|
|
5604
|
+
*/
|
|
5605
|
+
export interface GetMessageInsightsRequest {
|
|
5606
|
+
/**
|
|
5607
|
+
* <p>
|
|
5608
|
+
* A <code>MessageId</code> is a unique identifier for a message, and is
|
|
5609
|
+
* returned when sending emails through Amazon SES.
|
|
5610
|
+
* </p>
|
|
5611
|
+
* @public
|
|
5612
|
+
*/
|
|
5613
|
+
MessageId: string | undefined;
|
|
5614
|
+
}
|
|
5615
|
+
/**
|
|
5616
|
+
* <p>Information about a message.</p>
|
|
5617
|
+
* @public
|
|
5618
|
+
*/
|
|
5619
|
+
export interface GetMessageInsightsResponse {
|
|
5620
|
+
/**
|
|
5621
|
+
* <p>A unique identifier for the message.</p>
|
|
5622
|
+
* @public
|
|
5623
|
+
*/
|
|
5624
|
+
MessageId?: string | undefined;
|
|
5625
|
+
/**
|
|
5626
|
+
* <p>The from address used to send the message.</p>
|
|
5627
|
+
* @public
|
|
5628
|
+
*/
|
|
5629
|
+
FromEmailAddress?: string | undefined;
|
|
5630
|
+
/**
|
|
5631
|
+
* <p>The subject line of the message.</p>
|
|
5632
|
+
* @public
|
|
5633
|
+
*/
|
|
5634
|
+
Subject?: string | undefined;
|
|
5635
|
+
/**
|
|
5636
|
+
* <p>
|
|
5637
|
+
* A list of tags, in the form of name/value pairs, that were applied to the email you sent, along with Amazon SES
|
|
5638
|
+
* <a href="https://docs.aws.amazon.com/ses/latest/dg/monitor-using-event-publishing.html">Auto-Tags</a>.
|
|
5639
|
+
* </p>
|
|
5640
|
+
* @public
|
|
5641
|
+
*/
|
|
5642
|
+
EmailTags?: MessageTag[] | undefined;
|
|
5643
|
+
/**
|
|
5644
|
+
* <p>A set of insights associated with the message.</p>
|
|
5645
|
+
* @public
|
|
5646
|
+
*/
|
|
5647
|
+
Insights?: EmailInsights[] | undefined;
|
|
5648
|
+
}
|
|
5649
|
+
/**
|
|
5650
|
+
* <p>Represents a request to display the multi-region endpoint (global-endpoint).</p>
|
|
5651
|
+
* @public
|
|
5652
|
+
*/
|
|
5653
|
+
export interface GetMultiRegionEndpointRequest {
|
|
5654
|
+
/**
|
|
5655
|
+
* <p>The name of the multi-region endpoint (global-endpoint).</p>
|
|
5076
5656
|
* @public
|
|
5077
5657
|
*/
|
|
5078
|
-
|
|
5658
|
+
EndpointName: string | undefined;
|
|
5079
5659
|
}
|
|
5080
5660
|
/**
|
|
5081
|
-
* <p>
|
|
5661
|
+
* <p>An object which contains an AWS-Region and routing status.</p>
|
|
5082
5662
|
* @public
|
|
5083
5663
|
*/
|
|
5084
|
-
export interface
|
|
5664
|
+
export interface Route {
|
|
5085
5665
|
/**
|
|
5086
|
-
* <p>
|
|
5087
|
-
* A <code>MessageId</code> is a unique identifier for a message, and is
|
|
5088
|
-
* returned when sending emails through Amazon SES.
|
|
5089
|
-
* </p>
|
|
5666
|
+
* <p>The name of an AWS-Region.</p>
|
|
5090
5667
|
* @public
|
|
5091
5668
|
*/
|
|
5092
|
-
|
|
5669
|
+
Region: string | undefined;
|
|
5093
5670
|
}
|
|
5094
5671
|
/**
|
|
5095
|
-
* <p>
|
|
5672
|
+
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
5673
|
+
* fails.</p>
|
|
5096
5674
|
* @public
|
|
5097
5675
|
*/
|
|
5098
|
-
export interface
|
|
5676
|
+
export interface GetMultiRegionEndpointResponse {
|
|
5099
5677
|
/**
|
|
5100
|
-
* <p>
|
|
5678
|
+
* <p>The name of the multi-region endpoint (global-endpoint).</p>
|
|
5101
5679
|
* @public
|
|
5102
5680
|
*/
|
|
5103
|
-
|
|
5681
|
+
EndpointName?: string | undefined;
|
|
5104
5682
|
/**
|
|
5105
|
-
* <p>The
|
|
5683
|
+
* <p>The ID of the multi-region endpoint (global-endpoint).</p>
|
|
5106
5684
|
* @public
|
|
5107
5685
|
*/
|
|
5108
|
-
|
|
5686
|
+
EndpointId?: string | undefined;
|
|
5109
5687
|
/**
|
|
5110
|
-
* <p>
|
|
5688
|
+
* <p>Contains routes information for the multi-region endpoint (global-endpoint).</p>
|
|
5111
5689
|
* @public
|
|
5112
5690
|
*/
|
|
5113
|
-
|
|
5691
|
+
Routes?: Route[] | undefined;
|
|
5114
5692
|
/**
|
|
5115
|
-
* <p>
|
|
5116
|
-
*
|
|
5117
|
-
* <
|
|
5118
|
-
*
|
|
5693
|
+
* <p>The status of the multi-region endpoint (global-endpoint).</p>
|
|
5694
|
+
* <ul>
|
|
5695
|
+
* <li>
|
|
5696
|
+
* <p>
|
|
5697
|
+
* <code>CREATING</code> – The resource is being provisioned.</p>
|
|
5698
|
+
* </li>
|
|
5699
|
+
* <li>
|
|
5700
|
+
* <p>
|
|
5701
|
+
* <code>READY</code> – The resource is ready to use.</p>
|
|
5702
|
+
* </li>
|
|
5703
|
+
* <li>
|
|
5704
|
+
* <p>
|
|
5705
|
+
* <code>FAILED</code> – The resource failed to be provisioned.</p>
|
|
5706
|
+
* </li>
|
|
5707
|
+
* <li>
|
|
5708
|
+
* <p>
|
|
5709
|
+
* <code>DELETING</code> – The resource is being deleted as requested.</p>
|
|
5710
|
+
* </li>
|
|
5711
|
+
* </ul>
|
|
5119
5712
|
* @public
|
|
5120
5713
|
*/
|
|
5121
|
-
|
|
5714
|
+
Status?: Status | undefined;
|
|
5122
5715
|
/**
|
|
5123
|
-
* <p>
|
|
5716
|
+
* <p>The time stamp of when the multi-region endpoint (global-endpoint) was created.</p>
|
|
5124
5717
|
* @public
|
|
5125
5718
|
*/
|
|
5126
|
-
|
|
5719
|
+
CreatedTimestamp?: Date | undefined;
|
|
5720
|
+
/**
|
|
5721
|
+
* <p>The time stamp of when the multi-region endpoint (global-endpoint) was last updated.</p>
|
|
5722
|
+
* @public
|
|
5723
|
+
*/
|
|
5724
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
5127
5725
|
}
|
|
5128
5726
|
/**
|
|
5129
5727
|
* <p>A request to retrieve information about an email address that's on the suppression
|
|
@@ -5883,6 +6481,101 @@ export interface ListManagementOptions {
|
|
|
5883
6481
|
*/
|
|
5884
6482
|
TopicName?: string | undefined;
|
|
5885
6483
|
}
|
|
6484
|
+
/**
|
|
6485
|
+
* <p>Represents a request to list all the multi-region endpoints (global-endpoints)
|
|
6486
|
+
* whose primary region is the AWS-Region where operation is executed.
|
|
6487
|
+
* </p>
|
|
6488
|
+
* @public
|
|
6489
|
+
*/
|
|
6490
|
+
export interface ListMultiRegionEndpointsRequest {
|
|
6491
|
+
/**
|
|
6492
|
+
* <p>A token returned from a previous call to <code>ListMultiRegionEndpoints</code> to indicate
|
|
6493
|
+
* the position in the list of multi-region endpoints (global-endpoints).</p>
|
|
6494
|
+
* @public
|
|
6495
|
+
*/
|
|
6496
|
+
NextToken?: string | undefined;
|
|
6497
|
+
/**
|
|
6498
|
+
* <p>The number of results to show in a single call to <code>ListMultiRegionEndpoints</code>.
|
|
6499
|
+
* If the number of results is larger than the number you specified in this parameter,
|
|
6500
|
+
* the response includes a <code>NextToken</code> element
|
|
6501
|
+
* that you can use to retrieve the next page of results.
|
|
6502
|
+
* </p>
|
|
6503
|
+
* @public
|
|
6504
|
+
*/
|
|
6505
|
+
PageSize?: number | undefined;
|
|
6506
|
+
}
|
|
6507
|
+
/**
|
|
6508
|
+
* <p>An object that contains multi-region endpoint (global-endpoint) properties.</p>
|
|
6509
|
+
* @public
|
|
6510
|
+
*/
|
|
6511
|
+
export interface MultiRegionEndpoint {
|
|
6512
|
+
/**
|
|
6513
|
+
* <p>The name of the multi-region endpoint (global-endpoint).</p>
|
|
6514
|
+
* @public
|
|
6515
|
+
*/
|
|
6516
|
+
EndpointName?: string | undefined;
|
|
6517
|
+
/**
|
|
6518
|
+
* <p>The status of the multi-region endpoint (global-endpoint).</p>
|
|
6519
|
+
* <ul>
|
|
6520
|
+
* <li>
|
|
6521
|
+
* <p>
|
|
6522
|
+
* <code>CREATING</code> – The resource is being provisioned.</p>
|
|
6523
|
+
* </li>
|
|
6524
|
+
* <li>
|
|
6525
|
+
* <p>
|
|
6526
|
+
* <code>READY</code> – The resource is ready to use.</p>
|
|
6527
|
+
* </li>
|
|
6528
|
+
* <li>
|
|
6529
|
+
* <p>
|
|
6530
|
+
* <code>FAILED</code> – The resource failed to be provisioned.</p>
|
|
6531
|
+
* </li>
|
|
6532
|
+
* <li>
|
|
6533
|
+
* <p>
|
|
6534
|
+
* <code>DELETING</code> – The resource is being deleted as requested.</p>
|
|
6535
|
+
* </li>
|
|
6536
|
+
* </ul>
|
|
6537
|
+
* @public
|
|
6538
|
+
*/
|
|
6539
|
+
Status?: Status | undefined;
|
|
6540
|
+
/**
|
|
6541
|
+
* <p>The ID of the multi-region endpoint (global-endpoint).</p>
|
|
6542
|
+
* @public
|
|
6543
|
+
*/
|
|
6544
|
+
EndpointId?: string | undefined;
|
|
6545
|
+
/**
|
|
6546
|
+
* <p>Primary and secondary regions between which multi-region endpoint splits sending traffic.</p>
|
|
6547
|
+
* @public
|
|
6548
|
+
*/
|
|
6549
|
+
Regions?: string[] | undefined;
|
|
6550
|
+
/**
|
|
6551
|
+
* <p>The time stamp of when the multi-region endpoint (global-endpoint) was created.</p>
|
|
6552
|
+
* @public
|
|
6553
|
+
*/
|
|
6554
|
+
CreatedTimestamp?: Date | undefined;
|
|
6555
|
+
/**
|
|
6556
|
+
* <p>The time stamp of when the multi-region endpoint (global-endpoint) was last updated.</p>
|
|
6557
|
+
* @public
|
|
6558
|
+
*/
|
|
6559
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
6560
|
+
}
|
|
6561
|
+
/**
|
|
6562
|
+
* <p>The following elements are returned by the service.</p>
|
|
6563
|
+
* @public
|
|
6564
|
+
*/
|
|
6565
|
+
export interface ListMultiRegionEndpointsResponse {
|
|
6566
|
+
/**
|
|
6567
|
+
* <p>An array that contains key multi-region endpoint (global-endpoint) properties.</p>
|
|
6568
|
+
* @public
|
|
6569
|
+
*/
|
|
6570
|
+
MultiRegionEndpoints?: MultiRegionEndpoint[] | undefined;
|
|
6571
|
+
/**
|
|
6572
|
+
* <p>A token indicating that there are additional multi-region endpoints (global-endpoints) available to be listed.
|
|
6573
|
+
* Pass this token to a subsequent <code>ListMultiRegionEndpoints</code> call to retrieve the
|
|
6574
|
+
* next page.</p>
|
|
6575
|
+
* @public
|
|
6576
|
+
*/
|
|
6577
|
+
NextToken?: string | undefined;
|
|
6578
|
+
}
|
|
5886
6579
|
/**
|
|
5887
6580
|
* @public
|
|
5888
6581
|
* @enum
|
|
@@ -6470,197 +7163,6 @@ export interface PutConfigurationSetVdmOptionsRequest {
|
|
|
6470
7163
|
*/
|
|
6471
7164
|
export interface PutConfigurationSetVdmOptionsResponse {
|
|
6472
7165
|
}
|
|
6473
|
-
/**
|
|
6474
|
-
* <p>A request to move a dedicated IP address to a dedicated IP pool.</p>
|
|
6475
|
-
* @public
|
|
6476
|
-
*/
|
|
6477
|
-
export interface PutDedicatedIpInPoolRequest {
|
|
6478
|
-
/**
|
|
6479
|
-
* <p>The IP address that you want to move to the dedicated IP pool. The value you specify
|
|
6480
|
-
* has to be a dedicated IP address that's associated with your Amazon Web Services account.</p>
|
|
6481
|
-
* @public
|
|
6482
|
-
*/
|
|
6483
|
-
Ip: string | undefined;
|
|
6484
|
-
/**
|
|
6485
|
-
* <p>The name of the IP pool that you want to add the dedicated IP address to. You have to
|
|
6486
|
-
* specify an IP pool that already exists.</p>
|
|
6487
|
-
* @public
|
|
6488
|
-
*/
|
|
6489
|
-
DestinationPoolName: string | undefined;
|
|
6490
|
-
}
|
|
6491
|
-
/**
|
|
6492
|
-
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
6493
|
-
* fails.</p>
|
|
6494
|
-
* @public
|
|
6495
|
-
*/
|
|
6496
|
-
export interface PutDedicatedIpInPoolResponse {
|
|
6497
|
-
}
|
|
6498
|
-
/**
|
|
6499
|
-
* <p>A request to convert a dedicated IP pool to a different scaling mode.</p>
|
|
6500
|
-
* @public
|
|
6501
|
-
*/
|
|
6502
|
-
export interface PutDedicatedIpPoolScalingAttributesRequest {
|
|
6503
|
-
/**
|
|
6504
|
-
* <p>The name of the dedicated IP pool.</p>
|
|
6505
|
-
* @public
|
|
6506
|
-
*/
|
|
6507
|
-
PoolName: string | undefined;
|
|
6508
|
-
/**
|
|
6509
|
-
* <p>The scaling mode to apply to the dedicated IP pool.</p>
|
|
6510
|
-
* <note>
|
|
6511
|
-
* <p>Changing the scaling mode from <code>MANAGED</code> to <code>STANDARD</code> is not supported.</p>
|
|
6512
|
-
* </note>
|
|
6513
|
-
* @public
|
|
6514
|
-
*/
|
|
6515
|
-
ScalingMode: ScalingMode | undefined;
|
|
6516
|
-
}
|
|
6517
|
-
/**
|
|
6518
|
-
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
6519
|
-
* fails.</p>
|
|
6520
|
-
* @public
|
|
6521
|
-
*/
|
|
6522
|
-
export interface PutDedicatedIpPoolScalingAttributesResponse {
|
|
6523
|
-
}
|
|
6524
|
-
/**
|
|
6525
|
-
* <p>A request to change the warm-up attributes for a dedicated IP address. This operation
|
|
6526
|
-
* is useful when you want to resume the warm-up process for an existing IP address.</p>
|
|
6527
|
-
* @public
|
|
6528
|
-
*/
|
|
6529
|
-
export interface PutDedicatedIpWarmupAttributesRequest {
|
|
6530
|
-
/**
|
|
6531
|
-
* <p>The dedicated IP address that you want to update the warm-up attributes for.</p>
|
|
6532
|
-
* @public
|
|
6533
|
-
*/
|
|
6534
|
-
Ip: string | undefined;
|
|
6535
|
-
/**
|
|
6536
|
-
* <p>The warm-up percentage that you want to associate with the dedicated IP
|
|
6537
|
-
* address.</p>
|
|
6538
|
-
* @public
|
|
6539
|
-
*/
|
|
6540
|
-
WarmupPercentage: number | undefined;
|
|
6541
|
-
}
|
|
6542
|
-
/**
|
|
6543
|
-
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
6544
|
-
* fails.</p>
|
|
6545
|
-
* @public
|
|
6546
|
-
*/
|
|
6547
|
-
export interface PutDedicatedIpWarmupAttributesResponse {
|
|
6548
|
-
}
|
|
6549
|
-
/**
|
|
6550
|
-
* <p>Enable or disable the Deliverability dashboard. When you enable the Deliverability dashboard, you gain
|
|
6551
|
-
* access to reputation, deliverability, and other metrics for the domains that you use to
|
|
6552
|
-
* send email using Amazon SES API v2. You also gain the ability to perform predictive inbox placement tests.</p>
|
|
6553
|
-
* <p>When you use the Deliverability dashboard, you pay a monthly subscription charge, in addition
|
|
6554
|
-
* to any other fees that you accrue by using Amazon SES and other Amazon Web Services services. For more
|
|
6555
|
-
* information about the features and cost of a Deliverability dashboard subscription, see <a href="http://aws.amazon.com/pinpoint/pricing/">Amazon Pinpoint Pricing</a>.</p>
|
|
6556
|
-
* @public
|
|
6557
|
-
*/
|
|
6558
|
-
export interface PutDeliverabilityDashboardOptionRequest {
|
|
6559
|
-
/**
|
|
6560
|
-
* <p>Specifies whether to enable the Deliverability dashboard. To enable the dashboard, set this
|
|
6561
|
-
* value to <code>true</code>.</p>
|
|
6562
|
-
* @public
|
|
6563
|
-
*/
|
|
6564
|
-
DashboardEnabled: boolean | undefined;
|
|
6565
|
-
/**
|
|
6566
|
-
* <p>An array of objects, one for each verified domain that you use to send email and
|
|
6567
|
-
* enabled the Deliverability dashboard for.</p>
|
|
6568
|
-
* @public
|
|
6569
|
-
*/
|
|
6570
|
-
SubscribedDomains?: DomainDeliverabilityTrackingOption[] | undefined;
|
|
6571
|
-
}
|
|
6572
|
-
/**
|
|
6573
|
-
* <p>A response that indicates whether the Deliverability dashboard is enabled.</p>
|
|
6574
|
-
* @public
|
|
6575
|
-
*/
|
|
6576
|
-
export interface PutDeliverabilityDashboardOptionResponse {
|
|
6577
|
-
}
|
|
6578
|
-
/**
|
|
6579
|
-
* <p>A request to associate a configuration set with an email identity.</p>
|
|
6580
|
-
* @public
|
|
6581
|
-
*/
|
|
6582
|
-
export interface PutEmailIdentityConfigurationSetAttributesRequest {
|
|
6583
|
-
/**
|
|
6584
|
-
* <p>The email address or domain to associate with a configuration set.</p>
|
|
6585
|
-
* @public
|
|
6586
|
-
*/
|
|
6587
|
-
EmailIdentity: string | undefined;
|
|
6588
|
-
/**
|
|
6589
|
-
* <p>The configuration set to associate with an email identity.</p>
|
|
6590
|
-
* @public
|
|
6591
|
-
*/
|
|
6592
|
-
ConfigurationSetName?: string | undefined;
|
|
6593
|
-
}
|
|
6594
|
-
/**
|
|
6595
|
-
* <p>If the action is successful, the service sends back an HTTP 200 response with an empty
|
|
6596
|
-
* HTTP body.</p>
|
|
6597
|
-
* @public
|
|
6598
|
-
*/
|
|
6599
|
-
export interface PutEmailIdentityConfigurationSetAttributesResponse {
|
|
6600
|
-
}
|
|
6601
|
-
/**
|
|
6602
|
-
* <p>A request to enable or disable DKIM signing of email that you send from an email
|
|
6603
|
-
* identity.</p>
|
|
6604
|
-
* @public
|
|
6605
|
-
*/
|
|
6606
|
-
export interface PutEmailIdentityDkimAttributesRequest {
|
|
6607
|
-
/**
|
|
6608
|
-
* <p>The email identity.</p>
|
|
6609
|
-
* @public
|
|
6610
|
-
*/
|
|
6611
|
-
EmailIdentity: string | undefined;
|
|
6612
|
-
/**
|
|
6613
|
-
* <p>Sets the DKIM signing configuration for the identity.</p>
|
|
6614
|
-
* <p>When you set this value <code>true</code>, then the messages that are sent from the
|
|
6615
|
-
* identity are signed using DKIM. If you set this value to <code>false</code>, your
|
|
6616
|
-
* messages are sent without DKIM signing.</p>
|
|
6617
|
-
* @public
|
|
6618
|
-
*/
|
|
6619
|
-
SigningEnabled?: boolean | undefined;
|
|
6620
|
-
}
|
|
6621
|
-
/**
|
|
6622
|
-
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
6623
|
-
* fails.</p>
|
|
6624
|
-
* @public
|
|
6625
|
-
*/
|
|
6626
|
-
export interface PutEmailIdentityDkimAttributesResponse {
|
|
6627
|
-
}
|
|
6628
|
-
/**
|
|
6629
|
-
* <p>A request to change the DKIM attributes for an email identity.</p>
|
|
6630
|
-
* @public
|
|
6631
|
-
*/
|
|
6632
|
-
export interface PutEmailIdentityDkimSigningAttributesRequest {
|
|
6633
|
-
/**
|
|
6634
|
-
* <p>The email identity.</p>
|
|
6635
|
-
* @public
|
|
6636
|
-
*/
|
|
6637
|
-
EmailIdentity: string | undefined;
|
|
6638
|
-
/**
|
|
6639
|
-
* <p>The method to use to configure DKIM for the identity. There are the following possible
|
|
6640
|
-
* values:</p>
|
|
6641
|
-
* <ul>
|
|
6642
|
-
* <li>
|
|
6643
|
-
* <p>
|
|
6644
|
-
* <code>AWS_SES</code> – Configure DKIM for the identity by using <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy
|
|
6645
|
-
* DKIM</a>.</p>
|
|
6646
|
-
* </li>
|
|
6647
|
-
* <li>
|
|
6648
|
-
* <p>
|
|
6649
|
-
* <code>EXTERNAL</code> – Configure DKIM for the identity by using Bring
|
|
6650
|
-
* Your Own DKIM (BYODKIM).</p>
|
|
6651
|
-
* </li>
|
|
6652
|
-
* </ul>
|
|
6653
|
-
* @public
|
|
6654
|
-
*/
|
|
6655
|
-
SigningAttributesOrigin: DkimSigningAttributesOrigin | undefined;
|
|
6656
|
-
/**
|
|
6657
|
-
* <p>An object that contains information about the private key and selector that you want
|
|
6658
|
-
* to use to configure DKIM for the identity for Bring Your Own DKIM (BYODKIM) for the
|
|
6659
|
-
* identity, or, configures the key length to be used for <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy DKIM</a>.</p>
|
|
6660
|
-
* @public
|
|
6661
|
-
*/
|
|
6662
|
-
SigningAttributes?: DkimSigningAttributes | undefined;
|
|
6663
|
-
}
|
|
6664
7166
|
/**
|
|
6665
7167
|
* @internal
|
|
6666
7168
|
*/
|
|
@@ -6709,7 +7211,3 @@ export declare const GetMessageInsightsResponseFilterSensitiveLog: (obj: GetMess
|
|
|
6709
7211
|
* @internal
|
|
6710
7212
|
*/
|
|
6711
7213
|
export declare const PutAccountDetailsRequestFilterSensitiveLog: (obj: PutAccountDetailsRequest) => any;
|
|
6712
|
-
/**
|
|
6713
|
-
* @internal
|
|
6714
|
-
*/
|
|
6715
|
-
export declare const PutEmailIdentityDkimSigningAttributesRequestFilterSensitiveLog: (obj: PutEmailIdentityDkimSigningAttributesRequest) => any;
|