@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
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteMultiRegionEndpointRequest,
|
|
5
|
+
DeleteMultiRegionEndpointResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SESv2ClientResolvedConfig,
|
|
11
|
+
} from "../SESv2Client";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteMultiRegionEndpointCommandInput
|
|
15
|
+
extends DeleteMultiRegionEndpointRequest {}
|
|
16
|
+
export interface DeleteMultiRegionEndpointCommandOutput
|
|
17
|
+
extends DeleteMultiRegionEndpointResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteMultiRegionEndpointCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteMultiRegionEndpointCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteMultiRegionEndpointCommandInput,
|
|
24
|
+
DeleteMultiRegionEndpointCommandOutput,
|
|
25
|
+
SESv2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DeleteMultiRegionEndpointCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteMultiRegionEndpointCommandInput,
|
|
33
|
+
DeleteMultiRegionEndpointCommandOutput,
|
|
34
|
+
SESv2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteMultiRegionEndpointCommand extends DeleteMultiRegionEndpointCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteMultiRegionEndpointRequest;
|
|
44
|
+
output: DeleteMultiRegionEndpointResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteMultiRegionEndpointCommandInput;
|
|
48
|
+
output: DeleteMultiRegionEndpointCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetMultiRegionEndpointRequest,
|
|
5
|
+
GetMultiRegionEndpointResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SESv2ClientResolvedConfig,
|
|
11
|
+
} from "../SESv2Client";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetMultiRegionEndpointCommandInput
|
|
15
|
+
extends GetMultiRegionEndpointRequest {}
|
|
16
|
+
export interface GetMultiRegionEndpointCommandOutput
|
|
17
|
+
extends GetMultiRegionEndpointResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetMultiRegionEndpointCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetMultiRegionEndpointCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetMultiRegionEndpointCommandInput,
|
|
24
|
+
GetMultiRegionEndpointCommandOutput,
|
|
25
|
+
SESv2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: GetMultiRegionEndpointCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetMultiRegionEndpointCommandInput,
|
|
33
|
+
GetMultiRegionEndpointCommandOutput,
|
|
34
|
+
SESv2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetMultiRegionEndpointCommand extends GetMultiRegionEndpointCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetMultiRegionEndpointRequest;
|
|
44
|
+
output: GetMultiRegionEndpointResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetMultiRegionEndpointCommandInput;
|
|
48
|
+
output: GetMultiRegionEndpointCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListMultiRegionEndpointsRequest,
|
|
5
|
+
ListMultiRegionEndpointsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SESv2ClientResolvedConfig,
|
|
11
|
+
} from "../SESv2Client";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListMultiRegionEndpointsCommandInput
|
|
15
|
+
extends ListMultiRegionEndpointsRequest {}
|
|
16
|
+
export interface ListMultiRegionEndpointsCommandOutput
|
|
17
|
+
extends ListMultiRegionEndpointsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListMultiRegionEndpointsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListMultiRegionEndpointsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListMultiRegionEndpointsCommandInput,
|
|
24
|
+
ListMultiRegionEndpointsCommandOutput,
|
|
25
|
+
SESv2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListMultiRegionEndpointsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListMultiRegionEndpointsCommandInput,
|
|
33
|
+
ListMultiRegionEndpointsCommandOutput,
|
|
34
|
+
SESv2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListMultiRegionEndpointsCommand extends ListMultiRegionEndpointsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListMultiRegionEndpointsRequest;
|
|
44
|
+
output: ListMultiRegionEndpointsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListMultiRegionEndpointsCommandInput;
|
|
48
|
+
output: ListMultiRegionEndpointsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
PutDedicatedIpPoolScalingAttributesRequest,
|
|
5
5
|
PutDedicatedIpPoolScalingAttributesResponse,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_1";
|
|
7
7
|
import {
|
|
8
8
|
ServiceInputTypes,
|
|
9
9
|
ServiceOutputTypes,
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
PutDedicatedIpWarmupAttributesRequest,
|
|
5
5
|
PutDedicatedIpWarmupAttributesResponse,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_1";
|
|
7
7
|
import {
|
|
8
8
|
ServiceInputTypes,
|
|
9
9
|
ServiceOutputTypes,
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
PutDeliverabilityDashboardOptionRequest,
|
|
5
5
|
PutDeliverabilityDashboardOptionResponse,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_1";
|
|
7
7
|
import {
|
|
8
8
|
ServiceInputTypes,
|
|
9
9
|
ServiceOutputTypes,
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
PutEmailIdentityConfigurationSetAttributesRequest,
|
|
5
5
|
PutEmailIdentityConfigurationSetAttributesResponse,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_1";
|
|
7
7
|
import {
|
|
8
8
|
ServiceInputTypes,
|
|
9
9
|
ServiceOutputTypes,
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
PutEmailIdentityDkimAttributesRequest,
|
|
5
5
|
PutEmailIdentityDkimAttributesResponse,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_1";
|
|
7
7
|
import {
|
|
8
8
|
ServiceInputTypes,
|
|
9
9
|
ServiceOutputTypes,
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
PutEmailIdentityDkimSigningAttributesRequest,
|
|
5
|
+
PutEmailIdentityDkimSigningAttributesResponse,
|
|
6
|
+
} from "../models/models_1";
|
|
5
7
|
import {
|
|
6
8
|
ServiceInputTypes,
|
|
7
9
|
ServiceOutputTypes,
|
|
@@ -12,6 +12,7 @@ export * from "./CreateEmailIdentityPolicyCommand";
|
|
|
12
12
|
export * from "./CreateEmailTemplateCommand";
|
|
13
13
|
export * from "./CreateExportJobCommand";
|
|
14
14
|
export * from "./CreateImportJobCommand";
|
|
15
|
+
export * from "./CreateMultiRegionEndpointCommand";
|
|
15
16
|
export * from "./DeleteConfigurationSetCommand";
|
|
16
17
|
export * from "./DeleteConfigurationSetEventDestinationCommand";
|
|
17
18
|
export * from "./DeleteContactCommand";
|
|
@@ -21,6 +22,7 @@ export * from "./DeleteDedicatedIpPoolCommand";
|
|
|
21
22
|
export * from "./DeleteEmailIdentityCommand";
|
|
22
23
|
export * from "./DeleteEmailIdentityPolicyCommand";
|
|
23
24
|
export * from "./DeleteEmailTemplateCommand";
|
|
25
|
+
export * from "./DeleteMultiRegionEndpointCommand";
|
|
24
26
|
export * from "./DeleteSuppressedDestinationCommand";
|
|
25
27
|
export * from "./GetAccountCommand";
|
|
26
28
|
export * from "./GetBlacklistReportsCommand";
|
|
@@ -42,6 +44,7 @@ export * from "./GetEmailTemplateCommand";
|
|
|
42
44
|
export * from "./GetExportJobCommand";
|
|
43
45
|
export * from "./GetImportJobCommand";
|
|
44
46
|
export * from "./GetMessageInsightsCommand";
|
|
47
|
+
export * from "./GetMultiRegionEndpointCommand";
|
|
45
48
|
export * from "./GetSuppressedDestinationCommand";
|
|
46
49
|
export * from "./ListConfigurationSetsCommand";
|
|
47
50
|
export * from "./ListContactListsCommand";
|
|
@@ -54,6 +57,7 @@ export * from "./ListEmailIdentitiesCommand";
|
|
|
54
57
|
export * from "./ListEmailTemplatesCommand";
|
|
55
58
|
export * from "./ListExportJobsCommand";
|
|
56
59
|
export * from "./ListImportJobsCommand";
|
|
60
|
+
export * from "./ListMultiRegionEndpointsCommand";
|
|
57
61
|
export * from "./ListRecommendationsCommand";
|
|
58
62
|
export * from "./ListSuppressedDestinationsCommand";
|
|
59
63
|
export * from "./ListTagsForResourceCommand";
|
|
@@ -494,6 +494,34 @@ export declare class SendingPausedException extends __BaseException {
|
|
|
494
494
|
opts: __ExceptionOptionType<SendingPausedException, __BaseException>
|
|
495
495
|
);
|
|
496
496
|
}
|
|
497
|
+
export declare const DkimSigningAttributesOrigin: {
|
|
498
|
+
readonly AWS_SES: "AWS_SES";
|
|
499
|
+
readonly AWS_SES_AF_SOUTH_1: "AWS_SES_AF_SOUTH_1";
|
|
500
|
+
readonly AWS_SES_AP_NORTHEAST_1: "AWS_SES_AP_NORTHEAST_1";
|
|
501
|
+
readonly AWS_SES_AP_NORTHEAST_2: "AWS_SES_AP_NORTHEAST_2";
|
|
502
|
+
readonly AWS_SES_AP_NORTHEAST_3: "AWS_SES_AP_NORTHEAST_3";
|
|
503
|
+
readonly AWS_SES_AP_SOUTHEAST_1: "AWS_SES_AP_SOUTHEAST_1";
|
|
504
|
+
readonly AWS_SES_AP_SOUTHEAST_2: "AWS_SES_AP_SOUTHEAST_2";
|
|
505
|
+
readonly AWS_SES_AP_SOUTHEAST_3: "AWS_SES_AP_SOUTHEAST_3";
|
|
506
|
+
readonly AWS_SES_AP_SOUTH_1: "AWS_SES_AP_SOUTH_1";
|
|
507
|
+
readonly AWS_SES_CA_CENTRAL_1: "AWS_SES_CA_CENTRAL_1";
|
|
508
|
+
readonly AWS_SES_EU_CENTRAL_1: "AWS_SES_EU_CENTRAL_1";
|
|
509
|
+
readonly AWS_SES_EU_NORTH_1: "AWS_SES_EU_NORTH_1";
|
|
510
|
+
readonly AWS_SES_EU_SOUTH_1: "AWS_SES_EU_SOUTH_1";
|
|
511
|
+
readonly AWS_SES_EU_WEST_1: "AWS_SES_EU_WEST_1";
|
|
512
|
+
readonly AWS_SES_EU_WEST_2: "AWS_SES_EU_WEST_2";
|
|
513
|
+
readonly AWS_SES_EU_WEST_3: "AWS_SES_EU_WEST_3";
|
|
514
|
+
readonly AWS_SES_IL_CENTRAL_1: "AWS_SES_IL_CENTRAL_1";
|
|
515
|
+
readonly AWS_SES_ME_SOUTH_1: "AWS_SES_ME_SOUTH_1";
|
|
516
|
+
readonly AWS_SES_SA_EAST_1: "AWS_SES_SA_EAST_1";
|
|
517
|
+
readonly AWS_SES_US_EAST_1: "AWS_SES_US_EAST_1";
|
|
518
|
+
readonly AWS_SES_US_EAST_2: "AWS_SES_US_EAST_2";
|
|
519
|
+
readonly AWS_SES_US_WEST_1: "AWS_SES_US_WEST_1";
|
|
520
|
+
readonly AWS_SES_US_WEST_2: "AWS_SES_US_WEST_2";
|
|
521
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
522
|
+
};
|
|
523
|
+
export type DkimSigningAttributesOrigin =
|
|
524
|
+
(typeof DkimSigningAttributesOrigin)[keyof typeof DkimSigningAttributesOrigin];
|
|
497
525
|
export declare const DkimSigningKeyLength: {
|
|
498
526
|
readonly RSA_1024_BIT: "RSA_1024_BIT";
|
|
499
527
|
readonly RSA_2048_BIT: "RSA_2048_BIT";
|
|
@@ -504,6 +532,7 @@ export interface DkimSigningAttributes {
|
|
|
504
532
|
DomainSigningSelector?: string | undefined;
|
|
505
533
|
DomainSigningPrivateKey?: string | undefined;
|
|
506
534
|
NextSigningKeyLength?: DkimSigningKeyLength | undefined;
|
|
535
|
+
DomainSigningAttributesOrigin?: DkimSigningAttributesOrigin | undefined;
|
|
507
536
|
}
|
|
508
537
|
export interface CreateEmailIdentityRequest {
|
|
509
538
|
EmailIdentity: string | undefined;
|
|
@@ -511,12 +540,6 @@ export interface CreateEmailIdentityRequest {
|
|
|
511
540
|
DkimSigningAttributes?: DkimSigningAttributes | undefined;
|
|
512
541
|
ConfigurationSetName?: string | undefined;
|
|
513
542
|
}
|
|
514
|
-
export declare const DkimSigningAttributesOrigin: {
|
|
515
|
-
readonly AWS_SES: "AWS_SES";
|
|
516
|
-
readonly EXTERNAL: "EXTERNAL";
|
|
517
|
-
};
|
|
518
|
-
export type DkimSigningAttributesOrigin =
|
|
519
|
-
(typeof DkimSigningAttributesOrigin)[keyof typeof DkimSigningAttributesOrigin];
|
|
520
543
|
export declare const DkimStatus: {
|
|
521
544
|
readonly FAILED: "FAILED";
|
|
522
545
|
readonly NOT_STARTED: "NOT_STARTED";
|
|
@@ -648,6 +671,28 @@ export interface CreateImportJobRequest {
|
|
|
648
671
|
export interface CreateImportJobResponse {
|
|
649
672
|
JobId?: string | undefined;
|
|
650
673
|
}
|
|
674
|
+
export interface RouteDetails {
|
|
675
|
+
Region: string | undefined;
|
|
676
|
+
}
|
|
677
|
+
export interface Details {
|
|
678
|
+
RoutesDetails: RouteDetails[] | undefined;
|
|
679
|
+
}
|
|
680
|
+
export interface CreateMultiRegionEndpointRequest {
|
|
681
|
+
EndpointName: string | undefined;
|
|
682
|
+
Details: Details | undefined;
|
|
683
|
+
Tags?: Tag[] | undefined;
|
|
684
|
+
}
|
|
685
|
+
export declare const Status: {
|
|
686
|
+
readonly CREATING: "CREATING";
|
|
687
|
+
readonly DELETING: "DELETING";
|
|
688
|
+
readonly FAILED: "FAILED";
|
|
689
|
+
readonly READY: "READY";
|
|
690
|
+
};
|
|
691
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
692
|
+
export interface CreateMultiRegionEndpointResponse {
|
|
693
|
+
Status?: Status | undefined;
|
|
694
|
+
EndpointId?: string | undefined;
|
|
695
|
+
}
|
|
651
696
|
export interface CustomVerificationEmailTemplateMetadata {
|
|
652
697
|
TemplateName?: string | undefined;
|
|
653
698
|
FromEmailAddress?: string | undefined;
|
|
@@ -730,6 +775,12 @@ export interface DeleteEmailTemplateRequest {
|
|
|
730
775
|
TemplateName: string | undefined;
|
|
731
776
|
}
|
|
732
777
|
export interface DeleteEmailTemplateResponse {}
|
|
778
|
+
export interface DeleteMultiRegionEndpointRequest {
|
|
779
|
+
EndpointName: string | undefined;
|
|
780
|
+
}
|
|
781
|
+
export interface DeleteMultiRegionEndpointResponse {
|
|
782
|
+
Status?: Status | undefined;
|
|
783
|
+
}
|
|
733
784
|
export interface DeleteSuppressedDestinationRequest {
|
|
734
785
|
EmailAddress: string | undefined;
|
|
735
786
|
}
|
|
@@ -1011,6 +1062,11 @@ export declare const VerificationError: {
|
|
|
1011
1062
|
readonly DNS_SERVER_ERROR: "DNS_SERVER_ERROR";
|
|
1012
1063
|
readonly HOST_NOT_FOUND: "HOST_NOT_FOUND";
|
|
1013
1064
|
readonly INVALID_VALUE: "INVALID_VALUE";
|
|
1065
|
+
readonly REPLICATION_ACCESS_DENIED: "REPLICATION_ACCESS_DENIED";
|
|
1066
|
+
readonly REPLICATION_PRIMARY_BYO_DKIM_NOT_SUPPORTED: "REPLICATION_PRIMARY_BYO_DKIM_NOT_SUPPORTED";
|
|
1067
|
+
readonly REPLICATION_PRIMARY_INVALID_REGION: "REPLICATION_PRIMARY_INVALID_REGION";
|
|
1068
|
+
readonly REPLICATION_PRIMARY_NOT_FOUND: "REPLICATION_PRIMARY_NOT_FOUND";
|
|
1069
|
+
readonly REPLICATION_REPLICA_AS_PRIMARY_NOT_SUPPORTED: "REPLICATION_REPLICA_AS_PRIMARY_NOT_SUPPORTED";
|
|
1014
1070
|
readonly SERVICE_ERROR: "SERVICE_ERROR";
|
|
1015
1071
|
readonly TYPE_NOT_FOUND: "TYPE_NOT_FOUND";
|
|
1016
1072
|
};
|
|
@@ -1099,6 +1155,20 @@ export interface GetMessageInsightsResponse {
|
|
|
1099
1155
|
EmailTags?: MessageTag[] | undefined;
|
|
1100
1156
|
Insights?: EmailInsights[] | undefined;
|
|
1101
1157
|
}
|
|
1158
|
+
export interface GetMultiRegionEndpointRequest {
|
|
1159
|
+
EndpointName: string | undefined;
|
|
1160
|
+
}
|
|
1161
|
+
export interface Route {
|
|
1162
|
+
Region: string | undefined;
|
|
1163
|
+
}
|
|
1164
|
+
export interface GetMultiRegionEndpointResponse {
|
|
1165
|
+
EndpointName?: string | undefined;
|
|
1166
|
+
EndpointId?: string | undefined;
|
|
1167
|
+
Routes?: Route[] | undefined;
|
|
1168
|
+
Status?: Status | undefined;
|
|
1169
|
+
CreatedTimestamp?: Date | undefined;
|
|
1170
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
1171
|
+
}
|
|
1102
1172
|
export interface GetSuppressedDestinationRequest {
|
|
1103
1173
|
EmailAddress: string | undefined;
|
|
1104
1174
|
}
|
|
@@ -1252,6 +1322,22 @@ export interface ListManagementOptions {
|
|
|
1252
1322
|
ContactListName: string | undefined;
|
|
1253
1323
|
TopicName?: string | undefined;
|
|
1254
1324
|
}
|
|
1325
|
+
export interface ListMultiRegionEndpointsRequest {
|
|
1326
|
+
NextToken?: string | undefined;
|
|
1327
|
+
PageSize?: number | undefined;
|
|
1328
|
+
}
|
|
1329
|
+
export interface MultiRegionEndpoint {
|
|
1330
|
+
EndpointName?: string | undefined;
|
|
1331
|
+
Status?: Status | undefined;
|
|
1332
|
+
EndpointId?: string | undefined;
|
|
1333
|
+
Regions?: string[] | undefined;
|
|
1334
|
+
CreatedTimestamp?: Date | undefined;
|
|
1335
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
1336
|
+
}
|
|
1337
|
+
export interface ListMultiRegionEndpointsResponse {
|
|
1338
|
+
MultiRegionEndpoints?: MultiRegionEndpoint[] | undefined;
|
|
1339
|
+
NextToken?: string | undefined;
|
|
1340
|
+
}
|
|
1255
1341
|
export declare const ListRecommendationsFilterKey: {
|
|
1256
1342
|
readonly IMPACT: "IMPACT";
|
|
1257
1343
|
readonly RESOURCE_ARN: "RESOURCE_ARN";
|
|
@@ -1378,41 +1464,6 @@ export interface PutConfigurationSetVdmOptionsRequest {
|
|
|
1378
1464
|
VdmOptions?: VdmOptions | undefined;
|
|
1379
1465
|
}
|
|
1380
1466
|
export interface PutConfigurationSetVdmOptionsResponse {}
|
|
1381
|
-
export interface PutDedicatedIpInPoolRequest {
|
|
1382
|
-
Ip: string | undefined;
|
|
1383
|
-
DestinationPoolName: string | undefined;
|
|
1384
|
-
}
|
|
1385
|
-
export interface PutDedicatedIpInPoolResponse {}
|
|
1386
|
-
export interface PutDedicatedIpPoolScalingAttributesRequest {
|
|
1387
|
-
PoolName: string | undefined;
|
|
1388
|
-
ScalingMode: ScalingMode | undefined;
|
|
1389
|
-
}
|
|
1390
|
-
export interface PutDedicatedIpPoolScalingAttributesResponse {}
|
|
1391
|
-
export interface PutDedicatedIpWarmupAttributesRequest {
|
|
1392
|
-
Ip: string | undefined;
|
|
1393
|
-
WarmupPercentage: number | undefined;
|
|
1394
|
-
}
|
|
1395
|
-
export interface PutDedicatedIpWarmupAttributesResponse {}
|
|
1396
|
-
export interface PutDeliverabilityDashboardOptionRequest {
|
|
1397
|
-
DashboardEnabled: boolean | undefined;
|
|
1398
|
-
SubscribedDomains?: DomainDeliverabilityTrackingOption[] | undefined;
|
|
1399
|
-
}
|
|
1400
|
-
export interface PutDeliverabilityDashboardOptionResponse {}
|
|
1401
|
-
export interface PutEmailIdentityConfigurationSetAttributesRequest {
|
|
1402
|
-
EmailIdentity: string | undefined;
|
|
1403
|
-
ConfigurationSetName?: string | undefined;
|
|
1404
|
-
}
|
|
1405
|
-
export interface PutEmailIdentityConfigurationSetAttributesResponse {}
|
|
1406
|
-
export interface PutEmailIdentityDkimAttributesRequest {
|
|
1407
|
-
EmailIdentity: string | undefined;
|
|
1408
|
-
SigningEnabled?: boolean | undefined;
|
|
1409
|
-
}
|
|
1410
|
-
export interface PutEmailIdentityDkimAttributesResponse {}
|
|
1411
|
-
export interface PutEmailIdentityDkimSigningAttributesRequest {
|
|
1412
|
-
EmailIdentity: string | undefined;
|
|
1413
|
-
SigningAttributesOrigin: DkimSigningAttributesOrigin | undefined;
|
|
1414
|
-
SigningAttributes?: DkimSigningAttributes | undefined;
|
|
1415
|
-
}
|
|
1416
1467
|
export declare const AccountDetailsFilterSensitiveLog: (
|
|
1417
1468
|
obj: AccountDetails
|
|
1418
1469
|
) => any;
|
|
@@ -1449,6 +1500,3 @@ export declare const GetMessageInsightsResponseFilterSensitiveLog: (
|
|
|
1449
1500
|
export declare const PutAccountDetailsRequestFilterSensitiveLog: (
|
|
1450
1501
|
obj: PutAccountDetailsRequest
|
|
1451
1502
|
) => any;
|
|
1452
|
-
export declare const PutEmailIdentityDkimSigningAttributesRequestFilterSensitiveLog: (
|
|
1453
|
-
obj: PutEmailIdentityDkimSigningAttributesRequest
|
|
1454
|
-
) => any;
|
|
@@ -4,17 +4,56 @@ import {
|
|
|
4
4
|
BulkEmailEntry,
|
|
5
5
|
BulkEmailEntryResult,
|
|
6
6
|
Destination,
|
|
7
|
+
DkimSigningAttributes,
|
|
8
|
+
DkimSigningAttributesOrigin,
|
|
7
9
|
DkimStatus,
|
|
10
|
+
DomainDeliverabilityTrackingOption,
|
|
8
11
|
EmailContent,
|
|
9
12
|
EmailTemplateContent,
|
|
10
13
|
EventDestinationDefinition,
|
|
11
14
|
ListManagementOptions,
|
|
12
15
|
MessageTag,
|
|
16
|
+
ScalingMode,
|
|
13
17
|
SuppressionListReason,
|
|
14
18
|
Tag,
|
|
15
19
|
Topic,
|
|
16
20
|
TopicPreference,
|
|
17
21
|
} from "./models_0";
|
|
22
|
+
export interface PutDedicatedIpInPoolRequest {
|
|
23
|
+
Ip: string | undefined;
|
|
24
|
+
DestinationPoolName: string | undefined;
|
|
25
|
+
}
|
|
26
|
+
export interface PutDedicatedIpInPoolResponse {}
|
|
27
|
+
export interface PutDedicatedIpPoolScalingAttributesRequest {
|
|
28
|
+
PoolName: string | undefined;
|
|
29
|
+
ScalingMode: ScalingMode | undefined;
|
|
30
|
+
}
|
|
31
|
+
export interface PutDedicatedIpPoolScalingAttributesResponse {}
|
|
32
|
+
export interface PutDedicatedIpWarmupAttributesRequest {
|
|
33
|
+
Ip: string | undefined;
|
|
34
|
+
WarmupPercentage: number | undefined;
|
|
35
|
+
}
|
|
36
|
+
export interface PutDedicatedIpWarmupAttributesResponse {}
|
|
37
|
+
export interface PutDeliverabilityDashboardOptionRequest {
|
|
38
|
+
DashboardEnabled: boolean | undefined;
|
|
39
|
+
SubscribedDomains?: DomainDeliverabilityTrackingOption[] | undefined;
|
|
40
|
+
}
|
|
41
|
+
export interface PutDeliverabilityDashboardOptionResponse {}
|
|
42
|
+
export interface PutEmailIdentityConfigurationSetAttributesRequest {
|
|
43
|
+
EmailIdentity: string | undefined;
|
|
44
|
+
ConfigurationSetName?: string | undefined;
|
|
45
|
+
}
|
|
46
|
+
export interface PutEmailIdentityConfigurationSetAttributesResponse {}
|
|
47
|
+
export interface PutEmailIdentityDkimAttributesRequest {
|
|
48
|
+
EmailIdentity: string | undefined;
|
|
49
|
+
SigningEnabled?: boolean | undefined;
|
|
50
|
+
}
|
|
51
|
+
export interface PutEmailIdentityDkimAttributesResponse {}
|
|
52
|
+
export interface PutEmailIdentityDkimSigningAttributesRequest {
|
|
53
|
+
EmailIdentity: string | undefined;
|
|
54
|
+
SigningAttributesOrigin: DkimSigningAttributesOrigin | undefined;
|
|
55
|
+
SigningAttributes?: DkimSigningAttributes | undefined;
|
|
56
|
+
}
|
|
18
57
|
export interface PutEmailIdentityDkimSigningAttributesResponse {
|
|
19
58
|
DkimStatus?: DkimStatus | undefined;
|
|
20
59
|
DkimTokens?: string[] | undefined;
|
|
@@ -45,6 +84,7 @@ export interface SendBulkEmailRequest {
|
|
|
45
84
|
DefaultContent: BulkEmailContent | undefined;
|
|
46
85
|
BulkEmailEntries: BulkEmailEntry[] | undefined;
|
|
47
86
|
ConfigurationSetName?: string | undefined;
|
|
87
|
+
EndpointId?: string | undefined;
|
|
48
88
|
}
|
|
49
89
|
export interface SendBulkEmailResponse {
|
|
50
90
|
BulkEmailEntryResults: BulkEmailEntryResult[] | undefined;
|
|
@@ -67,6 +107,7 @@ export interface SendEmailRequest {
|
|
|
67
107
|
Content: EmailContent | undefined;
|
|
68
108
|
EmailTags?: MessageTag[] | undefined;
|
|
69
109
|
ConfigurationSetName?: string | undefined;
|
|
110
|
+
EndpointId?: string | undefined;
|
|
70
111
|
ListManagementOptions?: ListManagementOptions | undefined;
|
|
71
112
|
}
|
|
72
113
|
export interface SendEmailResponse {
|
|
@@ -129,3 +170,6 @@ export interface UpdateEmailTemplateRequest {
|
|
|
129
170
|
TemplateContent: EmailTemplateContent | undefined;
|
|
130
171
|
}
|
|
131
172
|
export interface UpdateEmailTemplateResponse {}
|
|
173
|
+
export declare const PutEmailIdentityDkimSigningAttributesRequestFilterSensitiveLog: (
|
|
174
|
+
obj: PutEmailIdentityDkimSigningAttributesRequest
|
|
175
|
+
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListMultiRegionEndpointsCommandInput,
|
|
4
|
+
ListMultiRegionEndpointsCommandOutput,
|
|
5
|
+
} from "../commands/ListMultiRegionEndpointsCommand";
|
|
6
|
+
import { SESv2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListMultiRegionEndpoints: (
|
|
8
|
+
config: SESv2PaginationConfiguration,
|
|
9
|
+
input: ListMultiRegionEndpointsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListMultiRegionEndpointsCommandOutput>;
|
|
@@ -11,5 +11,6 @@ export * from "./ListEmailIdentitiesPaginator";
|
|
|
11
11
|
export * from "./ListEmailTemplatesPaginator";
|
|
12
12
|
export * from "./ListExportJobsPaginator";
|
|
13
13
|
export * from "./ListImportJobsPaginator";
|
|
14
|
+
export * from "./ListMultiRegionEndpointsPaginator";
|
|
14
15
|
export * from "./ListRecommendationsPaginator";
|
|
15
16
|
export * from "./ListSuppressedDestinationsPaginator";
|