@distilled.cloud/aws 0.30.2 → 0.30.3
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/lib/client/response-parser.d.ts.map +1 -1
- package/lib/client/response-parser.js +9 -1
- package/lib/client/response-parser.js.map +1 -1
- package/lib/services/cloudfront.d.ts +1 -1
- package/lib/services/cloudfront.d.ts.map +1 -1
- package/lib/services/cloudfront.js +234 -488
- package/lib/services/cloudfront.js.map +1 -1
- package/lib/services/datasync.d.ts +1 -1
- package/lib/services/datasync.d.ts.map +1 -1
- package/lib/services/datasync.js +55 -104
- package/lib/services/datasync.js.map +1 -1
- package/lib/services/ses.d.ts +8 -2
- package/lib/services/ses.d.ts.map +1 -1
- package/lib/services/ses.js +135 -191
- package/lib/services/ses.js.map +1 -1
- package/package.json +2 -2
- package/src/client/response-parser.ts +13 -1
- package/src/services/cloudfront.ts +2315 -2479
- package/src/services/datasync.ts +523 -553
- package/src/services/ses.ts +826 -724
package/src/services/ses.ts
CHANGED
|
@@ -172,10 +172,11 @@ export const CloneReceiptRuleSetRequest = /*@__PURE__*/ S.suspend(() =>
|
|
|
172
172
|
identifier: "CloneReceiptRuleSetRequest",
|
|
173
173
|
}) as any as S.Schema<CloneReceiptRuleSetRequest>;
|
|
174
174
|
export interface CloneReceiptRuleSetResponse {}
|
|
175
|
-
export const CloneReceiptRuleSetResponse =
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
175
|
+
export const CloneReceiptRuleSetResponse = /*@__PURE__*/ S.suspend(() =>
|
|
176
|
+
S.Struct({}).pipe(ns),
|
|
177
|
+
).annotate({
|
|
178
|
+
identifier: "CloneReceiptRuleSetResponse",
|
|
179
|
+
}) as any as S.Schema<CloneReceiptRuleSetResponse>;
|
|
179
180
|
export interface ConfigurationSet {
|
|
180
181
|
Name: string;
|
|
181
182
|
}
|
|
@@ -187,27 +188,27 @@ export const ConfigurationSet = /*@__PURE__*/ S.suspend(() =>
|
|
|
187
188
|
export interface CreateConfigurationSetRequest {
|
|
188
189
|
ConfigurationSet: ConfigurationSet;
|
|
189
190
|
}
|
|
190
|
-
export const CreateConfigurationSetRequest =
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
rules,
|
|
201
|
-
),
|
|
191
|
+
export const CreateConfigurationSetRequest = /*@__PURE__*/ S.suspend(() =>
|
|
192
|
+
S.Struct({ ConfigurationSet: ConfigurationSet }).pipe(
|
|
193
|
+
T.all(
|
|
194
|
+
ns,
|
|
195
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
196
|
+
svc,
|
|
197
|
+
auth,
|
|
198
|
+
proto,
|
|
199
|
+
ver,
|
|
200
|
+
rules,
|
|
202
201
|
),
|
|
203
|
-
)
|
|
204
|
-
|
|
205
|
-
|
|
202
|
+
),
|
|
203
|
+
).annotate({
|
|
204
|
+
identifier: "CreateConfigurationSetRequest",
|
|
205
|
+
}) as any as S.Schema<CreateConfigurationSetRequest>;
|
|
206
206
|
export interface CreateConfigurationSetResponse {}
|
|
207
|
-
export const CreateConfigurationSetResponse =
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
207
|
+
export const CreateConfigurationSetResponse = /*@__PURE__*/ S.suspend(() =>
|
|
208
|
+
S.Struct({}).pipe(ns),
|
|
209
|
+
).annotate({
|
|
210
|
+
identifier: "CreateConfigurationSetResponse",
|
|
211
|
+
}) as any as S.Schema<CreateConfigurationSetResponse>;
|
|
211
212
|
export type EventType =
|
|
212
213
|
| "send"
|
|
213
214
|
| "reject"
|
|
@@ -241,20 +242,20 @@ export interface CloudWatchDimensionConfiguration {
|
|
|
241
242
|
DimensionValueSource: DimensionValueSource;
|
|
242
243
|
DefaultDimensionValue: string;
|
|
243
244
|
}
|
|
244
|
-
export const CloudWatchDimensionConfiguration =
|
|
245
|
-
|
|
246
|
-
S.
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
}) as any as S.Schema<CloudWatchDimensionConfiguration>;
|
|
245
|
+
export const CloudWatchDimensionConfiguration = /*@__PURE__*/ S.suspend(() =>
|
|
246
|
+
S.Struct({
|
|
247
|
+
DimensionName: S.String,
|
|
248
|
+
DimensionValueSource: DimensionValueSource,
|
|
249
|
+
DefaultDimensionValue: S.String,
|
|
250
|
+
}),
|
|
251
|
+
).annotate({
|
|
252
|
+
identifier: "CloudWatchDimensionConfiguration",
|
|
253
|
+
}) as any as S.Schema<CloudWatchDimensionConfiguration>;
|
|
254
254
|
export type CloudWatchDimensionConfigurations =
|
|
255
255
|
CloudWatchDimensionConfiguration[];
|
|
256
|
-
export const CloudWatchDimensionConfigurations =
|
|
257
|
-
|
|
256
|
+
export const CloudWatchDimensionConfigurations = /*@__PURE__*/ S.Array(
|
|
257
|
+
CloudWatchDimensionConfiguration,
|
|
258
|
+
);
|
|
258
259
|
export interface CloudWatchDestination {
|
|
259
260
|
DimensionConfigurations: CloudWatchDimensionConfiguration[];
|
|
260
261
|
}
|
|
@@ -426,10 +427,11 @@ export const CreateReceiptFilterRequest = /*@__PURE__*/ S.suspend(() =>
|
|
|
426
427
|
identifier: "CreateReceiptFilterRequest",
|
|
427
428
|
}) as any as S.Schema<CreateReceiptFilterRequest>;
|
|
428
429
|
export interface CreateReceiptFilterResponse {}
|
|
429
|
-
export const CreateReceiptFilterResponse =
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
430
|
+
export const CreateReceiptFilterResponse = /*@__PURE__*/ S.suspend(() =>
|
|
431
|
+
S.Struct({}).pipe(ns),
|
|
432
|
+
).annotate({
|
|
433
|
+
identifier: "CreateReceiptFilterResponse",
|
|
434
|
+
}) as any as S.Schema<CreateReceiptFilterResponse>;
|
|
433
435
|
export type TlsPolicy = "Require" | "Optional" | (string & {});
|
|
434
436
|
export const TlsPolicy = /*@__PURE__*/ S.String;
|
|
435
437
|
export type RecipientsList = string[];
|
|
@@ -596,27 +598,27 @@ export const CreateReceiptRuleResponse = /*@__PURE__*/ S.suspend(() =>
|
|
|
596
598
|
export interface CreateReceiptRuleSetRequest {
|
|
597
599
|
RuleSetName: string;
|
|
598
600
|
}
|
|
599
|
-
export const CreateReceiptRuleSetRequest =
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
rules,
|
|
610
|
-
),
|
|
601
|
+
export const CreateReceiptRuleSetRequest = /*@__PURE__*/ S.suspend(() =>
|
|
602
|
+
S.Struct({ RuleSetName: S.String }).pipe(
|
|
603
|
+
T.all(
|
|
604
|
+
ns,
|
|
605
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
606
|
+
svc,
|
|
607
|
+
auth,
|
|
608
|
+
proto,
|
|
609
|
+
ver,
|
|
610
|
+
rules,
|
|
611
611
|
),
|
|
612
|
-
)
|
|
613
|
-
|
|
614
|
-
|
|
612
|
+
),
|
|
613
|
+
).annotate({
|
|
614
|
+
identifier: "CreateReceiptRuleSetRequest",
|
|
615
|
+
}) as any as S.Schema<CreateReceiptRuleSetRequest>;
|
|
615
616
|
export interface CreateReceiptRuleSetResponse {}
|
|
616
|
-
export const CreateReceiptRuleSetResponse =
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
617
|
+
export const CreateReceiptRuleSetResponse = /*@__PURE__*/ S.suspend(() =>
|
|
618
|
+
S.Struct({}).pipe(ns),
|
|
619
|
+
).annotate({
|
|
620
|
+
identifier: "CreateReceiptRuleSetResponse",
|
|
621
|
+
}) as any as S.Schema<CreateReceiptRuleSetResponse>;
|
|
620
622
|
export interface Template {
|
|
621
623
|
TemplateName: string;
|
|
622
624
|
SubjectPart?: string;
|
|
@@ -658,27 +660,27 @@ export const CreateTemplateResponse = /*@__PURE__*/ S.suspend(() =>
|
|
|
658
660
|
export interface DeleteConfigurationSetRequest {
|
|
659
661
|
ConfigurationSetName: string;
|
|
660
662
|
}
|
|
661
|
-
export const DeleteConfigurationSetRequest =
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
rules,
|
|
672
|
-
),
|
|
663
|
+
export const DeleteConfigurationSetRequest = /*@__PURE__*/ S.suspend(() =>
|
|
664
|
+
S.Struct({ ConfigurationSetName: S.String }).pipe(
|
|
665
|
+
T.all(
|
|
666
|
+
ns,
|
|
667
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
668
|
+
svc,
|
|
669
|
+
auth,
|
|
670
|
+
proto,
|
|
671
|
+
ver,
|
|
672
|
+
rules,
|
|
673
673
|
),
|
|
674
|
-
)
|
|
675
|
-
|
|
676
|
-
|
|
674
|
+
),
|
|
675
|
+
).annotate({
|
|
676
|
+
identifier: "DeleteConfigurationSetRequest",
|
|
677
|
+
}) as any as S.Schema<DeleteConfigurationSetRequest>;
|
|
677
678
|
export interface DeleteConfigurationSetResponse {}
|
|
678
|
-
export const DeleteConfigurationSetResponse =
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
679
|
+
export const DeleteConfigurationSetResponse = /*@__PURE__*/ S.suspend(() =>
|
|
680
|
+
S.Struct({}).pipe(ns),
|
|
681
|
+
).annotate({
|
|
682
|
+
identifier: "DeleteConfigurationSetResponse",
|
|
683
|
+
}) as any as S.Schema<DeleteConfigurationSetResponse>;
|
|
682
684
|
export interface DeleteConfigurationSetEventDestinationRequest {
|
|
683
685
|
ConfigurationSetName: string;
|
|
684
686
|
EventDestinationName: string;
|
|
@@ -783,27 +785,27 @@ export interface DeleteIdentityPolicyRequest {
|
|
|
783
785
|
Identity: string;
|
|
784
786
|
PolicyName: string;
|
|
785
787
|
}
|
|
786
|
-
export const DeleteIdentityPolicyRequest =
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
rules,
|
|
797
|
-
),
|
|
788
|
+
export const DeleteIdentityPolicyRequest = /*@__PURE__*/ S.suspend(() =>
|
|
789
|
+
S.Struct({ Identity: S.String, PolicyName: S.String }).pipe(
|
|
790
|
+
T.all(
|
|
791
|
+
ns,
|
|
792
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
793
|
+
svc,
|
|
794
|
+
auth,
|
|
795
|
+
proto,
|
|
796
|
+
ver,
|
|
797
|
+
rules,
|
|
798
798
|
),
|
|
799
|
-
)
|
|
800
|
-
|
|
801
|
-
|
|
799
|
+
),
|
|
800
|
+
).annotate({
|
|
801
|
+
identifier: "DeleteIdentityPolicyRequest",
|
|
802
|
+
}) as any as S.Schema<DeleteIdentityPolicyRequest>;
|
|
802
803
|
export interface DeleteIdentityPolicyResponse {}
|
|
803
|
-
export const DeleteIdentityPolicyResponse =
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
804
|
+
export const DeleteIdentityPolicyResponse = /*@__PURE__*/ S.suspend(() =>
|
|
805
|
+
S.Struct({}).pipe(ns),
|
|
806
|
+
).annotate({
|
|
807
|
+
identifier: "DeleteIdentityPolicyResponse",
|
|
808
|
+
}) as any as S.Schema<DeleteIdentityPolicyResponse>;
|
|
807
809
|
export interface DeleteReceiptFilterRequest {
|
|
808
810
|
FilterName: string;
|
|
809
811
|
}
|
|
@@ -823,10 +825,11 @@ export const DeleteReceiptFilterRequest = /*@__PURE__*/ S.suspend(() =>
|
|
|
823
825
|
identifier: "DeleteReceiptFilterRequest",
|
|
824
826
|
}) as any as S.Schema<DeleteReceiptFilterRequest>;
|
|
825
827
|
export interface DeleteReceiptFilterResponse {}
|
|
826
|
-
export const DeleteReceiptFilterResponse =
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
828
|
+
export const DeleteReceiptFilterResponse = /*@__PURE__*/ S.suspend(() =>
|
|
829
|
+
S.Struct({}).pipe(ns),
|
|
830
|
+
).annotate({
|
|
831
|
+
identifier: "DeleteReceiptFilterResponse",
|
|
832
|
+
}) as any as S.Schema<DeleteReceiptFilterResponse>;
|
|
830
833
|
export interface DeleteReceiptRuleRequest {
|
|
831
834
|
RuleSetName: string;
|
|
832
835
|
RuleName: string;
|
|
@@ -855,27 +858,27 @@ export const DeleteReceiptRuleResponse = /*@__PURE__*/ S.suspend(() =>
|
|
|
855
858
|
export interface DeleteReceiptRuleSetRequest {
|
|
856
859
|
RuleSetName: string;
|
|
857
860
|
}
|
|
858
|
-
export const DeleteReceiptRuleSetRequest =
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
rules,
|
|
869
|
-
),
|
|
861
|
+
export const DeleteReceiptRuleSetRequest = /*@__PURE__*/ S.suspend(() =>
|
|
862
|
+
S.Struct({ RuleSetName: S.String }).pipe(
|
|
863
|
+
T.all(
|
|
864
|
+
ns,
|
|
865
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
866
|
+
svc,
|
|
867
|
+
auth,
|
|
868
|
+
proto,
|
|
869
|
+
ver,
|
|
870
|
+
rules,
|
|
870
871
|
),
|
|
871
|
-
)
|
|
872
|
-
|
|
873
|
-
|
|
872
|
+
),
|
|
873
|
+
).annotate({
|
|
874
|
+
identifier: "DeleteReceiptRuleSetRequest",
|
|
875
|
+
}) as any as S.Schema<DeleteReceiptRuleSetRequest>;
|
|
874
876
|
export interface DeleteReceiptRuleSetResponse {}
|
|
875
|
-
export const DeleteReceiptRuleSetResponse =
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
877
|
+
export const DeleteReceiptRuleSetResponse = /*@__PURE__*/ S.suspend(() =>
|
|
878
|
+
S.Struct({}).pipe(ns),
|
|
879
|
+
).annotate({
|
|
880
|
+
identifier: "DeleteReceiptRuleSetResponse",
|
|
881
|
+
}) as any as S.Schema<DeleteReceiptRuleSetResponse>;
|
|
879
882
|
export interface DeleteTemplateRequest {
|
|
880
883
|
TemplateName: string;
|
|
881
884
|
}
|
|
@@ -903,44 +906,43 @@ export const DeleteTemplateResponse = /*@__PURE__*/ S.suspend(() =>
|
|
|
903
906
|
export interface DeleteVerifiedEmailAddressRequest {
|
|
904
907
|
EmailAddress: string;
|
|
905
908
|
}
|
|
906
|
-
export const DeleteVerifiedEmailAddressRequest =
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
rules,
|
|
917
|
-
),
|
|
909
|
+
export const DeleteVerifiedEmailAddressRequest = /*@__PURE__*/ S.suspend(() =>
|
|
910
|
+
S.Struct({ EmailAddress: S.String }).pipe(
|
|
911
|
+
T.all(
|
|
912
|
+
ns,
|
|
913
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
914
|
+
svc,
|
|
915
|
+
auth,
|
|
916
|
+
proto,
|
|
917
|
+
ver,
|
|
918
|
+
rules,
|
|
918
919
|
),
|
|
919
|
-
)
|
|
920
|
-
|
|
921
|
-
|
|
920
|
+
),
|
|
921
|
+
).annotate({
|
|
922
|
+
identifier: "DeleteVerifiedEmailAddressRequest",
|
|
923
|
+
}) as any as S.Schema<DeleteVerifiedEmailAddressRequest>;
|
|
922
924
|
export interface DeleteVerifiedEmailAddressResponse {}
|
|
923
|
-
export const DeleteVerifiedEmailAddressResponse =
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
925
|
+
export const DeleteVerifiedEmailAddressResponse = /*@__PURE__*/ S.suspend(() =>
|
|
926
|
+
S.Struct({}).pipe(ns),
|
|
927
|
+
).annotate({
|
|
928
|
+
identifier: "DeleteVerifiedEmailAddressResponse",
|
|
929
|
+
}) as any as S.Schema<DeleteVerifiedEmailAddressResponse>;
|
|
927
930
|
export interface DescribeActiveReceiptRuleSetRequest {}
|
|
928
|
-
export const DescribeActiveReceiptRuleSetRequest =
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
rules,
|
|
939
|
-
),
|
|
931
|
+
export const DescribeActiveReceiptRuleSetRequest = /*@__PURE__*/ S.suspend(() =>
|
|
932
|
+
S.Struct({}).pipe(
|
|
933
|
+
T.all(
|
|
934
|
+
ns,
|
|
935
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
936
|
+
svc,
|
|
937
|
+
auth,
|
|
938
|
+
proto,
|
|
939
|
+
ver,
|
|
940
|
+
rules,
|
|
940
941
|
),
|
|
941
|
-
)
|
|
942
|
-
|
|
943
|
-
|
|
942
|
+
),
|
|
943
|
+
).annotate({
|
|
944
|
+
identifier: "DescribeActiveReceiptRuleSetRequest",
|
|
945
|
+
}) as any as S.Schema<DescribeActiveReceiptRuleSetRequest>;
|
|
944
946
|
export interface ReceiptRuleSetMetadata {
|
|
945
947
|
Name?: string;
|
|
946
948
|
CreatedTimestamp?: Date;
|
|
@@ -961,15 +963,15 @@ export interface DescribeActiveReceiptRuleSetResponse {
|
|
|
961
963
|
Metadata?: ReceiptRuleSetMetadata;
|
|
962
964
|
Rules?: ReceiptRule[];
|
|
963
965
|
}
|
|
964
|
-
export const DescribeActiveReceiptRuleSetResponse =
|
|
965
|
-
|
|
966
|
+
export const DescribeActiveReceiptRuleSetResponse = /*@__PURE__*/ S.suspend(
|
|
967
|
+
() =>
|
|
966
968
|
S.Struct({
|
|
967
969
|
Metadata: S.optional(ReceiptRuleSetMetadata),
|
|
968
970
|
Rules: S.optional(ReceiptRulesList),
|
|
969
971
|
}).pipe(ns),
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
972
|
+
).annotate({
|
|
973
|
+
identifier: "DescribeActiveReceiptRuleSetResponse",
|
|
974
|
+
}) as any as S.Schema<DescribeActiveReceiptRuleSetResponse>;
|
|
973
975
|
export type ConfigurationSetAttribute =
|
|
974
976
|
| "eventDestinations"
|
|
975
977
|
| "trackingOptions"
|
|
@@ -978,31 +980,31 @@ export type ConfigurationSetAttribute =
|
|
|
978
980
|
| (string & {});
|
|
979
981
|
export const ConfigurationSetAttribute = /*@__PURE__*/ S.String;
|
|
980
982
|
export type ConfigurationSetAttributeList = ConfigurationSetAttribute[];
|
|
981
|
-
export const ConfigurationSetAttributeList =
|
|
982
|
-
|
|
983
|
+
export const ConfigurationSetAttributeList = /*@__PURE__*/ S.Array(
|
|
984
|
+
ConfigurationSetAttribute,
|
|
985
|
+
);
|
|
983
986
|
export interface DescribeConfigurationSetRequest {
|
|
984
987
|
ConfigurationSetName: string;
|
|
985
988
|
ConfigurationSetAttributeNames?: ConfigurationSetAttribute[];
|
|
986
989
|
}
|
|
987
|
-
export const DescribeConfigurationSetRequest =
|
|
988
|
-
|
|
989
|
-
S.
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
rules,
|
|
1001
|
-
),
|
|
990
|
+
export const DescribeConfigurationSetRequest = /*@__PURE__*/ S.suspend(() =>
|
|
991
|
+
S.Struct({
|
|
992
|
+
ConfigurationSetName: S.String,
|
|
993
|
+
ConfigurationSetAttributeNames: S.optional(ConfigurationSetAttributeList),
|
|
994
|
+
}).pipe(
|
|
995
|
+
T.all(
|
|
996
|
+
ns,
|
|
997
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
998
|
+
svc,
|
|
999
|
+
auth,
|
|
1000
|
+
proto,
|
|
1001
|
+
ver,
|
|
1002
|
+
rules,
|
|
1002
1003
|
),
|
|
1003
|
-
)
|
|
1004
|
-
|
|
1005
|
-
|
|
1004
|
+
),
|
|
1005
|
+
).annotate({
|
|
1006
|
+
identifier: "DescribeConfigurationSetRequest",
|
|
1007
|
+
}) as any as S.Schema<DescribeConfigurationSetRequest>;
|
|
1006
1008
|
export type EventDestinations = EventDestination[];
|
|
1007
1009
|
export const EventDestinations = /*@__PURE__*/ S.Array(EventDestination);
|
|
1008
1010
|
export interface DeliveryOptions {
|
|
@@ -1036,18 +1038,17 @@ export interface DescribeConfigurationSetResponse {
|
|
|
1036
1038
|
DeliveryOptions?: DeliveryOptions;
|
|
1037
1039
|
ReputationOptions?: ReputationOptions;
|
|
1038
1040
|
}
|
|
1039
|
-
export const DescribeConfigurationSetResponse =
|
|
1040
|
-
|
|
1041
|
-
S.
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
}) as any as S.Schema<DescribeConfigurationSetResponse>;
|
|
1041
|
+
export const DescribeConfigurationSetResponse = /*@__PURE__*/ S.suspend(() =>
|
|
1042
|
+
S.Struct({
|
|
1043
|
+
ConfigurationSet: S.optional(ConfigurationSet),
|
|
1044
|
+
EventDestinations: S.optional(EventDestinations),
|
|
1045
|
+
TrackingOptions: S.optional(TrackingOptions),
|
|
1046
|
+
DeliveryOptions: S.optional(DeliveryOptions),
|
|
1047
|
+
ReputationOptions: S.optional(ReputationOptions),
|
|
1048
|
+
}).pipe(ns),
|
|
1049
|
+
).annotate({
|
|
1050
|
+
identifier: "DescribeConfigurationSetResponse",
|
|
1051
|
+
}) as any as S.Schema<DescribeConfigurationSetResponse>;
|
|
1051
1052
|
export interface DescribeReceiptRuleRequest {
|
|
1052
1053
|
RuleSetName: string;
|
|
1053
1054
|
RuleName: string;
|
|
@@ -1070,70 +1071,65 @@ export const DescribeReceiptRuleRequest = /*@__PURE__*/ S.suspend(() =>
|
|
|
1070
1071
|
export interface DescribeReceiptRuleResponse {
|
|
1071
1072
|
Rule?: ReceiptRule;
|
|
1072
1073
|
}
|
|
1073
|
-
export const DescribeReceiptRuleResponse =
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
}) as any as S.Schema<DescribeReceiptRuleResponse>;
|
|
1074
|
+
export const DescribeReceiptRuleResponse = /*@__PURE__*/ S.suspend(() =>
|
|
1075
|
+
S.Struct({ Rule: S.optional(ReceiptRule) }).pipe(ns),
|
|
1076
|
+
).annotate({
|
|
1077
|
+
identifier: "DescribeReceiptRuleResponse",
|
|
1078
|
+
}) as any as S.Schema<DescribeReceiptRuleResponse>;
|
|
1079
1079
|
export interface DescribeReceiptRuleSetRequest {
|
|
1080
1080
|
RuleSetName: string;
|
|
1081
1081
|
}
|
|
1082
|
-
export const DescribeReceiptRuleSetRequest =
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
rules,
|
|
1093
|
-
),
|
|
1082
|
+
export const DescribeReceiptRuleSetRequest = /*@__PURE__*/ S.suspend(() =>
|
|
1083
|
+
S.Struct({ RuleSetName: S.String }).pipe(
|
|
1084
|
+
T.all(
|
|
1085
|
+
ns,
|
|
1086
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
1087
|
+
svc,
|
|
1088
|
+
auth,
|
|
1089
|
+
proto,
|
|
1090
|
+
ver,
|
|
1091
|
+
rules,
|
|
1094
1092
|
),
|
|
1095
|
-
)
|
|
1096
|
-
|
|
1097
|
-
|
|
1093
|
+
),
|
|
1094
|
+
).annotate({
|
|
1095
|
+
identifier: "DescribeReceiptRuleSetRequest",
|
|
1096
|
+
}) as any as S.Schema<DescribeReceiptRuleSetRequest>;
|
|
1098
1097
|
export interface DescribeReceiptRuleSetResponse {
|
|
1099
1098
|
Metadata?: ReceiptRuleSetMetadata;
|
|
1100
1099
|
Rules?: ReceiptRule[];
|
|
1101
1100
|
}
|
|
1102
|
-
export const DescribeReceiptRuleSetResponse =
|
|
1103
|
-
|
|
1104
|
-
S.
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
}) as any as S.Schema<DescribeReceiptRuleSetResponse>;
|
|
1101
|
+
export const DescribeReceiptRuleSetResponse = /*@__PURE__*/ S.suspend(() =>
|
|
1102
|
+
S.Struct({
|
|
1103
|
+
Metadata: S.optional(ReceiptRuleSetMetadata),
|
|
1104
|
+
Rules: S.optional(ReceiptRulesList),
|
|
1105
|
+
}).pipe(ns),
|
|
1106
|
+
).annotate({
|
|
1107
|
+
identifier: "DescribeReceiptRuleSetResponse",
|
|
1108
|
+
}) as any as S.Schema<DescribeReceiptRuleSetResponse>;
|
|
1111
1109
|
export interface GetAccountSendingEnabledRequest {}
|
|
1112
|
-
export const GetAccountSendingEnabledRequest =
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
rules,
|
|
1123
|
-
),
|
|
1110
|
+
export const GetAccountSendingEnabledRequest = /*@__PURE__*/ S.suspend(() =>
|
|
1111
|
+
S.Struct({}).pipe(
|
|
1112
|
+
T.all(
|
|
1113
|
+
ns,
|
|
1114
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
1115
|
+
svc,
|
|
1116
|
+
auth,
|
|
1117
|
+
proto,
|
|
1118
|
+
ver,
|
|
1119
|
+
rules,
|
|
1124
1120
|
),
|
|
1125
|
-
)
|
|
1126
|
-
|
|
1127
|
-
|
|
1121
|
+
),
|
|
1122
|
+
).annotate({
|
|
1123
|
+
identifier: "GetAccountSendingEnabledRequest",
|
|
1124
|
+
}) as any as S.Schema<GetAccountSendingEnabledRequest>;
|
|
1128
1125
|
export interface GetAccountSendingEnabledResponse {
|
|
1129
1126
|
Enabled?: boolean;
|
|
1130
1127
|
}
|
|
1131
|
-
export const GetAccountSendingEnabledResponse =
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
}) as any as S.Schema<GetAccountSendingEnabledResponse>;
|
|
1128
|
+
export const GetAccountSendingEnabledResponse = /*@__PURE__*/ S.suspend(() =>
|
|
1129
|
+
S.Struct({ Enabled: S.optional(S.Boolean) }).pipe(ns),
|
|
1130
|
+
).annotate({
|
|
1131
|
+
identifier: "GetAccountSendingEnabledResponse",
|
|
1132
|
+
}) as any as S.Schema<GetAccountSendingEnabledResponse>;
|
|
1137
1133
|
export interface GetCustomVerificationEmailTemplateRequest {
|
|
1138
1134
|
TemplateName: string;
|
|
1139
1135
|
}
|
|
@@ -1179,22 +1175,21 @@ export const IdentityList = /*@__PURE__*/ S.Array(S.String);
|
|
|
1179
1175
|
export interface GetIdentityDkimAttributesRequest {
|
|
1180
1176
|
Identities: string[];
|
|
1181
1177
|
}
|
|
1182
|
-
export const GetIdentityDkimAttributesRequest =
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
rules,
|
|
1193
|
-
),
|
|
1178
|
+
export const GetIdentityDkimAttributesRequest = /*@__PURE__*/ S.suspend(() =>
|
|
1179
|
+
S.Struct({ Identities: IdentityList }).pipe(
|
|
1180
|
+
T.all(
|
|
1181
|
+
ns,
|
|
1182
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
1183
|
+
svc,
|
|
1184
|
+
auth,
|
|
1185
|
+
proto,
|
|
1186
|
+
ver,
|
|
1187
|
+
rules,
|
|
1194
1188
|
),
|
|
1195
|
-
)
|
|
1196
|
-
|
|
1197
|
-
|
|
1189
|
+
),
|
|
1190
|
+
).annotate({
|
|
1191
|
+
identifier: "GetIdentityDkimAttributesRequest",
|
|
1192
|
+
}) as any as S.Schema<GetIdentityDkimAttributesRequest>;
|
|
1198
1193
|
export type VerificationStatus =
|
|
1199
1194
|
| "Pending"
|
|
1200
1195
|
| "Success"
|
|
@@ -1229,12 +1224,11 @@ export const DkimAttributes = /*@__PURE__*/ S.Record(
|
|
|
1229
1224
|
export interface GetIdentityDkimAttributesResponse {
|
|
1230
1225
|
DkimAttributes: { [key: string]: IdentityDkimAttributes | undefined };
|
|
1231
1226
|
}
|
|
1232
|
-
export const GetIdentityDkimAttributesResponse =
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
}) as any as S.Schema<GetIdentityDkimAttributesResponse>;
|
|
1227
|
+
export const GetIdentityDkimAttributesResponse = /*@__PURE__*/ S.suspend(() =>
|
|
1228
|
+
S.Struct({ DkimAttributes: DkimAttributes }).pipe(ns),
|
|
1229
|
+
).annotate({
|
|
1230
|
+
identifier: "GetIdentityDkimAttributesResponse",
|
|
1231
|
+
}) as any as S.Schema<GetIdentityDkimAttributesResponse>;
|
|
1238
1232
|
export interface GetIdentityMailFromDomainAttributesRequest {
|
|
1239
1233
|
Identities: string[];
|
|
1240
1234
|
}
|
|
@@ -1271,16 +1265,15 @@ export interface IdentityMailFromDomainAttributes {
|
|
|
1271
1265
|
MailFromDomainStatus: CustomMailFromStatus;
|
|
1272
1266
|
BehaviorOnMXFailure: BehaviorOnMXFailure;
|
|
1273
1267
|
}
|
|
1274
|
-
export const IdentityMailFromDomainAttributes =
|
|
1275
|
-
|
|
1276
|
-
S.
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
}) as any as S.Schema<IdentityMailFromDomainAttributes>;
|
|
1268
|
+
export const IdentityMailFromDomainAttributes = /*@__PURE__*/ S.suspend(() =>
|
|
1269
|
+
S.Struct({
|
|
1270
|
+
MailFromDomain: S.String,
|
|
1271
|
+
MailFromDomainStatus: CustomMailFromStatus,
|
|
1272
|
+
BehaviorOnMXFailure: BehaviorOnMXFailure,
|
|
1273
|
+
}),
|
|
1274
|
+
).annotate({
|
|
1275
|
+
identifier: "IdentityMailFromDomainAttributes",
|
|
1276
|
+
}) as any as S.Schema<IdentityMailFromDomainAttributes>;
|
|
1284
1277
|
export type MailFromDomainAttributes = {
|
|
1285
1278
|
[key: string]: IdentityMailFromDomainAttributes | undefined;
|
|
1286
1279
|
};
|
|
@@ -1302,8 +1295,8 @@ export const GetIdentityMailFromDomainAttributesResponse =
|
|
|
1302
1295
|
export interface GetIdentityNotificationAttributesRequest {
|
|
1303
1296
|
Identities: string[];
|
|
1304
1297
|
}
|
|
1305
|
-
export const GetIdentityNotificationAttributesRequest =
|
|
1306
|
-
|
|
1298
|
+
export const GetIdentityNotificationAttributesRequest = /*@__PURE__*/ S.suspend(
|
|
1299
|
+
() =>
|
|
1307
1300
|
S.Struct({ Identities: IdentityList }).pipe(
|
|
1308
1301
|
T.all(
|
|
1309
1302
|
ns,
|
|
@@ -1315,9 +1308,9 @@ export const GetIdentityNotificationAttributesRequest =
|
|
|
1315
1308
|
rules,
|
|
1316
1309
|
),
|
|
1317
1310
|
),
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1311
|
+
).annotate({
|
|
1312
|
+
identifier: "GetIdentityNotificationAttributesRequest",
|
|
1313
|
+
}) as any as S.Schema<GetIdentityNotificationAttributesRequest>;
|
|
1321
1314
|
export interface IdentityNotificationAttributes {
|
|
1322
1315
|
BounceTopic: string;
|
|
1323
1316
|
ComplaintTopic: string;
|
|
@@ -1327,20 +1320,19 @@ export interface IdentityNotificationAttributes {
|
|
|
1327
1320
|
HeadersInComplaintNotificationsEnabled?: boolean;
|
|
1328
1321
|
HeadersInDeliveryNotificationsEnabled?: boolean;
|
|
1329
1322
|
}
|
|
1330
|
-
export const IdentityNotificationAttributes =
|
|
1331
|
-
|
|
1332
|
-
S.
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
}) as any as S.Schema<IdentityNotificationAttributes>;
|
|
1323
|
+
export const IdentityNotificationAttributes = /*@__PURE__*/ S.suspend(() =>
|
|
1324
|
+
S.Struct({
|
|
1325
|
+
BounceTopic: S.String,
|
|
1326
|
+
ComplaintTopic: S.String,
|
|
1327
|
+
DeliveryTopic: S.String,
|
|
1328
|
+
ForwardingEnabled: S.Boolean,
|
|
1329
|
+
HeadersInBounceNotificationsEnabled: S.optional(S.Boolean),
|
|
1330
|
+
HeadersInComplaintNotificationsEnabled: S.optional(S.Boolean),
|
|
1331
|
+
HeadersInDeliveryNotificationsEnabled: S.optional(S.Boolean),
|
|
1332
|
+
}),
|
|
1333
|
+
).annotate({
|
|
1334
|
+
identifier: "IdentityNotificationAttributes",
|
|
1335
|
+
}) as any as S.Schema<IdentityNotificationAttributes>;
|
|
1344
1336
|
export type NotificationAttributes = {
|
|
1345
1337
|
[key: string]: IdentityNotificationAttributes | undefined;
|
|
1346
1338
|
};
|
|
@@ -1388,17 +1380,16 @@ export const PolicyMap = /*@__PURE__*/ S.Record(
|
|
|
1388
1380
|
export interface GetIdentityPoliciesResponse {
|
|
1389
1381
|
Policies: { [key: string]: string | undefined };
|
|
1390
1382
|
}
|
|
1391
|
-
export const GetIdentityPoliciesResponse =
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
}) as any as S.Schema<GetIdentityPoliciesResponse>;
|
|
1383
|
+
export const GetIdentityPoliciesResponse = /*@__PURE__*/ S.suspend(() =>
|
|
1384
|
+
S.Struct({ Policies: PolicyMap }).pipe(ns),
|
|
1385
|
+
).annotate({
|
|
1386
|
+
identifier: "GetIdentityPoliciesResponse",
|
|
1387
|
+
}) as any as S.Schema<GetIdentityPoliciesResponse>;
|
|
1397
1388
|
export interface GetIdentityVerificationAttributesRequest {
|
|
1398
1389
|
Identities: string[];
|
|
1399
1390
|
}
|
|
1400
|
-
export const GetIdentityVerificationAttributesRequest =
|
|
1401
|
-
|
|
1391
|
+
export const GetIdentityVerificationAttributesRequest = /*@__PURE__*/ S.suspend(
|
|
1392
|
+
() =>
|
|
1402
1393
|
S.Struct({ Identities: IdentityList }).pipe(
|
|
1403
1394
|
T.all(
|
|
1404
1395
|
ns,
|
|
@@ -1410,22 +1401,21 @@ export const GetIdentityVerificationAttributesRequest =
|
|
|
1410
1401
|
rules,
|
|
1411
1402
|
),
|
|
1412
1403
|
),
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1404
|
+
).annotate({
|
|
1405
|
+
identifier: "GetIdentityVerificationAttributesRequest",
|
|
1406
|
+
}) as any as S.Schema<GetIdentityVerificationAttributesRequest>;
|
|
1416
1407
|
export interface IdentityVerificationAttributes {
|
|
1417
1408
|
VerificationStatus: VerificationStatus;
|
|
1418
1409
|
VerificationToken?: string;
|
|
1419
1410
|
}
|
|
1420
|
-
export const IdentityVerificationAttributes =
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
}) as any as S.Schema<IdentityVerificationAttributes>;
|
|
1411
|
+
export const IdentityVerificationAttributes = /*@__PURE__*/ S.suspend(() =>
|
|
1412
|
+
S.Struct({
|
|
1413
|
+
VerificationStatus: VerificationStatus,
|
|
1414
|
+
VerificationToken: S.optional(S.String),
|
|
1415
|
+
}),
|
|
1416
|
+
).annotate({
|
|
1417
|
+
identifier: "IdentityVerificationAttributes",
|
|
1418
|
+
}) as any as S.Schema<IdentityVerificationAttributes>;
|
|
1429
1419
|
export type VerificationAttributes = {
|
|
1430
1420
|
[key: string]: IdentityVerificationAttributes | undefined;
|
|
1431
1421
|
};
|
|
@@ -1548,40 +1538,38 @@ export interface ListConfigurationSetsRequest {
|
|
|
1548
1538
|
NextToken?: string;
|
|
1549
1539
|
MaxItems?: number;
|
|
1550
1540
|
}
|
|
1551
|
-
export const ListConfigurationSetsRequest =
|
|
1552
|
-
|
|
1553
|
-
S.
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
rules,
|
|
1565
|
-
),
|
|
1541
|
+
export const ListConfigurationSetsRequest = /*@__PURE__*/ S.suspend(() =>
|
|
1542
|
+
S.Struct({
|
|
1543
|
+
NextToken: S.optional(S.String),
|
|
1544
|
+
MaxItems: S.optional(S.Number),
|
|
1545
|
+
}).pipe(
|
|
1546
|
+
T.all(
|
|
1547
|
+
ns,
|
|
1548
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
1549
|
+
svc,
|
|
1550
|
+
auth,
|
|
1551
|
+
proto,
|
|
1552
|
+
ver,
|
|
1553
|
+
rules,
|
|
1566
1554
|
),
|
|
1567
|
-
)
|
|
1568
|
-
|
|
1569
|
-
|
|
1555
|
+
),
|
|
1556
|
+
).annotate({
|
|
1557
|
+
identifier: "ListConfigurationSetsRequest",
|
|
1558
|
+
}) as any as S.Schema<ListConfigurationSetsRequest>;
|
|
1570
1559
|
export type ConfigurationSets = ConfigurationSet[];
|
|
1571
1560
|
export const ConfigurationSets = /*@__PURE__*/ S.Array(ConfigurationSet);
|
|
1572
1561
|
export interface ListConfigurationSetsResponse {
|
|
1573
1562
|
ConfigurationSets?: ConfigurationSet[];
|
|
1574
1563
|
NextToken?: string;
|
|
1575
1564
|
}
|
|
1576
|
-
export const ListConfigurationSetsResponse =
|
|
1577
|
-
|
|
1578
|
-
S.
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
}) as any as S.Schema<ListConfigurationSetsResponse>;
|
|
1565
|
+
export const ListConfigurationSetsResponse = /*@__PURE__*/ S.suspend(() =>
|
|
1566
|
+
S.Struct({
|
|
1567
|
+
ConfigurationSets: S.optional(ConfigurationSets),
|
|
1568
|
+
NextToken: S.optional(S.String),
|
|
1569
|
+
}).pipe(ns),
|
|
1570
|
+
).annotate({
|
|
1571
|
+
identifier: "ListConfigurationSetsResponse",
|
|
1572
|
+
}) as any as S.Schema<ListConfigurationSetsResponse>;
|
|
1585
1573
|
export interface ListCustomVerificationEmailTemplatesRequest {
|
|
1586
1574
|
NextToken?: string;
|
|
1587
1575
|
MaxResults?: number;
|
|
@@ -1612,22 +1600,22 @@ export interface CustomVerificationEmailTemplate {
|
|
|
1612
1600
|
SuccessRedirectionURL?: string;
|
|
1613
1601
|
FailureRedirectionURL?: string;
|
|
1614
1602
|
}
|
|
1615
|
-
export const CustomVerificationEmailTemplate =
|
|
1616
|
-
|
|
1617
|
-
S.
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
}) as any as S.Schema<CustomVerificationEmailTemplate>;
|
|
1603
|
+
export const CustomVerificationEmailTemplate = /*@__PURE__*/ S.suspend(() =>
|
|
1604
|
+
S.Struct({
|
|
1605
|
+
TemplateName: S.optional(S.String),
|
|
1606
|
+
FromEmailAddress: S.optional(S.String),
|
|
1607
|
+
TemplateSubject: S.optional(S.String),
|
|
1608
|
+
SuccessRedirectionURL: S.optional(S.String),
|
|
1609
|
+
FailureRedirectionURL: S.optional(S.String),
|
|
1610
|
+
}),
|
|
1611
|
+
).annotate({
|
|
1612
|
+
identifier: "CustomVerificationEmailTemplate",
|
|
1613
|
+
}) as any as S.Schema<CustomVerificationEmailTemplate>;
|
|
1627
1614
|
export type CustomVerificationEmailTemplates =
|
|
1628
1615
|
CustomVerificationEmailTemplate[];
|
|
1629
|
-
export const CustomVerificationEmailTemplates =
|
|
1630
|
-
|
|
1616
|
+
export const CustomVerificationEmailTemplates = /*@__PURE__*/ S.Array(
|
|
1617
|
+
CustomVerificationEmailTemplate,
|
|
1618
|
+
);
|
|
1631
1619
|
export interface ListCustomVerificationEmailTemplatesResponse {
|
|
1632
1620
|
CustomVerificationEmailTemplates?: CustomVerificationEmailTemplate[];
|
|
1633
1621
|
NextToken?: string;
|
|
@@ -1674,41 +1662,38 @@ export interface ListIdentitiesResponse {
|
|
|
1674
1662
|
NextToken?: string;
|
|
1675
1663
|
}
|
|
1676
1664
|
export const ListIdentitiesResponse = /*@__PURE__*/ S.suspend(() =>
|
|
1677
|
-
S.Struct({
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
}).pipe(ns),
|
|
1665
|
+
S.Struct({ Identities: IdentityList, NextToken: S.optional(S.String) }).pipe(
|
|
1666
|
+
ns,
|
|
1667
|
+
),
|
|
1681
1668
|
).annotate({
|
|
1682
1669
|
identifier: "ListIdentitiesResponse",
|
|
1683
1670
|
}) as any as S.Schema<ListIdentitiesResponse>;
|
|
1684
1671
|
export interface ListIdentityPoliciesRequest {
|
|
1685
1672
|
Identity: string;
|
|
1686
1673
|
}
|
|
1687
|
-
export const ListIdentityPoliciesRequest =
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
rules,
|
|
1698
|
-
),
|
|
1674
|
+
export const ListIdentityPoliciesRequest = /*@__PURE__*/ S.suspend(() =>
|
|
1675
|
+
S.Struct({ Identity: S.String }).pipe(
|
|
1676
|
+
T.all(
|
|
1677
|
+
ns,
|
|
1678
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
1679
|
+
svc,
|
|
1680
|
+
auth,
|
|
1681
|
+
proto,
|
|
1682
|
+
ver,
|
|
1683
|
+
rules,
|
|
1699
1684
|
),
|
|
1700
|
-
)
|
|
1701
|
-
|
|
1702
|
-
|
|
1685
|
+
),
|
|
1686
|
+
).annotate({
|
|
1687
|
+
identifier: "ListIdentityPoliciesRequest",
|
|
1688
|
+
}) as any as S.Schema<ListIdentityPoliciesRequest>;
|
|
1703
1689
|
export interface ListIdentityPoliciesResponse {
|
|
1704
1690
|
PolicyNames: string[];
|
|
1705
1691
|
}
|
|
1706
|
-
export const ListIdentityPoliciesResponse =
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
}) as any as S.Schema<ListIdentityPoliciesResponse>;
|
|
1692
|
+
export const ListIdentityPoliciesResponse = /*@__PURE__*/ S.suspend(() =>
|
|
1693
|
+
S.Struct({ PolicyNames: PolicyNameList }).pipe(ns),
|
|
1694
|
+
).annotate({
|
|
1695
|
+
identifier: "ListIdentityPoliciesResponse",
|
|
1696
|
+
}) as any as S.Schema<ListIdentityPoliciesResponse>;
|
|
1712
1697
|
export interface ListReceiptFiltersRequest {}
|
|
1713
1698
|
export const ListReceiptFiltersRequest = /*@__PURE__*/ S.suspend(() =>
|
|
1714
1699
|
S.Struct({}).pipe(
|
|
@@ -1761,15 +1746,14 @@ export interface ListReceiptRuleSetsResponse {
|
|
|
1761
1746
|
RuleSets?: ReceiptRuleSetMetadata[];
|
|
1762
1747
|
NextToken?: string;
|
|
1763
1748
|
}
|
|
1764
|
-
export const ListReceiptRuleSetsResponse =
|
|
1765
|
-
|
|
1766
|
-
S.
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
}) as any as S.Schema<ListReceiptRuleSetsResponse>;
|
|
1749
|
+
export const ListReceiptRuleSetsResponse = /*@__PURE__*/ S.suspend(() =>
|
|
1750
|
+
S.Struct({
|
|
1751
|
+
RuleSets: S.optional(ReceiptRuleSetsLists),
|
|
1752
|
+
NextToken: S.optional(S.String),
|
|
1753
|
+
}).pipe(ns),
|
|
1754
|
+
).annotate({
|
|
1755
|
+
identifier: "ListReceiptRuleSetsResponse",
|
|
1756
|
+
}) as any as S.Schema<ListReceiptRuleSetsResponse>;
|
|
1773
1757
|
export interface ListTemplatesRequest {
|
|
1774
1758
|
NextToken?: string;
|
|
1775
1759
|
MaxItems?: number;
|
|
@@ -1821,33 +1805,31 @@ export const ListTemplatesResponse = /*@__PURE__*/ S.suspend(() =>
|
|
|
1821
1805
|
identifier: "ListTemplatesResponse",
|
|
1822
1806
|
}) as any as S.Schema<ListTemplatesResponse>;
|
|
1823
1807
|
export interface ListVerifiedEmailAddressesRequest {}
|
|
1824
|
-
export const ListVerifiedEmailAddressesRequest =
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
rules,
|
|
1835
|
-
),
|
|
1808
|
+
export const ListVerifiedEmailAddressesRequest = /*@__PURE__*/ S.suspend(() =>
|
|
1809
|
+
S.Struct({}).pipe(
|
|
1810
|
+
T.all(
|
|
1811
|
+
ns,
|
|
1812
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
1813
|
+
svc,
|
|
1814
|
+
auth,
|
|
1815
|
+
proto,
|
|
1816
|
+
ver,
|
|
1817
|
+
rules,
|
|
1836
1818
|
),
|
|
1837
|
-
)
|
|
1838
|
-
|
|
1839
|
-
|
|
1819
|
+
),
|
|
1820
|
+
).annotate({
|
|
1821
|
+
identifier: "ListVerifiedEmailAddressesRequest",
|
|
1822
|
+
}) as any as S.Schema<ListVerifiedEmailAddressesRequest>;
|
|
1840
1823
|
export type AddressList = string[];
|
|
1841
1824
|
export const AddressList = /*@__PURE__*/ S.Array(S.String);
|
|
1842
1825
|
export interface ListVerifiedEmailAddressesResponse {
|
|
1843
1826
|
VerifiedEmailAddresses?: string[];
|
|
1844
1827
|
}
|
|
1845
|
-
export const ListVerifiedEmailAddressesResponse =
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
}) as any as S.Schema<ListVerifiedEmailAddressesResponse>;
|
|
1828
|
+
export const ListVerifiedEmailAddressesResponse = /*@__PURE__*/ S.suspend(() =>
|
|
1829
|
+
S.Struct({ VerifiedEmailAddresses: S.optional(AddressList) }).pipe(ns),
|
|
1830
|
+
).annotate({
|
|
1831
|
+
identifier: "ListVerifiedEmailAddressesResponse",
|
|
1832
|
+
}) as any as S.Schema<ListVerifiedEmailAddressesResponse>;
|
|
1851
1833
|
export interface PutConfigurationSetDeliveryOptionsRequest {
|
|
1852
1834
|
ConfigurationSetName: string;
|
|
1853
1835
|
DeliveryOptions?: DeliveryOptions;
|
|
@@ -1882,11 +1864,7 @@ export interface PutIdentityPolicyRequest {
|
|
|
1882
1864
|
Policy: string;
|
|
1883
1865
|
}
|
|
1884
1866
|
export const PutIdentityPolicyRequest = /*@__PURE__*/ S.suspend(() =>
|
|
1885
|
-
S.Struct({
|
|
1886
|
-
Identity: S.String,
|
|
1887
|
-
PolicyName: S.String,
|
|
1888
|
-
Policy: S.String,
|
|
1889
|
-
}).pipe(
|
|
1867
|
+
S.Struct({ Identity: S.String, PolicyName: S.String, Policy: S.String }).pipe(
|
|
1890
1868
|
T.all(
|
|
1891
1869
|
ns,
|
|
1892
1870
|
T.Http({ method: "POST", uri: "/" }),
|
|
@@ -1912,27 +1890,27 @@ export interface ReorderReceiptRuleSetRequest {
|
|
|
1912
1890
|
RuleSetName: string;
|
|
1913
1891
|
RuleNames: string[];
|
|
1914
1892
|
}
|
|
1915
|
-
export const ReorderReceiptRuleSetRequest =
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
rules,
|
|
1926
|
-
),
|
|
1893
|
+
export const ReorderReceiptRuleSetRequest = /*@__PURE__*/ S.suspend(() =>
|
|
1894
|
+
S.Struct({ RuleSetName: S.String, RuleNames: ReceiptRuleNamesList }).pipe(
|
|
1895
|
+
T.all(
|
|
1896
|
+
ns,
|
|
1897
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
1898
|
+
svc,
|
|
1899
|
+
auth,
|
|
1900
|
+
proto,
|
|
1901
|
+
ver,
|
|
1902
|
+
rules,
|
|
1927
1903
|
),
|
|
1928
|
-
)
|
|
1929
|
-
|
|
1930
|
-
|
|
1904
|
+
),
|
|
1905
|
+
).annotate({
|
|
1906
|
+
identifier: "ReorderReceiptRuleSetRequest",
|
|
1907
|
+
}) as any as S.Schema<ReorderReceiptRuleSetRequest>;
|
|
1931
1908
|
export interface ReorderReceiptRuleSetResponse {}
|
|
1932
|
-
export const ReorderReceiptRuleSetResponse =
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1909
|
+
export const ReorderReceiptRuleSetResponse = /*@__PURE__*/ S.suspend(() =>
|
|
1910
|
+
S.Struct({}).pipe(ns),
|
|
1911
|
+
).annotate({
|
|
1912
|
+
identifier: "ReorderReceiptRuleSetResponse",
|
|
1913
|
+
}) as any as S.Schema<ReorderReceiptRuleSetResponse>;
|
|
1936
1914
|
export interface ExtensionField {
|
|
1937
1915
|
Name: string;
|
|
1938
1916
|
Value: string;
|
|
@@ -2105,34 +2083,33 @@ export interface SendBulkTemplatedEmailRequest {
|
|
|
2105
2083
|
DefaultTemplateData: string;
|
|
2106
2084
|
Destinations: BulkEmailDestination[];
|
|
2107
2085
|
}
|
|
2108
|
-
export const SendBulkTemplatedEmailRequest =
|
|
2109
|
-
|
|
2110
|
-
S.
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
rules,
|
|
2131
|
-
),
|
|
2086
|
+
export const SendBulkTemplatedEmailRequest = /*@__PURE__*/ S.suspend(() =>
|
|
2087
|
+
S.Struct({
|
|
2088
|
+
Source: S.String,
|
|
2089
|
+
SourceArn: S.optional(S.String),
|
|
2090
|
+
ReplyToAddresses: S.optional(AddressList),
|
|
2091
|
+
ReturnPath: S.optional(S.String),
|
|
2092
|
+
ReturnPathArn: S.optional(S.String),
|
|
2093
|
+
ConfigurationSetName: S.optional(S.String),
|
|
2094
|
+
DefaultTags: S.optional(MessageTagList),
|
|
2095
|
+
Template: S.String,
|
|
2096
|
+
TemplateArn: S.optional(S.String),
|
|
2097
|
+
DefaultTemplateData: S.String,
|
|
2098
|
+
Destinations: BulkEmailDestinationList,
|
|
2099
|
+
}).pipe(
|
|
2100
|
+
T.all(
|
|
2101
|
+
ns,
|
|
2102
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
2103
|
+
svc,
|
|
2104
|
+
auth,
|
|
2105
|
+
proto,
|
|
2106
|
+
ver,
|
|
2107
|
+
rules,
|
|
2132
2108
|
),
|
|
2133
|
-
)
|
|
2134
|
-
|
|
2135
|
-
|
|
2109
|
+
),
|
|
2110
|
+
).annotate({
|
|
2111
|
+
identifier: "SendBulkTemplatedEmailRequest",
|
|
2112
|
+
}) as any as S.Schema<SendBulkTemplatedEmailRequest>;
|
|
2136
2113
|
export type BulkEmailStatus =
|
|
2137
2114
|
| "Success"
|
|
2138
2115
|
| "MessageRejected"
|
|
@@ -2165,51 +2142,49 @@ export const BulkEmailDestinationStatus = /*@__PURE__*/ S.suspend(() =>
|
|
|
2165
2142
|
identifier: "BulkEmailDestinationStatus",
|
|
2166
2143
|
}) as any as S.Schema<BulkEmailDestinationStatus>;
|
|
2167
2144
|
export type BulkEmailDestinationStatusList = BulkEmailDestinationStatus[];
|
|
2168
|
-
export const BulkEmailDestinationStatusList =
|
|
2169
|
-
|
|
2145
|
+
export const BulkEmailDestinationStatusList = /*@__PURE__*/ S.Array(
|
|
2146
|
+
BulkEmailDestinationStatus,
|
|
2147
|
+
);
|
|
2170
2148
|
export interface SendBulkTemplatedEmailResponse {
|
|
2171
2149
|
Status: BulkEmailDestinationStatus[];
|
|
2172
2150
|
}
|
|
2173
|
-
export const SendBulkTemplatedEmailResponse =
|
|
2174
|
-
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
}) as any as S.Schema<SendBulkTemplatedEmailResponse>;
|
|
2151
|
+
export const SendBulkTemplatedEmailResponse = /*@__PURE__*/ S.suspend(() =>
|
|
2152
|
+
S.Struct({ Status: BulkEmailDestinationStatusList }).pipe(ns),
|
|
2153
|
+
).annotate({
|
|
2154
|
+
identifier: "SendBulkTemplatedEmailResponse",
|
|
2155
|
+
}) as any as S.Schema<SendBulkTemplatedEmailResponse>;
|
|
2179
2156
|
export interface SendCustomVerificationEmailRequest {
|
|
2180
2157
|
EmailAddress: string;
|
|
2181
2158
|
TemplateName: string;
|
|
2182
2159
|
ConfigurationSetName?: string;
|
|
2183
2160
|
}
|
|
2184
|
-
export const SendCustomVerificationEmailRequest =
|
|
2185
|
-
|
|
2186
|
-
S.
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
rules,
|
|
2199
|
-
),
|
|
2161
|
+
export const SendCustomVerificationEmailRequest = /*@__PURE__*/ S.suspend(() =>
|
|
2162
|
+
S.Struct({
|
|
2163
|
+
EmailAddress: S.String,
|
|
2164
|
+
TemplateName: S.String,
|
|
2165
|
+
ConfigurationSetName: S.optional(S.String),
|
|
2166
|
+
}).pipe(
|
|
2167
|
+
T.all(
|
|
2168
|
+
ns,
|
|
2169
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
2170
|
+
svc,
|
|
2171
|
+
auth,
|
|
2172
|
+
proto,
|
|
2173
|
+
ver,
|
|
2174
|
+
rules,
|
|
2200
2175
|
),
|
|
2201
|
-
)
|
|
2202
|
-
|
|
2203
|
-
|
|
2176
|
+
),
|
|
2177
|
+
).annotate({
|
|
2178
|
+
identifier: "SendCustomVerificationEmailRequest",
|
|
2179
|
+
}) as any as S.Schema<SendCustomVerificationEmailRequest>;
|
|
2204
2180
|
export interface SendCustomVerificationEmailResponse {
|
|
2205
2181
|
MessageId?: string;
|
|
2206
2182
|
}
|
|
2207
|
-
export const SendCustomVerificationEmailResponse =
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
}) as any as S.Schema<SendCustomVerificationEmailResponse>;
|
|
2183
|
+
export const SendCustomVerificationEmailResponse = /*@__PURE__*/ S.suspend(() =>
|
|
2184
|
+
S.Struct({ MessageId: S.optional(S.String) }).pipe(ns),
|
|
2185
|
+
).annotate({
|
|
2186
|
+
identifier: "SendCustomVerificationEmailResponse",
|
|
2187
|
+
}) as any as S.Schema<SendCustomVerificationEmailResponse>;
|
|
2213
2188
|
export interface Content {
|
|
2214
2189
|
Data: string;
|
|
2215
2190
|
Charset?: string;
|
|
@@ -2374,52 +2349,52 @@ export const SendTemplatedEmailResponse = /*@__PURE__*/ S.suspend(() =>
|
|
|
2374
2349
|
export interface SetActiveReceiptRuleSetRequest {
|
|
2375
2350
|
RuleSetName?: string;
|
|
2376
2351
|
}
|
|
2377
|
-
export const SetActiveReceiptRuleSetRequest =
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
rules,
|
|
2388
|
-
),
|
|
2352
|
+
export const SetActiveReceiptRuleSetRequest = /*@__PURE__*/ S.suspend(() =>
|
|
2353
|
+
S.Struct({ RuleSetName: S.optional(S.String) }).pipe(
|
|
2354
|
+
T.all(
|
|
2355
|
+
ns,
|
|
2356
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
2357
|
+
svc,
|
|
2358
|
+
auth,
|
|
2359
|
+
proto,
|
|
2360
|
+
ver,
|
|
2361
|
+
rules,
|
|
2389
2362
|
),
|
|
2390
|
-
)
|
|
2391
|
-
|
|
2392
|
-
|
|
2363
|
+
),
|
|
2364
|
+
).annotate({
|
|
2365
|
+
identifier: "SetActiveReceiptRuleSetRequest",
|
|
2366
|
+
}) as any as S.Schema<SetActiveReceiptRuleSetRequest>;
|
|
2393
2367
|
export interface SetActiveReceiptRuleSetResponse {}
|
|
2394
|
-
export const SetActiveReceiptRuleSetResponse =
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2368
|
+
export const SetActiveReceiptRuleSetResponse = /*@__PURE__*/ S.suspend(() =>
|
|
2369
|
+
S.Struct({}).pipe(ns),
|
|
2370
|
+
).annotate({
|
|
2371
|
+
identifier: "SetActiveReceiptRuleSetResponse",
|
|
2372
|
+
}) as any as S.Schema<SetActiveReceiptRuleSetResponse>;
|
|
2398
2373
|
export interface SetIdentityDkimEnabledRequest {
|
|
2399
2374
|
Identity: string;
|
|
2400
2375
|
DkimEnabled: boolean;
|
|
2401
2376
|
}
|
|
2402
|
-
export const SetIdentityDkimEnabledRequest =
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
rules,
|
|
2413
|
-
),
|
|
2377
|
+
export const SetIdentityDkimEnabledRequest = /*@__PURE__*/ S.suspend(() =>
|
|
2378
|
+
S.Struct({ Identity: S.String, DkimEnabled: S.Boolean }).pipe(
|
|
2379
|
+
T.all(
|
|
2380
|
+
ns,
|
|
2381
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
2382
|
+
svc,
|
|
2383
|
+
auth,
|
|
2384
|
+
proto,
|
|
2385
|
+
ver,
|
|
2386
|
+
rules,
|
|
2414
2387
|
),
|
|
2415
|
-
)
|
|
2416
|
-
|
|
2417
|
-
|
|
2388
|
+
),
|
|
2389
|
+
).annotate({
|
|
2390
|
+
identifier: "SetIdentityDkimEnabledRequest",
|
|
2391
|
+
}) as any as S.Schema<SetIdentityDkimEnabledRequest>;
|
|
2418
2392
|
export interface SetIdentityDkimEnabledResponse {}
|
|
2419
|
-
export const SetIdentityDkimEnabledResponse =
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2393
|
+
export const SetIdentityDkimEnabledResponse = /*@__PURE__*/ S.suspend(() =>
|
|
2394
|
+
S.Struct({}).pipe(ns),
|
|
2395
|
+
).annotate({
|
|
2396
|
+
identifier: "SetIdentityDkimEnabledResponse",
|
|
2397
|
+
}) as any as S.Schema<SetIdentityDkimEnabledResponse>;
|
|
2423
2398
|
export interface SetIdentityFeedbackForwardingEnabledRequest {
|
|
2424
2399
|
Identity: string;
|
|
2425
2400
|
ForwardingEnabled: boolean;
|
|
@@ -2486,91 +2461,91 @@ export interface SetIdentityMailFromDomainRequest {
|
|
|
2486
2461
|
MailFromDomain?: string;
|
|
2487
2462
|
BehaviorOnMXFailure?: BehaviorOnMXFailure;
|
|
2488
2463
|
}
|
|
2489
|
-
export const SetIdentityMailFromDomainRequest =
|
|
2490
|
-
|
|
2491
|
-
S.
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
rules,
|
|
2504
|
-
),
|
|
2464
|
+
export const SetIdentityMailFromDomainRequest = /*@__PURE__*/ S.suspend(() =>
|
|
2465
|
+
S.Struct({
|
|
2466
|
+
Identity: S.String,
|
|
2467
|
+
MailFromDomain: S.optional(S.String),
|
|
2468
|
+
BehaviorOnMXFailure: S.optional(BehaviorOnMXFailure),
|
|
2469
|
+
}).pipe(
|
|
2470
|
+
T.all(
|
|
2471
|
+
ns,
|
|
2472
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
2473
|
+
svc,
|
|
2474
|
+
auth,
|
|
2475
|
+
proto,
|
|
2476
|
+
ver,
|
|
2477
|
+
rules,
|
|
2505
2478
|
),
|
|
2506
|
-
)
|
|
2507
|
-
|
|
2508
|
-
|
|
2479
|
+
),
|
|
2480
|
+
).annotate({
|
|
2481
|
+
identifier: "SetIdentityMailFromDomainRequest",
|
|
2482
|
+
}) as any as S.Schema<SetIdentityMailFromDomainRequest>;
|
|
2509
2483
|
export interface SetIdentityMailFromDomainResponse {}
|
|
2510
|
-
export const SetIdentityMailFromDomainResponse =
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2484
|
+
export const SetIdentityMailFromDomainResponse = /*@__PURE__*/ S.suspend(() =>
|
|
2485
|
+
S.Struct({}).pipe(ns),
|
|
2486
|
+
).annotate({
|
|
2487
|
+
identifier: "SetIdentityMailFromDomainResponse",
|
|
2488
|
+
}) as any as S.Schema<SetIdentityMailFromDomainResponse>;
|
|
2514
2489
|
export interface SetIdentityNotificationTopicRequest {
|
|
2515
2490
|
Identity: string;
|
|
2516
2491
|
NotificationType: NotificationType;
|
|
2517
2492
|
SnsTopic?: string;
|
|
2518
2493
|
}
|
|
2519
|
-
export const SetIdentityNotificationTopicRequest =
|
|
2520
|
-
|
|
2521
|
-
S.
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
rules,
|
|
2534
|
-
),
|
|
2494
|
+
export const SetIdentityNotificationTopicRequest = /*@__PURE__*/ S.suspend(() =>
|
|
2495
|
+
S.Struct({
|
|
2496
|
+
Identity: S.String,
|
|
2497
|
+
NotificationType: NotificationType,
|
|
2498
|
+
SnsTopic: S.optional(S.String),
|
|
2499
|
+
}).pipe(
|
|
2500
|
+
T.all(
|
|
2501
|
+
ns,
|
|
2502
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
2503
|
+
svc,
|
|
2504
|
+
auth,
|
|
2505
|
+
proto,
|
|
2506
|
+
ver,
|
|
2507
|
+
rules,
|
|
2535
2508
|
),
|
|
2536
|
-
)
|
|
2537
|
-
|
|
2538
|
-
|
|
2509
|
+
),
|
|
2510
|
+
).annotate({
|
|
2511
|
+
identifier: "SetIdentityNotificationTopicRequest",
|
|
2512
|
+
}) as any as S.Schema<SetIdentityNotificationTopicRequest>;
|
|
2539
2513
|
export interface SetIdentityNotificationTopicResponse {}
|
|
2540
|
-
export const SetIdentityNotificationTopicResponse =
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2514
|
+
export const SetIdentityNotificationTopicResponse = /*@__PURE__*/ S.suspend(
|
|
2515
|
+
() => S.Struct({}).pipe(ns),
|
|
2516
|
+
).annotate({
|
|
2517
|
+
identifier: "SetIdentityNotificationTopicResponse",
|
|
2518
|
+
}) as any as S.Schema<SetIdentityNotificationTopicResponse>;
|
|
2544
2519
|
export interface SetReceiptRulePositionRequest {
|
|
2545
2520
|
RuleSetName: string;
|
|
2546
2521
|
RuleName: string;
|
|
2547
2522
|
After?: string;
|
|
2548
2523
|
}
|
|
2549
|
-
export const SetReceiptRulePositionRequest =
|
|
2550
|
-
|
|
2551
|
-
S.
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
rules,
|
|
2564
|
-
),
|
|
2524
|
+
export const SetReceiptRulePositionRequest = /*@__PURE__*/ S.suspend(() =>
|
|
2525
|
+
S.Struct({
|
|
2526
|
+
RuleSetName: S.String,
|
|
2527
|
+
RuleName: S.String,
|
|
2528
|
+
After: S.optional(S.String),
|
|
2529
|
+
}).pipe(
|
|
2530
|
+
T.all(
|
|
2531
|
+
ns,
|
|
2532
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
2533
|
+
svc,
|
|
2534
|
+
auth,
|
|
2535
|
+
proto,
|
|
2536
|
+
ver,
|
|
2537
|
+
rules,
|
|
2565
2538
|
),
|
|
2566
|
-
)
|
|
2567
|
-
|
|
2568
|
-
|
|
2539
|
+
),
|
|
2540
|
+
).annotate({
|
|
2541
|
+
identifier: "SetReceiptRulePositionRequest",
|
|
2542
|
+
}) as any as S.Schema<SetReceiptRulePositionRequest>;
|
|
2569
2543
|
export interface SetReceiptRulePositionResponse {}
|
|
2570
|
-
export const SetReceiptRulePositionResponse =
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2544
|
+
export const SetReceiptRulePositionResponse = /*@__PURE__*/ S.suspend(() =>
|
|
2545
|
+
S.Struct({}).pipe(ns),
|
|
2546
|
+
).annotate({
|
|
2547
|
+
identifier: "SetReceiptRulePositionResponse",
|
|
2548
|
+
}) as any as S.Schema<SetReceiptRulePositionResponse>;
|
|
2574
2549
|
export interface TestRenderTemplateRequest {
|
|
2575
2550
|
TemplateName: string;
|
|
2576
2551
|
TemplateData: string;
|
|
@@ -2601,27 +2576,27 @@ export const TestRenderTemplateResponse = /*@__PURE__*/ S.suspend(() =>
|
|
|
2601
2576
|
export interface UpdateAccountSendingEnabledRequest {
|
|
2602
2577
|
Enabled?: boolean;
|
|
2603
2578
|
}
|
|
2604
|
-
export const UpdateAccountSendingEnabledRequest =
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
rules,
|
|
2615
|
-
),
|
|
2579
|
+
export const UpdateAccountSendingEnabledRequest = /*@__PURE__*/ S.suspend(() =>
|
|
2580
|
+
S.Struct({ Enabled: S.optional(S.Boolean) }).pipe(
|
|
2581
|
+
T.all(
|
|
2582
|
+
ns,
|
|
2583
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
2584
|
+
svc,
|
|
2585
|
+
auth,
|
|
2586
|
+
proto,
|
|
2587
|
+
ver,
|
|
2588
|
+
rules,
|
|
2616
2589
|
),
|
|
2617
|
-
)
|
|
2618
|
-
|
|
2619
|
-
|
|
2590
|
+
),
|
|
2591
|
+
).annotate({
|
|
2592
|
+
identifier: "UpdateAccountSendingEnabledRequest",
|
|
2593
|
+
}) as any as S.Schema<UpdateAccountSendingEnabledRequest>;
|
|
2620
2594
|
export interface UpdateAccountSendingEnabledResponse {}
|
|
2621
|
-
export const UpdateAccountSendingEnabledResponse =
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2595
|
+
export const UpdateAccountSendingEnabledResponse = /*@__PURE__*/ S.suspend(() =>
|
|
2596
|
+
S.Struct({}).pipe(ns),
|
|
2597
|
+
).annotate({
|
|
2598
|
+
identifier: "UpdateAccountSendingEnabledResponse",
|
|
2599
|
+
}) as any as S.Schema<UpdateAccountSendingEnabledResponse>;
|
|
2625
2600
|
export interface UpdateConfigurationSetEventDestinationRequest {
|
|
2626
2601
|
ConfigurationSetName: string;
|
|
2627
2602
|
EventDestination: EventDestination;
|
|
@@ -2842,31 +2817,29 @@ export const VerifyDomainDkimResponse = /*@__PURE__*/ S.suspend(() =>
|
|
|
2842
2817
|
export interface VerifyDomainIdentityRequest {
|
|
2843
2818
|
Domain: string;
|
|
2844
2819
|
}
|
|
2845
|
-
export const VerifyDomainIdentityRequest =
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
|
|
2855
|
-
rules,
|
|
2856
|
-
),
|
|
2820
|
+
export const VerifyDomainIdentityRequest = /*@__PURE__*/ S.suspend(() =>
|
|
2821
|
+
S.Struct({ Domain: S.String }).pipe(
|
|
2822
|
+
T.all(
|
|
2823
|
+
ns,
|
|
2824
|
+
T.Http({ method: "POST", uri: "/" }),
|
|
2825
|
+
svc,
|
|
2826
|
+
auth,
|
|
2827
|
+
proto,
|
|
2828
|
+
ver,
|
|
2829
|
+
rules,
|
|
2857
2830
|
),
|
|
2858
|
-
)
|
|
2859
|
-
|
|
2860
|
-
|
|
2831
|
+
),
|
|
2832
|
+
).annotate({
|
|
2833
|
+
identifier: "VerifyDomainIdentityRequest",
|
|
2834
|
+
}) as any as S.Schema<VerifyDomainIdentityRequest>;
|
|
2861
2835
|
export interface VerifyDomainIdentityResponse {
|
|
2862
2836
|
VerificationToken: string;
|
|
2863
2837
|
}
|
|
2864
|
-
export const VerifyDomainIdentityResponse =
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
}) as any as S.Schema<VerifyDomainIdentityResponse>;
|
|
2838
|
+
export const VerifyDomainIdentityResponse = /*@__PURE__*/ S.suspend(() =>
|
|
2839
|
+
S.Struct({ VerificationToken: S.String }).pipe(ns),
|
|
2840
|
+
).annotate({
|
|
2841
|
+
identifier: "VerifyDomainIdentityResponse",
|
|
2842
|
+
}) as any as S.Schema<VerifyDomainIdentityResponse>;
|
|
2870
2843
|
export interface VerifyEmailAddressRequest {
|
|
2871
2844
|
EmailAddress: string;
|
|
2872
2845
|
}
|
|
@@ -2910,47 +2883,66 @@ export const VerifyEmailIdentityRequest = /*@__PURE__*/ S.suspend(() =>
|
|
|
2910
2883
|
identifier: "VerifyEmailIdentityRequest",
|
|
2911
2884
|
}) as any as S.Schema<VerifyEmailIdentityRequest>;
|
|
2912
2885
|
export interface VerifyEmailIdentityResponse {}
|
|
2913
|
-
export const VerifyEmailIdentityResponse =
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2886
|
+
export const VerifyEmailIdentityResponse = /*@__PURE__*/ S.suspend(() =>
|
|
2887
|
+
S.Struct({}).pipe(ns),
|
|
2888
|
+
).annotate({
|
|
2889
|
+
identifier: "VerifyEmailIdentityResponse",
|
|
2890
|
+
}) as any as S.Schema<VerifyEmailIdentityResponse>;
|
|
2917
2891
|
|
|
2918
2892
|
//# Errors
|
|
2919
2893
|
export class AlreadyExistsException extends S.TaggedErrorClass<AlreadyExistsException>()(
|
|
2920
2894
|
"AlreadyExistsException",
|
|
2921
2895
|
{ Name: S.optional(S.String), message: S.optional(S.String) },
|
|
2922
|
-
T.
|
|
2896
|
+
T.all(
|
|
2897
|
+
T.AwsQueryError({ code: "AlreadyExists", httpResponseCode: 400 }),
|
|
2898
|
+
T.HttpError(400),
|
|
2899
|
+
),
|
|
2923
2900
|
).pipe(C.withBadRequestError, C.withAlreadyExistsError) {}
|
|
2924
2901
|
export class LimitExceededException extends S.TaggedErrorClass<LimitExceededException>()(
|
|
2925
2902
|
"LimitExceededException",
|
|
2926
2903
|
{ message: S.optional(S.String) },
|
|
2927
|
-
T.
|
|
2904
|
+
T.all(
|
|
2905
|
+
T.AwsQueryError({ code: "LimitExceeded", httpResponseCode: 400 }),
|
|
2906
|
+
T.HttpError(400),
|
|
2907
|
+
),
|
|
2928
2908
|
).pipe(C.withBadRequestError) {}
|
|
2929
2909
|
export class RuleSetDoesNotExistException extends S.TaggedErrorClass<RuleSetDoesNotExistException>()(
|
|
2930
2910
|
"RuleSetDoesNotExistException",
|
|
2931
2911
|
{ Name: S.optional(S.String), message: S.optional(S.String) },
|
|
2932
|
-
T.
|
|
2912
|
+
T.all(
|
|
2913
|
+
T.AwsQueryError({ code: "RuleSetDoesNotExist", httpResponseCode: 400 }),
|
|
2914
|
+
T.HttpError(400),
|
|
2915
|
+
),
|
|
2933
2916
|
).pipe(C.withBadRequestError) {}
|
|
2934
2917
|
export class ConfigurationSetAlreadyExistsException extends S.TaggedErrorClass<ConfigurationSetAlreadyExistsException>()(
|
|
2935
2918
|
"ConfigurationSetAlreadyExistsException",
|
|
2936
2919
|
{ ConfigurationSetName: S.optional(S.String), message: S.optional(S.String) },
|
|
2937
|
-
T.
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2920
|
+
T.all(
|
|
2921
|
+
T.AwsQueryError({
|
|
2922
|
+
code: "ConfigurationSetAlreadyExists",
|
|
2923
|
+
httpResponseCode: 400,
|
|
2924
|
+
}),
|
|
2925
|
+
T.HttpError(400),
|
|
2926
|
+
),
|
|
2941
2927
|
).pipe(C.withBadRequestError, C.withAlreadyExistsError) {}
|
|
2942
2928
|
export class InvalidConfigurationSetException extends S.TaggedErrorClass<InvalidConfigurationSetException>()(
|
|
2943
2929
|
"InvalidConfigurationSetException",
|
|
2944
2930
|
{ message: S.optional(S.String) },
|
|
2945
|
-
T.
|
|
2931
|
+
T.all(
|
|
2932
|
+
T.AwsQueryError({ code: "InvalidConfigurationSet", httpResponseCode: 400 }),
|
|
2933
|
+
T.HttpError(400),
|
|
2934
|
+
),
|
|
2946
2935
|
).pipe(C.withBadRequestError) {}
|
|
2947
2936
|
export class ConfigurationSetDoesNotExistException extends S.TaggedErrorClass<ConfigurationSetDoesNotExistException>()(
|
|
2948
2937
|
"ConfigurationSetDoesNotExistException",
|
|
2949
2938
|
{ ConfigurationSetName: S.optional(S.String), message: S.optional(S.String) },
|
|
2950
|
-
T.
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
2939
|
+
T.all(
|
|
2940
|
+
T.AwsQueryError({
|
|
2941
|
+
code: "ConfigurationSetDoesNotExist",
|
|
2942
|
+
httpResponseCode: 400,
|
|
2943
|
+
}),
|
|
2944
|
+
T.HttpError(400),
|
|
2945
|
+
),
|
|
2954
2946
|
).pipe(C.withBadRequestError) {}
|
|
2955
2947
|
export class EventDestinationAlreadyExistsException extends S.TaggedErrorClass<EventDestinationAlreadyExistsException>()(
|
|
2956
2948
|
"EventDestinationAlreadyExistsException",
|
|
@@ -2959,10 +2951,13 @@ export class EventDestinationAlreadyExistsException extends S.TaggedErrorClass<E
|
|
|
2959
2951
|
EventDestinationName: S.optional(S.String),
|
|
2960
2952
|
message: S.optional(S.String),
|
|
2961
2953
|
},
|
|
2962
|
-
T.
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
|
|
2954
|
+
T.all(
|
|
2955
|
+
T.AwsQueryError({
|
|
2956
|
+
code: "EventDestinationAlreadyExists",
|
|
2957
|
+
httpResponseCode: 400,
|
|
2958
|
+
}),
|
|
2959
|
+
T.HttpError(400),
|
|
2960
|
+
),
|
|
2966
2961
|
).pipe(C.withBadRequestError, C.withAlreadyExistsError) {}
|
|
2967
2962
|
export class InvalidCloudWatchDestinationException extends S.TaggedErrorClass<InvalidCloudWatchDestinationException>()(
|
|
2968
2963
|
"InvalidCloudWatchDestinationException",
|
|
@@ -2971,10 +2966,13 @@ export class InvalidCloudWatchDestinationException extends S.TaggedErrorClass<In
|
|
|
2971
2966
|
EventDestinationName: S.optional(S.String),
|
|
2972
2967
|
message: S.optional(S.String),
|
|
2973
2968
|
},
|
|
2974
|
-
T.
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2969
|
+
T.all(
|
|
2970
|
+
T.AwsQueryError({
|
|
2971
|
+
code: "InvalidCloudWatchDestination",
|
|
2972
|
+
httpResponseCode: 400,
|
|
2973
|
+
}),
|
|
2974
|
+
T.HttpError(400),
|
|
2975
|
+
),
|
|
2978
2976
|
).pipe(C.withBadRequestError) {}
|
|
2979
2977
|
export class InvalidFirehoseDestinationException extends S.TaggedErrorClass<InvalidFirehoseDestinationException>()(
|
|
2980
2978
|
"InvalidFirehoseDestinationException",
|
|
@@ -2983,10 +2981,13 @@ export class InvalidFirehoseDestinationException extends S.TaggedErrorClass<Inva
|
|
|
2983
2981
|
EventDestinationName: S.optional(S.String),
|
|
2984
2982
|
message: S.optional(S.String),
|
|
2985
2983
|
},
|
|
2986
|
-
T.
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2984
|
+
T.all(
|
|
2985
|
+
T.AwsQueryError({
|
|
2986
|
+
code: "InvalidFirehoseDestination",
|
|
2987
|
+
httpResponseCode: 400,
|
|
2988
|
+
}),
|
|
2989
|
+
T.HttpError(400),
|
|
2990
|
+
),
|
|
2990
2991
|
).pipe(C.withBadRequestError) {}
|
|
2991
2992
|
export class InvalidSNSDestinationException extends S.TaggedErrorClass<InvalidSNSDestinationException>()(
|
|
2992
2993
|
"InvalidSNSDestinationException",
|
|
@@ -2995,28 +2996,40 @@ export class InvalidSNSDestinationException extends S.TaggedErrorClass<InvalidSN
|
|
|
2995
2996
|
EventDestinationName: S.optional(S.String),
|
|
2996
2997
|
message: S.optional(S.String),
|
|
2997
2998
|
},
|
|
2998
|
-
T.
|
|
2999
|
+
T.all(
|
|
3000
|
+
T.AwsQueryError({ code: "InvalidSNSDestination", httpResponseCode: 400 }),
|
|
3001
|
+
T.HttpError(400),
|
|
3002
|
+
),
|
|
2999
3003
|
).pipe(C.withBadRequestError) {}
|
|
3000
3004
|
export class InvalidTrackingOptionsException extends S.TaggedErrorClass<InvalidTrackingOptionsException>()(
|
|
3001
3005
|
"InvalidTrackingOptionsException",
|
|
3002
3006
|
{ message: S.optional(S.String) },
|
|
3003
|
-
T.
|
|
3007
|
+
T.all(
|
|
3008
|
+
T.AwsQueryError({ code: "InvalidTrackingOptions", httpResponseCode: 400 }),
|
|
3009
|
+
T.HttpError(400),
|
|
3010
|
+
),
|
|
3004
3011
|
).pipe(C.withBadRequestError) {}
|
|
3005
3012
|
export class TrackingOptionsAlreadyExistsException extends S.TaggedErrorClass<TrackingOptionsAlreadyExistsException>()(
|
|
3006
3013
|
"TrackingOptionsAlreadyExistsException",
|
|
3007
3014
|
{ ConfigurationSetName: S.optional(S.String), message: S.optional(S.String) },
|
|
3008
|
-
T.
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3015
|
+
T.all(
|
|
3016
|
+
T.AwsQueryError({
|
|
3017
|
+
code: "TrackingOptionsAlreadyExistsException",
|
|
3018
|
+
httpResponseCode: 400,
|
|
3019
|
+
}),
|
|
3020
|
+
T.HttpError(400),
|
|
3021
|
+
),
|
|
3012
3022
|
).pipe(C.withBadRequestError, C.withAlreadyExistsError) {}
|
|
3013
3023
|
export class CustomVerificationEmailInvalidContentException extends S.TaggedErrorClass<CustomVerificationEmailInvalidContentException>()(
|
|
3014
3024
|
"CustomVerificationEmailInvalidContentException",
|
|
3015
3025
|
{ message: S.optional(S.String) },
|
|
3016
|
-
T.
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3026
|
+
T.all(
|
|
3027
|
+
T.AwsQueryError({
|
|
3028
|
+
code: "CustomVerificationEmailInvalidContent",
|
|
3029
|
+
httpResponseCode: 400,
|
|
3030
|
+
}),
|
|
3031
|
+
T.HttpError(400),
|
|
3032
|
+
),
|
|
3020
3033
|
).pipe(C.withBadRequestError) {}
|
|
3021
3034
|
export class CustomVerificationEmailTemplateAlreadyExistsException extends S.TaggedErrorClass<CustomVerificationEmailTemplateAlreadyExistsException>()(
|
|
3022
3035
|
"CustomVerificationEmailTemplateAlreadyExistsException",
|
|
@@ -3024,43 +3037,76 @@ export class CustomVerificationEmailTemplateAlreadyExistsException extends S.Tag
|
|
|
3024
3037
|
CustomVerificationEmailTemplateName: S.optional(S.String),
|
|
3025
3038
|
message: S.optional(S.String),
|
|
3026
3039
|
},
|
|
3027
|
-
T.
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
|
|
3040
|
+
T.all(
|
|
3041
|
+
T.AwsQueryError({
|
|
3042
|
+
code: "CustomVerificationEmailTemplateAlreadyExists",
|
|
3043
|
+
httpResponseCode: 400,
|
|
3044
|
+
}),
|
|
3045
|
+
T.HttpError(400),
|
|
3046
|
+
),
|
|
3031
3047
|
).pipe(C.withBadRequestError, C.withAlreadyExistsError) {}
|
|
3032
3048
|
export class FromEmailAddressNotVerifiedException extends S.TaggedErrorClass<FromEmailAddressNotVerifiedException>()(
|
|
3033
3049
|
"FromEmailAddressNotVerifiedException",
|
|
3034
3050
|
{ FromEmailAddress: S.optional(S.String), message: S.optional(S.String) },
|
|
3035
|
-
T.
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3051
|
+
T.all(
|
|
3052
|
+
T.AwsQueryError({
|
|
3053
|
+
code: "FromEmailAddressNotVerified",
|
|
3054
|
+
httpResponseCode: 400,
|
|
3055
|
+
}),
|
|
3056
|
+
T.HttpError(400),
|
|
3057
|
+
),
|
|
3039
3058
|
).pipe(C.withBadRequestError) {}
|
|
3040
3059
|
export class InvalidLambdaFunctionException extends S.TaggedErrorClass<InvalidLambdaFunctionException>()(
|
|
3041
3060
|
"InvalidLambdaFunctionException",
|
|
3042
3061
|
{ FunctionArn: S.optional(S.String), message: S.optional(S.String) },
|
|
3043
|
-
T.
|
|
3062
|
+
T.all(
|
|
3063
|
+
T.AwsQueryError({ code: "InvalidLambdaFunction", httpResponseCode: 400 }),
|
|
3064
|
+
T.HttpError(400),
|
|
3065
|
+
),
|
|
3044
3066
|
).pipe(C.withBadRequestError) {}
|
|
3045
3067
|
export class InvalidS3ConfigurationException extends S.TaggedErrorClass<InvalidS3ConfigurationException>()(
|
|
3046
3068
|
"InvalidS3ConfigurationException",
|
|
3047
3069
|
{ Bucket: S.optional(S.String), message: S.optional(S.String) },
|
|
3048
|
-
T.
|
|
3070
|
+
T.all(
|
|
3071
|
+
T.AwsQueryError({ code: "InvalidS3Configuration", httpResponseCode: 400 }),
|
|
3072
|
+
T.HttpError(400),
|
|
3073
|
+
),
|
|
3049
3074
|
).pipe(C.withBadRequestError) {}
|
|
3050
3075
|
export class InvalidSnsTopicException extends S.TaggedErrorClass<InvalidSnsTopicException>()(
|
|
3051
3076
|
"InvalidSnsTopicException",
|
|
3052
3077
|
{ Topic: S.optional(S.String), message: S.optional(S.String) },
|
|
3053
|
-
T.
|
|
3078
|
+
T.all(
|
|
3079
|
+
T.AwsQueryError({ code: "InvalidSnsTopic", httpResponseCode: 400 }),
|
|
3080
|
+
T.HttpError(400),
|
|
3081
|
+
),
|
|
3054
3082
|
).pipe(C.withBadRequestError) {}
|
|
3055
3083
|
export class RuleDoesNotExistException extends S.TaggedErrorClass<RuleDoesNotExistException>()(
|
|
3056
3084
|
"RuleDoesNotExistException",
|
|
3057
3085
|
{ Name: S.optional(S.String), message: S.optional(S.String) },
|
|
3058
|
-
T.
|
|
3086
|
+
T.all(
|
|
3087
|
+
T.AwsQueryError({ code: "RuleDoesNotExist", httpResponseCode: 400 }),
|
|
3088
|
+
T.HttpError(400),
|
|
3089
|
+
),
|
|
3059
3090
|
).pipe(C.withBadRequestError) {}
|
|
3091
|
+
export class InvalidParameterValue extends S.TaggedErrorClass<InvalidParameterValue>()(
|
|
3092
|
+
"InvalidParameterValue",
|
|
3093
|
+
{},
|
|
3094
|
+
) {}
|
|
3095
|
+
export class IdentityNotVerified extends S.TaggedErrorClass<IdentityNotVerified>()(
|
|
3096
|
+
"IdentityNotVerified",
|
|
3097
|
+
{},
|
|
3098
|
+
T.SyntheticError({
|
|
3099
|
+
from: "InvalidParameterValue",
|
|
3100
|
+
message: { includes: "Identity is not verified" },
|
|
3101
|
+
}),
|
|
3102
|
+
) {}
|
|
3060
3103
|
export class InvalidTemplateException extends S.TaggedErrorClass<InvalidTemplateException>()(
|
|
3061
3104
|
"InvalidTemplateException",
|
|
3062
3105
|
{ TemplateName: S.optional(S.String), message: S.optional(S.String) },
|
|
3063
|
-
T.
|
|
3106
|
+
T.all(
|
|
3107
|
+
T.AwsQueryError({ code: "InvalidTemplate", httpResponseCode: 400 }),
|
|
3108
|
+
T.HttpError(400),
|
|
3109
|
+
),
|
|
3064
3110
|
).pipe(C.withBadRequestError) {}
|
|
3065
3111
|
export class EventDestinationDoesNotExistException extends S.TaggedErrorClass<EventDestinationDoesNotExistException>()(
|
|
3066
3112
|
"EventDestinationDoesNotExistException",
|
|
@@ -3069,23 +3115,32 @@ export class EventDestinationDoesNotExistException extends S.TaggedErrorClass<Ev
|
|
|
3069
3115
|
EventDestinationName: S.optional(S.String),
|
|
3070
3116
|
message: S.optional(S.String),
|
|
3071
3117
|
},
|
|
3072
|
-
T.
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3118
|
+
T.all(
|
|
3119
|
+
T.AwsQueryError({
|
|
3120
|
+
code: "EventDestinationDoesNotExist",
|
|
3121
|
+
httpResponseCode: 400,
|
|
3122
|
+
}),
|
|
3123
|
+
T.HttpError(400),
|
|
3124
|
+
),
|
|
3076
3125
|
).pipe(C.withBadRequestError) {}
|
|
3077
3126
|
export class TrackingOptionsDoesNotExistException extends S.TaggedErrorClass<TrackingOptionsDoesNotExistException>()(
|
|
3078
3127
|
"TrackingOptionsDoesNotExistException",
|
|
3079
3128
|
{ ConfigurationSetName: S.optional(S.String), message: S.optional(S.String) },
|
|
3080
|
-
T.
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
|
|
3129
|
+
T.all(
|
|
3130
|
+
T.AwsQueryError({
|
|
3131
|
+
code: "TrackingOptionsDoesNotExistException",
|
|
3132
|
+
httpResponseCode: 400,
|
|
3133
|
+
}),
|
|
3134
|
+
T.HttpError(400),
|
|
3135
|
+
),
|
|
3084
3136
|
).pipe(C.withBadRequestError) {}
|
|
3085
3137
|
export class CannotDeleteException extends S.TaggedErrorClass<CannotDeleteException>()(
|
|
3086
3138
|
"CannotDeleteException",
|
|
3087
3139
|
{ Name: S.optional(S.String), message: S.optional(S.String) },
|
|
3088
|
-
T.
|
|
3140
|
+
T.all(
|
|
3141
|
+
T.AwsQueryError({ code: "CannotDelete", httpResponseCode: 400 }),
|
|
3142
|
+
T.HttpError(400),
|
|
3143
|
+
),
|
|
3089
3144
|
).pipe(C.withBadRequestError) {}
|
|
3090
3145
|
export class CustomVerificationEmailTemplateDoesNotExistException extends S.TaggedErrorClass<CustomVerificationEmailTemplateDoesNotExistException>()(
|
|
3091
3146
|
"CustomVerificationEmailTemplateDoesNotExistException",
|
|
@@ -3093,72 +3148,111 @@ export class CustomVerificationEmailTemplateDoesNotExistException extends S.Tagg
|
|
|
3093
3148
|
CustomVerificationEmailTemplateName: S.optional(S.String),
|
|
3094
3149
|
message: S.optional(S.String),
|
|
3095
3150
|
},
|
|
3096
|
-
T.
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
|
|
3151
|
+
T.all(
|
|
3152
|
+
T.AwsQueryError({
|
|
3153
|
+
code: "CustomVerificationEmailTemplateDoesNotExist",
|
|
3154
|
+
httpResponseCode: 400,
|
|
3155
|
+
}),
|
|
3156
|
+
T.HttpError(400),
|
|
3157
|
+
),
|
|
3100
3158
|
).pipe(C.withBadRequestError) {}
|
|
3101
3159
|
export class TemplateDoesNotExistException extends S.TaggedErrorClass<TemplateDoesNotExistException>()(
|
|
3102
3160
|
"TemplateDoesNotExistException",
|
|
3103
3161
|
{ TemplateName: S.optional(S.String), message: S.optional(S.String) },
|
|
3104
|
-
T.
|
|
3162
|
+
T.all(
|
|
3163
|
+
T.AwsQueryError({ code: "TemplateDoesNotExist", httpResponseCode: 400 }),
|
|
3164
|
+
T.HttpError(400),
|
|
3165
|
+
),
|
|
3105
3166
|
).pipe(C.withBadRequestError) {}
|
|
3106
3167
|
export class InvalidDeliveryOptionsException extends S.TaggedErrorClass<InvalidDeliveryOptionsException>()(
|
|
3107
3168
|
"InvalidDeliveryOptionsException",
|
|
3108
3169
|
{ message: S.optional(S.String) },
|
|
3109
|
-
T.
|
|
3170
|
+
T.all(
|
|
3171
|
+
T.AwsQueryError({ code: "InvalidDeliveryOptions", httpResponseCode: 400 }),
|
|
3172
|
+
T.HttpError(400),
|
|
3173
|
+
),
|
|
3110
3174
|
).pipe(C.withBadRequestError) {}
|
|
3111
3175
|
export class InvalidPolicyException extends S.TaggedErrorClass<InvalidPolicyException>()(
|
|
3112
3176
|
"InvalidPolicyException",
|
|
3113
3177
|
{ message: S.optional(S.String) },
|
|
3114
|
-
T.
|
|
3178
|
+
T.all(
|
|
3179
|
+
T.AwsQueryError({ code: "InvalidPolicy", httpResponseCode: 400 }),
|
|
3180
|
+
T.HttpError(400),
|
|
3181
|
+
),
|
|
3115
3182
|
).pipe(C.withBadRequestError) {}
|
|
3116
3183
|
export class MessageRejected extends S.TaggedErrorClass<MessageRejected>()(
|
|
3117
3184
|
"MessageRejected",
|
|
3118
3185
|
{ message: S.optional(S.String) },
|
|
3119
|
-
T.
|
|
3186
|
+
T.all(
|
|
3187
|
+
T.AwsQueryError({ code: "MessageRejected", httpResponseCode: 400 }),
|
|
3188
|
+
T.HttpError(400),
|
|
3189
|
+
),
|
|
3120
3190
|
).pipe(C.withBadRequestError) {}
|
|
3121
3191
|
export class AccountSendingPausedException extends S.TaggedErrorClass<AccountSendingPausedException>()(
|
|
3122
3192
|
"AccountSendingPausedException",
|
|
3123
3193
|
{ message: S.optional(S.String) },
|
|
3124
|
-
T.
|
|
3125
|
-
|
|
3126
|
-
|
|
3127
|
-
|
|
3194
|
+
T.all(
|
|
3195
|
+
T.AwsQueryError({
|
|
3196
|
+
code: "AccountSendingPausedException",
|
|
3197
|
+
httpResponseCode: 400,
|
|
3198
|
+
}),
|
|
3199
|
+
T.HttpError(400),
|
|
3200
|
+
),
|
|
3128
3201
|
).pipe(C.withBadRequestError) {}
|
|
3129
3202
|
export class ConfigurationSetSendingPausedException extends S.TaggedErrorClass<ConfigurationSetSendingPausedException>()(
|
|
3130
3203
|
"ConfigurationSetSendingPausedException",
|
|
3131
3204
|
{ ConfigurationSetName: S.optional(S.String), message: S.optional(S.String) },
|
|
3132
|
-
T.
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
|
|
3205
|
+
T.all(
|
|
3206
|
+
T.AwsQueryError({
|
|
3207
|
+
code: "ConfigurationSetSendingPausedException",
|
|
3208
|
+
httpResponseCode: 400,
|
|
3209
|
+
}),
|
|
3210
|
+
T.HttpError(400),
|
|
3211
|
+
),
|
|
3136
3212
|
).pipe(C.withBadRequestError) {}
|
|
3137
3213
|
export class MailFromDomainNotVerifiedException extends S.TaggedErrorClass<MailFromDomainNotVerifiedException>()(
|
|
3138
3214
|
"MailFromDomainNotVerifiedException",
|
|
3139
3215
|
{ message: S.optional(S.String) },
|
|
3140
|
-
T.
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
|
|
3216
|
+
T.all(
|
|
3217
|
+
T.AwsQueryError({
|
|
3218
|
+
code: "MailFromDomainNotVerifiedException",
|
|
3219
|
+
httpResponseCode: 400,
|
|
3220
|
+
}),
|
|
3221
|
+
T.HttpError(400),
|
|
3222
|
+
),
|
|
3144
3223
|
).pipe(C.withBadRequestError) {}
|
|
3145
3224
|
export class ProductionAccessNotGrantedException extends S.TaggedErrorClass<ProductionAccessNotGrantedException>()(
|
|
3146
3225
|
"ProductionAccessNotGrantedException",
|
|
3147
3226
|
{ message: S.optional(S.String) },
|
|
3148
|
-
T.
|
|
3149
|
-
|
|
3150
|
-
|
|
3151
|
-
|
|
3227
|
+
T.all(
|
|
3228
|
+
T.AwsQueryError({
|
|
3229
|
+
code: "ProductionAccessNotGranted",
|
|
3230
|
+
httpResponseCode: 400,
|
|
3231
|
+
}),
|
|
3232
|
+
T.HttpError(400),
|
|
3233
|
+
),
|
|
3152
3234
|
).pipe(C.withBadRequestError) {}
|
|
3153
3235
|
export class InvalidRenderingParameterException extends S.TaggedErrorClass<InvalidRenderingParameterException>()(
|
|
3154
3236
|
"InvalidRenderingParameterException",
|
|
3155
3237
|
{ TemplateName: S.optional(S.String), message: S.optional(S.String) },
|
|
3156
|
-
T.
|
|
3238
|
+
T.all(
|
|
3239
|
+
T.AwsQueryError({
|
|
3240
|
+
code: "InvalidRenderingParameter",
|
|
3241
|
+
httpResponseCode: 400,
|
|
3242
|
+
}),
|
|
3243
|
+
T.HttpError(400),
|
|
3244
|
+
),
|
|
3157
3245
|
).pipe(C.withBadRequestError) {}
|
|
3158
3246
|
export class MissingRenderingAttributeException extends S.TaggedErrorClass<MissingRenderingAttributeException>()(
|
|
3159
3247
|
"MissingRenderingAttributeException",
|
|
3160
3248
|
{ TemplateName: S.optional(S.String), message: S.optional(S.String) },
|
|
3161
|
-
T.
|
|
3249
|
+
T.all(
|
|
3250
|
+
T.AwsQueryError({
|
|
3251
|
+
code: "MissingRenderingAttribute",
|
|
3252
|
+
httpResponseCode: 400,
|
|
3253
|
+
}),
|
|
3254
|
+
T.HttpError(400),
|
|
3255
|
+
),
|
|
3162
3256
|
).pipe(C.withBadRequestError) {}
|
|
3163
3257
|
|
|
3164
3258
|
//# Operations
|
|
@@ -3349,6 +3443,8 @@ export type CreateReceiptRuleError =
|
|
|
3349
3443
|
| LimitExceededException
|
|
3350
3444
|
| RuleDoesNotExistException
|
|
3351
3445
|
| RuleSetDoesNotExistException
|
|
3446
|
+
| InvalidParameterValue
|
|
3447
|
+
| IdentityNotVerified
|
|
3352
3448
|
| CommonErrors;
|
|
3353
3449
|
/**
|
|
3354
3450
|
* Creates a receipt rule.
|
|
@@ -3374,6 +3470,8 @@ export const createReceiptRule: API.OperationMethod<
|
|
|
3374
3470
|
LimitExceededException,
|
|
3375
3471
|
RuleDoesNotExistException,
|
|
3376
3472
|
RuleSetDoesNotExistException,
|
|
3473
|
+
InvalidParameterValue,
|
|
3474
|
+
IdentityNotVerified,
|
|
3377
3475
|
],
|
|
3378
3476
|
operationName: "CreateReceiptRule",
|
|
3379
3477
|
}));
|
|
@@ -5001,6 +5099,8 @@ export type UpdateReceiptRuleError =
|
|
|
5001
5099
|
| LimitExceededException
|
|
5002
5100
|
| RuleDoesNotExistException
|
|
5003
5101
|
| RuleSetDoesNotExistException
|
|
5102
|
+
| InvalidParameterValue
|
|
5103
|
+
| IdentityNotVerified
|
|
5004
5104
|
| CommonErrors;
|
|
5005
5105
|
/**
|
|
5006
5106
|
* Updates a receipt rule.
|
|
@@ -5025,6 +5125,8 @@ export const updateReceiptRule: API.OperationMethod<
|
|
|
5025
5125
|
LimitExceededException,
|
|
5026
5126
|
RuleDoesNotExistException,
|
|
5027
5127
|
RuleSetDoesNotExistException,
|
|
5128
|
+
InvalidParameterValue,
|
|
5129
|
+
IdentityNotVerified,
|
|
5028
5130
|
],
|
|
5029
5131
|
operationName: "UpdateReceiptRule",
|
|
5030
5132
|
}));
|