@aws-sdk/client-ses 3.52.0 → 3.53.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/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/SESServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +477 -4
- package/dist-cjs/protocols/Aws_query.js +494 -1516
- package/dist-es/index.js +1 -0
- package/dist-es/models/SESServiceException.js +12 -0
- package/dist-es/models/models_0.js +439 -1
- package/dist-es/protocols/Aws_query.js +1037 -1502
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/SESServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +240 -137
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/SESServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +172 -137
- package/package.json +26 -26
|
@@ -1,12 +1,16 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { SESServiceException as __BaseException } from "./SESServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>Indicates that email sending is disabled for your entire Amazon SES account.</p>
|
|
4
5
|
* <p>You can enable or disable email sending for your Amazon SES account using <a>UpdateAccountSendingEnabled</a>.</p>
|
|
5
6
|
*/
|
|
6
|
-
export
|
|
7
|
-
name: "AccountSendingPausedException";
|
|
8
|
-
$fault: "client";
|
|
9
|
-
|
|
7
|
+
export declare class AccountSendingPausedException extends __BaseException {
|
|
8
|
+
readonly name: "AccountSendingPausedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccountSendingPausedException, __BaseException>);
|
|
10
14
|
}
|
|
11
15
|
/**
|
|
12
16
|
* <p>When included in a receipt rule, this action adds a header to the received
|
|
@@ -35,15 +39,18 @@ export declare namespace AddHeaderAction {
|
|
|
35
39
|
/**
|
|
36
40
|
* <p>Indicates that a resource could not be created because of a naming conflict.</p>
|
|
37
41
|
*/
|
|
38
|
-
export
|
|
39
|
-
name: "AlreadyExistsException";
|
|
40
|
-
$fault: "client";
|
|
42
|
+
export declare class AlreadyExistsException extends __BaseException {
|
|
43
|
+
readonly name: "AlreadyExistsException";
|
|
44
|
+
readonly $fault: "client";
|
|
41
45
|
/**
|
|
42
46
|
* <p>Indicates that a resource could not be created because the resource name already
|
|
43
47
|
* exists.</p>
|
|
44
48
|
*/
|
|
45
49
|
Name?: string;
|
|
46
|
-
|
|
50
|
+
/**
|
|
51
|
+
* @internal
|
|
52
|
+
*/
|
|
53
|
+
constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
|
|
47
54
|
}
|
|
48
55
|
export declare enum BehaviorOnMXFailure {
|
|
49
56
|
RejectMessage = "RejectMessage",
|
|
@@ -499,15 +506,18 @@ export declare namespace BulkEmailDestinationStatus {
|
|
|
499
506
|
/**
|
|
500
507
|
* <p>Indicates that the delete operation could not be completed.</p>
|
|
501
508
|
*/
|
|
502
|
-
export
|
|
503
|
-
name: "CannotDeleteException";
|
|
504
|
-
$fault: "client";
|
|
509
|
+
export declare class CannotDeleteException extends __BaseException {
|
|
510
|
+
readonly name: "CannotDeleteException";
|
|
511
|
+
readonly $fault: "client";
|
|
505
512
|
/**
|
|
506
513
|
* <p>Indicates that a resource could not be deleted because no resource with the specified
|
|
507
514
|
* name exists.</p>
|
|
508
515
|
*/
|
|
509
516
|
Name?: string;
|
|
510
|
-
|
|
517
|
+
/**
|
|
518
|
+
* @internal
|
|
519
|
+
*/
|
|
520
|
+
constructor(opts: __ExceptionOptionType<CannotDeleteException, __BaseException>);
|
|
511
521
|
}
|
|
512
522
|
/**
|
|
513
523
|
* <p>Represents a request to create a receipt rule set by cloning an existing one. You use
|
|
@@ -557,22 +567,28 @@ export declare namespace CloneReceiptRuleSetResponse {
|
|
|
557
567
|
* of Amazon SES limits, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/limits.html">Amazon SES Developer
|
|
558
568
|
* Guide</a>.</p>
|
|
559
569
|
*/
|
|
560
|
-
export
|
|
561
|
-
name: "LimitExceededException";
|
|
562
|
-
$fault: "client";
|
|
563
|
-
|
|
570
|
+
export declare class LimitExceededException extends __BaseException {
|
|
571
|
+
readonly name: "LimitExceededException";
|
|
572
|
+
readonly $fault: "client";
|
|
573
|
+
/**
|
|
574
|
+
* @internal
|
|
575
|
+
*/
|
|
576
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
564
577
|
}
|
|
565
578
|
/**
|
|
566
579
|
* <p>Indicates that the provided receipt rule set does not exist.</p>
|
|
567
580
|
*/
|
|
568
|
-
export
|
|
569
|
-
name: "RuleSetDoesNotExistException";
|
|
570
|
-
$fault: "client";
|
|
581
|
+
export declare class RuleSetDoesNotExistException extends __BaseException {
|
|
582
|
+
readonly name: "RuleSetDoesNotExistException";
|
|
583
|
+
readonly $fault: "client";
|
|
571
584
|
/**
|
|
572
585
|
* <p>Indicates that the named receipt rule set does not exist.</p>
|
|
573
586
|
*/
|
|
574
587
|
Name?: string;
|
|
575
|
-
|
|
588
|
+
/**
|
|
589
|
+
* @internal
|
|
590
|
+
*/
|
|
591
|
+
constructor(opts: __ExceptionOptionType<RuleSetDoesNotExistException, __BaseException>);
|
|
576
592
|
}
|
|
577
593
|
export declare enum DimensionValueSource {
|
|
578
594
|
EMAIL_HEADER = "emailHeader",
|
|
@@ -681,14 +697,17 @@ export declare namespace ConfigurationSet {
|
|
|
681
697
|
* <p>Indicates that the configuration set could not be created because of a naming
|
|
682
698
|
* conflict.</p>
|
|
683
699
|
*/
|
|
684
|
-
export
|
|
685
|
-
name: "ConfigurationSetAlreadyExistsException";
|
|
686
|
-
$fault: "client";
|
|
700
|
+
export declare class ConfigurationSetAlreadyExistsException extends __BaseException {
|
|
701
|
+
readonly name: "ConfigurationSetAlreadyExistsException";
|
|
702
|
+
readonly $fault: "client";
|
|
687
703
|
/**
|
|
688
704
|
* <p>Indicates that the configuration set does not exist.</p>
|
|
689
705
|
*/
|
|
690
706
|
ConfigurationSetName?: string;
|
|
691
|
-
|
|
707
|
+
/**
|
|
708
|
+
* @internal
|
|
709
|
+
*/
|
|
710
|
+
constructor(opts: __ExceptionOptionType<ConfigurationSetAlreadyExistsException, __BaseException>);
|
|
692
711
|
}
|
|
693
712
|
export declare enum ConfigurationSetAttribute {
|
|
694
713
|
DELIVERY_OPTIONS = "deliveryOptions",
|
|
@@ -699,27 +718,33 @@ export declare enum ConfigurationSetAttribute {
|
|
|
699
718
|
/**
|
|
700
719
|
* <p>Indicates that the configuration set does not exist.</p>
|
|
701
720
|
*/
|
|
702
|
-
export
|
|
703
|
-
name: "ConfigurationSetDoesNotExistException";
|
|
704
|
-
$fault: "client";
|
|
721
|
+
export declare class ConfigurationSetDoesNotExistException extends __BaseException {
|
|
722
|
+
readonly name: "ConfigurationSetDoesNotExistException";
|
|
723
|
+
readonly $fault: "client";
|
|
705
724
|
/**
|
|
706
725
|
* <p>Indicates that the configuration set does not exist.</p>
|
|
707
726
|
*/
|
|
708
727
|
ConfigurationSetName?: string;
|
|
709
|
-
|
|
728
|
+
/**
|
|
729
|
+
* @internal
|
|
730
|
+
*/
|
|
731
|
+
constructor(opts: __ExceptionOptionType<ConfigurationSetDoesNotExistException, __BaseException>);
|
|
710
732
|
}
|
|
711
733
|
/**
|
|
712
734
|
* <p>Indicates that email sending is disabled for the configuration set.</p>
|
|
713
735
|
* <p>You can enable or disable email sending for a configuration set using <a>UpdateConfigurationSetSendingEnabled</a>.</p>
|
|
714
736
|
*/
|
|
715
|
-
export
|
|
716
|
-
name: "ConfigurationSetSendingPausedException";
|
|
717
|
-
$fault: "client";
|
|
737
|
+
export declare class ConfigurationSetSendingPausedException extends __BaseException {
|
|
738
|
+
readonly name: "ConfigurationSetSendingPausedException";
|
|
739
|
+
readonly $fault: "client";
|
|
718
740
|
/**
|
|
719
741
|
* <p>The name of the configuration set for which email sending is disabled.</p>
|
|
720
742
|
*/
|
|
721
743
|
ConfigurationSetName?: string;
|
|
722
|
-
|
|
744
|
+
/**
|
|
745
|
+
* @internal
|
|
746
|
+
*/
|
|
747
|
+
constructor(opts: __ExceptionOptionType<ConfigurationSetSendingPausedException, __BaseException>);
|
|
723
748
|
}
|
|
724
749
|
/**
|
|
725
750
|
* <p>Represents a request to create a configuration set. Configuration sets enable you to
|
|
@@ -754,10 +779,13 @@ export declare namespace CreateConfigurationSetResponse {
|
|
|
754
779
|
* <p>Indicates that the configuration set is invalid. See the error message for
|
|
755
780
|
* details.</p>
|
|
756
781
|
*/
|
|
757
|
-
export
|
|
758
|
-
name: "InvalidConfigurationSetException";
|
|
759
|
-
$fault: "client";
|
|
760
|
-
|
|
782
|
+
export declare class InvalidConfigurationSetException extends __BaseException {
|
|
783
|
+
readonly name: "InvalidConfigurationSetException";
|
|
784
|
+
readonly $fault: "client";
|
|
785
|
+
/**
|
|
786
|
+
* @internal
|
|
787
|
+
*/
|
|
788
|
+
constructor(opts: __ExceptionOptionType<InvalidConfigurationSetException, __BaseException>);
|
|
761
789
|
}
|
|
762
790
|
/**
|
|
763
791
|
* <p>Contains the delivery stream ARN and the IAM role ARN associated with an Amazon Kinesis Firehose event
|
|
@@ -914,9 +942,9 @@ export declare namespace CreateConfigurationSetEventDestinationResponse {
|
|
|
914
942
|
* <p>Indicates that the event destination could not be created because of a naming
|
|
915
943
|
* conflict.</p>
|
|
916
944
|
*/
|
|
917
|
-
export
|
|
918
|
-
name: "EventDestinationAlreadyExistsException";
|
|
919
|
-
$fault: "client";
|
|
945
|
+
export declare class EventDestinationAlreadyExistsException extends __BaseException {
|
|
946
|
+
readonly name: "EventDestinationAlreadyExistsException";
|
|
947
|
+
readonly $fault: "client";
|
|
920
948
|
/**
|
|
921
949
|
* <p>Indicates that the configuration set does not exist.</p>
|
|
922
950
|
*/
|
|
@@ -925,15 +953,18 @@ export interface EventDestinationAlreadyExistsException extends __SmithyExceptio
|
|
|
925
953
|
* <p>Indicates that the event destination does not exist.</p>
|
|
926
954
|
*/
|
|
927
955
|
EventDestinationName?: string;
|
|
928
|
-
|
|
956
|
+
/**
|
|
957
|
+
* @internal
|
|
958
|
+
*/
|
|
959
|
+
constructor(opts: __ExceptionOptionType<EventDestinationAlreadyExistsException, __BaseException>);
|
|
929
960
|
}
|
|
930
961
|
/**
|
|
931
962
|
* <p>Indicates that the Amazon CloudWatch destination is invalid. See the error message for
|
|
932
963
|
* details.</p>
|
|
933
964
|
*/
|
|
934
|
-
export
|
|
935
|
-
name: "InvalidCloudWatchDestinationException";
|
|
936
|
-
$fault: "client";
|
|
965
|
+
export declare class InvalidCloudWatchDestinationException extends __BaseException {
|
|
966
|
+
readonly name: "InvalidCloudWatchDestinationException";
|
|
967
|
+
readonly $fault: "client";
|
|
937
968
|
/**
|
|
938
969
|
* <p>Indicates that the configuration set does not exist.</p>
|
|
939
970
|
*/
|
|
@@ -942,15 +973,18 @@ export interface InvalidCloudWatchDestinationException extends __SmithyException
|
|
|
942
973
|
* <p>Indicates that the event destination does not exist.</p>
|
|
943
974
|
*/
|
|
944
975
|
EventDestinationName?: string;
|
|
945
|
-
|
|
976
|
+
/**
|
|
977
|
+
* @internal
|
|
978
|
+
*/
|
|
979
|
+
constructor(opts: __ExceptionOptionType<InvalidCloudWatchDestinationException, __BaseException>);
|
|
946
980
|
}
|
|
947
981
|
/**
|
|
948
982
|
* <p>Indicates that the Amazon Kinesis Firehose destination is invalid. See the error
|
|
949
983
|
* message for details.</p>
|
|
950
984
|
*/
|
|
951
|
-
export
|
|
952
|
-
name: "InvalidFirehoseDestinationException";
|
|
953
|
-
$fault: "client";
|
|
985
|
+
export declare class InvalidFirehoseDestinationException extends __BaseException {
|
|
986
|
+
readonly name: "InvalidFirehoseDestinationException";
|
|
987
|
+
readonly $fault: "client";
|
|
954
988
|
/**
|
|
955
989
|
* <p>Indicates that the configuration set does not exist.</p>
|
|
956
990
|
*/
|
|
@@ -959,15 +993,18 @@ export interface InvalidFirehoseDestinationException extends __SmithyException,
|
|
|
959
993
|
* <p>Indicates that the event destination does not exist.</p>
|
|
960
994
|
*/
|
|
961
995
|
EventDestinationName?: string;
|
|
962
|
-
|
|
996
|
+
/**
|
|
997
|
+
* @internal
|
|
998
|
+
*/
|
|
999
|
+
constructor(opts: __ExceptionOptionType<InvalidFirehoseDestinationException, __BaseException>);
|
|
963
1000
|
}
|
|
964
1001
|
/**
|
|
965
1002
|
* <p>Indicates that the Amazon Simple Notification Service (Amazon SNS) destination is
|
|
966
1003
|
* invalid. See the error message for details.</p>
|
|
967
1004
|
*/
|
|
968
|
-
export
|
|
969
|
-
name: "InvalidSNSDestinationException";
|
|
970
|
-
$fault: "client";
|
|
1005
|
+
export declare class InvalidSNSDestinationException extends __BaseException {
|
|
1006
|
+
readonly name: "InvalidSNSDestinationException";
|
|
1007
|
+
readonly $fault: "client";
|
|
971
1008
|
/**
|
|
972
1009
|
* <p>Indicates that the configuration set does not exist.</p>
|
|
973
1010
|
*/
|
|
@@ -976,7 +1013,10 @@ export interface InvalidSNSDestinationException extends __SmithyException, $Meta
|
|
|
976
1013
|
* <p>Indicates that the event destination does not exist.</p>
|
|
977
1014
|
*/
|
|
978
1015
|
EventDestinationName?: string;
|
|
979
|
-
|
|
1016
|
+
/**
|
|
1017
|
+
* @internal
|
|
1018
|
+
*/
|
|
1019
|
+
constructor(opts: __ExceptionOptionType<InvalidSNSDestinationException, __BaseException>);
|
|
980
1020
|
}
|
|
981
1021
|
/**
|
|
982
1022
|
* <p>A domain that is used to redirect email recipients to an Amazon SES-operated domain. This
|
|
@@ -1047,24 +1087,30 @@ export declare namespace CreateConfigurationSetTrackingOptionsResponse {
|
|
|
1047
1087
|
* </li>
|
|
1048
1088
|
* </ul>
|
|
1049
1089
|
*/
|
|
1050
|
-
export
|
|
1051
|
-
name: "InvalidTrackingOptionsException";
|
|
1052
|
-
$fault: "client";
|
|
1053
|
-
|
|
1090
|
+
export declare class InvalidTrackingOptionsException extends __BaseException {
|
|
1091
|
+
readonly name: "InvalidTrackingOptionsException";
|
|
1092
|
+
readonly $fault: "client";
|
|
1093
|
+
/**
|
|
1094
|
+
* @internal
|
|
1095
|
+
*/
|
|
1096
|
+
constructor(opts: __ExceptionOptionType<InvalidTrackingOptionsException, __BaseException>);
|
|
1054
1097
|
}
|
|
1055
1098
|
/**
|
|
1056
1099
|
* <p>Indicates that the configuration set you specified already contains a TrackingOptions
|
|
1057
1100
|
* object.</p>
|
|
1058
1101
|
*/
|
|
1059
|
-
export
|
|
1060
|
-
name: "TrackingOptionsAlreadyExistsException";
|
|
1061
|
-
$fault: "client";
|
|
1102
|
+
export declare class TrackingOptionsAlreadyExistsException extends __BaseException {
|
|
1103
|
+
readonly name: "TrackingOptionsAlreadyExistsException";
|
|
1104
|
+
readonly $fault: "client";
|
|
1062
1105
|
/**
|
|
1063
1106
|
* <p>Indicates that a TrackingOptions object already exists in the specified configuration
|
|
1064
1107
|
* set.</p>
|
|
1065
1108
|
*/
|
|
1066
1109
|
ConfigurationSetName?: string;
|
|
1067
|
-
|
|
1110
|
+
/**
|
|
1111
|
+
* @internal
|
|
1112
|
+
*/
|
|
1113
|
+
constructor(opts: __ExceptionOptionType<TrackingOptionsAlreadyExistsException, __BaseException>);
|
|
1068
1114
|
}
|
|
1069
1115
|
/**
|
|
1070
1116
|
* <p>Represents a request to create a custom verification email template.</p>
|
|
@@ -1109,38 +1155,47 @@ export declare namespace CreateCustomVerificationEmailTemplateRequest {
|
|
|
1109
1155
|
/**
|
|
1110
1156
|
* <p>Indicates that custom verification email template provided content is invalid.</p>
|
|
1111
1157
|
*/
|
|
1112
|
-
export
|
|
1113
|
-
name: "CustomVerificationEmailInvalidContentException";
|
|
1114
|
-
$fault: "client";
|
|
1115
|
-
|
|
1158
|
+
export declare class CustomVerificationEmailInvalidContentException extends __BaseException {
|
|
1159
|
+
readonly name: "CustomVerificationEmailInvalidContentException";
|
|
1160
|
+
readonly $fault: "client";
|
|
1161
|
+
/**
|
|
1162
|
+
* @internal
|
|
1163
|
+
*/
|
|
1164
|
+
constructor(opts: __ExceptionOptionType<CustomVerificationEmailInvalidContentException, __BaseException>);
|
|
1116
1165
|
}
|
|
1117
1166
|
/**
|
|
1118
1167
|
* <p>Indicates that a custom verification email template with the name you specified
|
|
1119
1168
|
* already exists.</p>
|
|
1120
1169
|
*/
|
|
1121
|
-
export
|
|
1122
|
-
name: "CustomVerificationEmailTemplateAlreadyExistsException";
|
|
1123
|
-
$fault: "client";
|
|
1170
|
+
export declare class CustomVerificationEmailTemplateAlreadyExistsException extends __BaseException {
|
|
1171
|
+
readonly name: "CustomVerificationEmailTemplateAlreadyExistsException";
|
|
1172
|
+
readonly $fault: "client";
|
|
1124
1173
|
/**
|
|
1125
1174
|
* <p>Indicates that the provided custom verification email template with the specified
|
|
1126
1175
|
* template name already exists.</p>
|
|
1127
1176
|
*/
|
|
1128
1177
|
CustomVerificationEmailTemplateName?: string;
|
|
1129
|
-
|
|
1178
|
+
/**
|
|
1179
|
+
* @internal
|
|
1180
|
+
*/
|
|
1181
|
+
constructor(opts: __ExceptionOptionType<CustomVerificationEmailTemplateAlreadyExistsException, __BaseException>);
|
|
1130
1182
|
}
|
|
1131
1183
|
/**
|
|
1132
1184
|
* <p>Indicates that the sender address specified for a custom verification email is not
|
|
1133
1185
|
* verified, and is therefore not eligible to send the custom verification email. </p>
|
|
1134
1186
|
*/
|
|
1135
|
-
export
|
|
1136
|
-
name: "FromEmailAddressNotVerifiedException";
|
|
1137
|
-
$fault: "client";
|
|
1187
|
+
export declare class FromEmailAddressNotVerifiedException extends __BaseException {
|
|
1188
|
+
readonly name: "FromEmailAddressNotVerifiedException";
|
|
1189
|
+
readonly $fault: "client";
|
|
1138
1190
|
/**
|
|
1139
1191
|
* <p>Indicates that the from email address associated with the custom verification email
|
|
1140
1192
|
* template is not verified.</p>
|
|
1141
1193
|
*/
|
|
1142
1194
|
FromEmailAddress?: string;
|
|
1143
|
-
|
|
1195
|
+
/**
|
|
1196
|
+
* @internal
|
|
1197
|
+
*/
|
|
1198
|
+
constructor(opts: __ExceptionOptionType<FromEmailAddressNotVerifiedException, __BaseException>);
|
|
1144
1199
|
}
|
|
1145
1200
|
export declare enum ReceiptFilterPolicy {
|
|
1146
1201
|
Allow = "Allow",
|
|
@@ -1611,14 +1666,17 @@ export declare namespace CreateReceiptRuleResponse {
|
|
|
1611
1666
|
* about giving permissions, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html">Amazon SES
|
|
1612
1667
|
* Developer Guide</a>.</p>
|
|
1613
1668
|
*/
|
|
1614
|
-
export
|
|
1615
|
-
name: "InvalidLambdaFunctionException";
|
|
1616
|
-
$fault: "client";
|
|
1669
|
+
export declare class InvalidLambdaFunctionException extends __BaseException {
|
|
1670
|
+
readonly name: "InvalidLambdaFunctionException";
|
|
1671
|
+
readonly $fault: "client";
|
|
1617
1672
|
/**
|
|
1618
1673
|
* <p>Indicates that the ARN of the function was not found.</p>
|
|
1619
1674
|
*/
|
|
1620
1675
|
FunctionArn?: string;
|
|
1621
|
-
|
|
1676
|
+
/**
|
|
1677
|
+
* @internal
|
|
1678
|
+
*/
|
|
1679
|
+
constructor(opts: __ExceptionOptionType<InvalidLambdaFunctionException, __BaseException>);
|
|
1622
1680
|
}
|
|
1623
1681
|
/**
|
|
1624
1682
|
* <p>Indicates that the provided Amazon S3 bucket or AWS KMS encryption key is invalid, or
|
|
@@ -1626,14 +1684,17 @@ export interface InvalidLambdaFunctionException extends __SmithyException, $Meta
|
|
|
1626
1684
|
* information about giving permissions, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html">Amazon SES
|
|
1627
1685
|
* Developer Guide</a>.</p>
|
|
1628
1686
|
*/
|
|
1629
|
-
export
|
|
1630
|
-
name: "InvalidS3ConfigurationException";
|
|
1631
|
-
$fault: "client";
|
|
1687
|
+
export declare class InvalidS3ConfigurationException extends __BaseException {
|
|
1688
|
+
readonly name: "InvalidS3ConfigurationException";
|
|
1689
|
+
readonly $fault: "client";
|
|
1632
1690
|
/**
|
|
1633
1691
|
* <p>Indicated that the S3 Bucket was not found.</p>
|
|
1634
1692
|
*/
|
|
1635
1693
|
Bucket?: string;
|
|
1636
|
-
|
|
1694
|
+
/**
|
|
1695
|
+
* @internal
|
|
1696
|
+
*/
|
|
1697
|
+
constructor(opts: __ExceptionOptionType<InvalidS3ConfigurationException, __BaseException>);
|
|
1637
1698
|
}
|
|
1638
1699
|
/**
|
|
1639
1700
|
* <p>Indicates that the provided Amazon SNS topic is invalid, or that Amazon SES could not
|
|
@@ -1641,26 +1702,32 @@ export interface InvalidS3ConfigurationException extends __SmithyException, $Met
|
|
|
1641
1702
|
* permissions, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html">Amazon SES
|
|
1642
1703
|
* Developer Guide</a>.</p>
|
|
1643
1704
|
*/
|
|
1644
|
-
export
|
|
1645
|
-
name: "InvalidSnsTopicException";
|
|
1646
|
-
$fault: "client";
|
|
1705
|
+
export declare class InvalidSnsTopicException extends __BaseException {
|
|
1706
|
+
readonly name: "InvalidSnsTopicException";
|
|
1707
|
+
readonly $fault: "client";
|
|
1647
1708
|
/**
|
|
1648
1709
|
* <p>Indicates that the topic does not exist.</p>
|
|
1649
1710
|
*/
|
|
1650
1711
|
Topic?: string;
|
|
1651
|
-
|
|
1712
|
+
/**
|
|
1713
|
+
* @internal
|
|
1714
|
+
*/
|
|
1715
|
+
constructor(opts: __ExceptionOptionType<InvalidSnsTopicException, __BaseException>);
|
|
1652
1716
|
}
|
|
1653
1717
|
/**
|
|
1654
1718
|
* <p>Indicates that the provided receipt rule does not exist.</p>
|
|
1655
1719
|
*/
|
|
1656
|
-
export
|
|
1657
|
-
name: "RuleDoesNotExistException";
|
|
1658
|
-
$fault: "client";
|
|
1720
|
+
export declare class RuleDoesNotExistException extends __BaseException {
|
|
1721
|
+
readonly name: "RuleDoesNotExistException";
|
|
1722
|
+
readonly $fault: "client";
|
|
1659
1723
|
/**
|
|
1660
1724
|
* <p>Indicates that the named receipt rule does not exist.</p>
|
|
1661
1725
|
*/
|
|
1662
1726
|
Name?: string;
|
|
1663
|
-
|
|
1727
|
+
/**
|
|
1728
|
+
* @internal
|
|
1729
|
+
*/
|
|
1730
|
+
constructor(opts: __ExceptionOptionType<RuleDoesNotExistException, __BaseException>);
|
|
1664
1731
|
}
|
|
1665
1732
|
/**
|
|
1666
1733
|
* <p>Represents a request to create an empty receipt rule set. You use receipt rule sets to
|
|
@@ -1762,11 +1829,14 @@ export declare namespace CreateTemplateResponse {
|
|
|
1762
1829
|
* <p>Indicates that the template that you specified could not be rendered. This issue may
|
|
1763
1830
|
* occur when a template refers to a partial that does not exist.</p>
|
|
1764
1831
|
*/
|
|
1765
|
-
export
|
|
1766
|
-
name: "InvalidTemplateException";
|
|
1767
|
-
$fault: "client";
|
|
1832
|
+
export declare class InvalidTemplateException extends __BaseException {
|
|
1833
|
+
readonly name: "InvalidTemplateException";
|
|
1834
|
+
readonly $fault: "client";
|
|
1768
1835
|
TemplateName?: string;
|
|
1769
|
-
|
|
1836
|
+
/**
|
|
1837
|
+
* @internal
|
|
1838
|
+
*/
|
|
1839
|
+
constructor(opts: __ExceptionOptionType<InvalidTemplateException, __BaseException>);
|
|
1770
1840
|
}
|
|
1771
1841
|
export declare enum CustomMailFromStatus {
|
|
1772
1842
|
Failed = "Failed",
|
|
@@ -1811,14 +1881,17 @@ export declare namespace CustomVerificationEmailTemplate {
|
|
|
1811
1881
|
* <p>Indicates that a custom verification email template with the name you specified does
|
|
1812
1882
|
* not exist.</p>
|
|
1813
1883
|
*/
|
|
1814
|
-
export
|
|
1815
|
-
name: "CustomVerificationEmailTemplateDoesNotExistException";
|
|
1816
|
-
$fault: "client";
|
|
1884
|
+
export declare class CustomVerificationEmailTemplateDoesNotExistException extends __BaseException {
|
|
1885
|
+
readonly name: "CustomVerificationEmailTemplateDoesNotExistException";
|
|
1886
|
+
readonly $fault: "client";
|
|
1817
1887
|
/**
|
|
1818
1888
|
* <p>Indicates that the provided custom verification email template does not exist.</p>
|
|
1819
1889
|
*/
|
|
1820
1890
|
CustomVerificationEmailTemplateName?: string;
|
|
1821
|
-
|
|
1891
|
+
/**
|
|
1892
|
+
* @internal
|
|
1893
|
+
*/
|
|
1894
|
+
constructor(opts: __ExceptionOptionType<CustomVerificationEmailTemplateDoesNotExistException, __BaseException>);
|
|
1822
1895
|
}
|
|
1823
1896
|
/**
|
|
1824
1897
|
* <p>Represents a request to delete a configuration set. Configuration sets enable you to
|
|
@@ -1886,9 +1959,9 @@ export declare namespace DeleteConfigurationSetEventDestinationResponse {
|
|
|
1886
1959
|
/**
|
|
1887
1960
|
* <p>Indicates that the event destination does not exist.</p>
|
|
1888
1961
|
*/
|
|
1889
|
-
export
|
|
1890
|
-
name: "EventDestinationDoesNotExistException";
|
|
1891
|
-
$fault: "client";
|
|
1962
|
+
export declare class EventDestinationDoesNotExistException extends __BaseException {
|
|
1963
|
+
readonly name: "EventDestinationDoesNotExistException";
|
|
1964
|
+
readonly $fault: "client";
|
|
1892
1965
|
/**
|
|
1893
1966
|
* <p>Indicates that the configuration set does not exist.</p>
|
|
1894
1967
|
*/
|
|
@@ -1897,7 +1970,10 @@ export interface EventDestinationDoesNotExistException extends __SmithyException
|
|
|
1897
1970
|
* <p>Indicates that the event destination does not exist.</p>
|
|
1898
1971
|
*/
|
|
1899
1972
|
EventDestinationName?: string;
|
|
1900
|
-
|
|
1973
|
+
/**
|
|
1974
|
+
* @internal
|
|
1975
|
+
*/
|
|
1976
|
+
constructor(opts: __ExceptionOptionType<EventDestinationDoesNotExistException, __BaseException>);
|
|
1901
1977
|
}
|
|
1902
1978
|
/**
|
|
1903
1979
|
* <p>Represents a request to delete open and click tracking options in a configuration set.
|
|
@@ -1930,15 +2006,18 @@ export declare namespace DeleteConfigurationSetTrackingOptionsResponse {
|
|
|
1930
2006
|
/**
|
|
1931
2007
|
* <p>Indicates that the TrackingOptions object you specified does not exist.</p>
|
|
1932
2008
|
*/
|
|
1933
|
-
export
|
|
1934
|
-
name: "TrackingOptionsDoesNotExistException";
|
|
1935
|
-
$fault: "client";
|
|
2009
|
+
export declare class TrackingOptionsDoesNotExistException extends __BaseException {
|
|
2010
|
+
readonly name: "TrackingOptionsDoesNotExistException";
|
|
2011
|
+
readonly $fault: "client";
|
|
1936
2012
|
/**
|
|
1937
2013
|
* <p>Indicates that a TrackingOptions object does not exist in the specified configuration
|
|
1938
2014
|
* set.</p>
|
|
1939
2015
|
*/
|
|
1940
2016
|
ConfigurationSetName?: string;
|
|
1941
|
-
|
|
2017
|
+
/**
|
|
2018
|
+
* @internal
|
|
2019
|
+
*/
|
|
2020
|
+
constructor(opts: __ExceptionOptionType<TrackingOptionsDoesNotExistException, __BaseException>);
|
|
1942
2021
|
}
|
|
1943
2022
|
/**
|
|
1944
2023
|
* <p>Represents a request to delete an existing custom verification email template.</p>
|
|
@@ -2920,39 +2999,51 @@ export declare namespace GetTemplateResponse {
|
|
|
2920
2999
|
* <p>Indicates that the Template object you specified does not exist in your Amazon SES
|
|
2921
3000
|
* account.</p>
|
|
2922
3001
|
*/
|
|
2923
|
-
export
|
|
2924
|
-
name: "TemplateDoesNotExistException";
|
|
2925
|
-
$fault: "client";
|
|
3002
|
+
export declare class TemplateDoesNotExistException extends __BaseException {
|
|
3003
|
+
readonly name: "TemplateDoesNotExistException";
|
|
3004
|
+
readonly $fault: "client";
|
|
2926
3005
|
TemplateName?: string;
|
|
2927
|
-
|
|
3006
|
+
/**
|
|
3007
|
+
* @internal
|
|
3008
|
+
*/
|
|
3009
|
+
constructor(opts: __ExceptionOptionType<TemplateDoesNotExistException, __BaseException>);
|
|
2928
3010
|
}
|
|
2929
3011
|
export declare type IdentityType = "Domain" | "EmailAddress";
|
|
2930
3012
|
/**
|
|
2931
3013
|
* <p>Indicates that provided delivery option is invalid.</p>
|
|
2932
3014
|
*/
|
|
2933
|
-
export
|
|
2934
|
-
name: "InvalidDeliveryOptionsException";
|
|
2935
|
-
$fault: "client";
|
|
2936
|
-
|
|
3015
|
+
export declare class InvalidDeliveryOptionsException extends __BaseException {
|
|
3016
|
+
readonly name: "InvalidDeliveryOptionsException";
|
|
3017
|
+
readonly $fault: "client";
|
|
3018
|
+
/**
|
|
3019
|
+
* @internal
|
|
3020
|
+
*/
|
|
3021
|
+
constructor(opts: __ExceptionOptionType<InvalidDeliveryOptionsException, __BaseException>);
|
|
2937
3022
|
}
|
|
2938
3023
|
/**
|
|
2939
3024
|
* <p>Indicates that the provided policy is invalid. Check the error stack for more
|
|
2940
3025
|
* information about what caused the error.</p>
|
|
2941
3026
|
*/
|
|
2942
|
-
export
|
|
2943
|
-
name: "InvalidPolicyException";
|
|
2944
|
-
$fault: "client";
|
|
2945
|
-
|
|
3027
|
+
export declare class InvalidPolicyException extends __BaseException {
|
|
3028
|
+
readonly name: "InvalidPolicyException";
|
|
3029
|
+
readonly $fault: "client";
|
|
3030
|
+
/**
|
|
3031
|
+
* @internal
|
|
3032
|
+
*/
|
|
3033
|
+
constructor(opts: __ExceptionOptionType<InvalidPolicyException, __BaseException>);
|
|
2946
3034
|
}
|
|
2947
3035
|
/**
|
|
2948
3036
|
* <p>Indicates that one or more of the replacement values you provided is invalid. This
|
|
2949
3037
|
* error may occur when the TemplateData object contains invalid JSON.</p>
|
|
2950
3038
|
*/
|
|
2951
|
-
export
|
|
2952
|
-
name: "InvalidRenderingParameterException";
|
|
2953
|
-
$fault: "client";
|
|
3039
|
+
export declare class InvalidRenderingParameterException extends __BaseException {
|
|
3040
|
+
readonly name: "InvalidRenderingParameterException";
|
|
3041
|
+
readonly $fault: "client";
|
|
2954
3042
|
TemplateName?: string;
|
|
2955
|
-
|
|
3043
|
+
/**
|
|
3044
|
+
* @internal
|
|
3045
|
+
*/
|
|
3046
|
+
constructor(opts: __ExceptionOptionType<InvalidRenderingParameterException, __BaseException>);
|
|
2956
3047
|
}
|
|
2957
3048
|
/**
|
|
2958
3049
|
* <p>Represents a request to list the configuration sets associated with your AWS account.
|
|
@@ -3283,10 +3374,13 @@ export declare namespace ListVerifiedEmailAddressesResponse {
|
|
|
3283
3374
|
* custom MAIL FROM domain settings for an identity, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from-edit.html">Amazon SES Developer
|
|
3284
3375
|
* Guide</a>.</p>
|
|
3285
3376
|
*/
|
|
3286
|
-
export
|
|
3287
|
-
name: "MailFromDomainNotVerifiedException";
|
|
3288
|
-
$fault: "client";
|
|
3289
|
-
|
|
3377
|
+
export declare class MailFromDomainNotVerifiedException extends __BaseException {
|
|
3378
|
+
readonly name: "MailFromDomainNotVerifiedException";
|
|
3379
|
+
readonly $fault: "client";
|
|
3380
|
+
/**
|
|
3381
|
+
* @internal
|
|
3382
|
+
*/
|
|
3383
|
+
constructor(opts: __ExceptionOptionType<MailFromDomainNotVerifiedException, __BaseException>);
|
|
3290
3384
|
}
|
|
3291
3385
|
/**
|
|
3292
3386
|
* <p>Represents the message to be sent, composed of a subject and a body.</p>
|
|
@@ -3341,30 +3435,39 @@ export declare namespace MessageDsn {
|
|
|
3341
3435
|
* <p>Indicates that the action failed, and the message could not be sent. Check the error
|
|
3342
3436
|
* stack for more information about what caused the error.</p>
|
|
3343
3437
|
*/
|
|
3344
|
-
export
|
|
3345
|
-
name: "MessageRejected";
|
|
3346
|
-
$fault: "client";
|
|
3347
|
-
|
|
3438
|
+
export declare class MessageRejected extends __BaseException {
|
|
3439
|
+
readonly name: "MessageRejected";
|
|
3440
|
+
readonly $fault: "client";
|
|
3441
|
+
/**
|
|
3442
|
+
* @internal
|
|
3443
|
+
*/
|
|
3444
|
+
constructor(opts: __ExceptionOptionType<MessageRejected, __BaseException>);
|
|
3348
3445
|
}
|
|
3349
3446
|
/**
|
|
3350
3447
|
* <p>Indicates that one or more of the replacement values for the specified template was
|
|
3351
3448
|
* not specified. Ensure that the TemplateData object contains references to all of the
|
|
3352
3449
|
* replacement tags in the specified template.</p>
|
|
3353
3450
|
*/
|
|
3354
|
-
export
|
|
3355
|
-
name: "MissingRenderingAttributeException";
|
|
3356
|
-
$fault: "client";
|
|
3451
|
+
export declare class MissingRenderingAttributeException extends __BaseException {
|
|
3452
|
+
readonly name: "MissingRenderingAttributeException";
|
|
3453
|
+
readonly $fault: "client";
|
|
3357
3454
|
TemplateName?: string;
|
|
3358
|
-
|
|
3455
|
+
/**
|
|
3456
|
+
* @internal
|
|
3457
|
+
*/
|
|
3458
|
+
constructor(opts: __ExceptionOptionType<MissingRenderingAttributeException, __BaseException>);
|
|
3359
3459
|
}
|
|
3360
3460
|
export declare type NotificationType = "Bounce" | "Complaint" | "Delivery";
|
|
3361
3461
|
/**
|
|
3362
3462
|
* <p>Indicates that the account has not been granted production access.</p>
|
|
3363
3463
|
*/
|
|
3364
|
-
export
|
|
3365
|
-
name: "ProductionAccessNotGrantedException";
|
|
3366
|
-
$fault: "client";
|
|
3367
|
-
|
|
3464
|
+
export declare class ProductionAccessNotGrantedException extends __BaseException {
|
|
3465
|
+
readonly name: "ProductionAccessNotGrantedException";
|
|
3466
|
+
readonly $fault: "client";
|
|
3467
|
+
/**
|
|
3468
|
+
* @internal
|
|
3469
|
+
*/
|
|
3470
|
+
constructor(opts: __ExceptionOptionType<ProductionAccessNotGrantedException, __BaseException>);
|
|
3368
3471
|
}
|
|
3369
3472
|
/**
|
|
3370
3473
|
* <p>A request to modify the delivery options for a configuration set.</p>
|