@aws-sdk/client-pinpoint-email 3.52.0 → 3.54.1
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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/PinpointEmailServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +134 -3
- package/dist-cjs/protocols/Aws_restJson1.js +414 -1385
- package/dist-es/index.js +1 -0
- package/dist-es/models/PinpointEmailServiceException.js +12 -0
- package/dist-es/models/models_0.js +122 -1
- package/dist-es/protocols/Aws_restJson1.js +877 -1564
- package/dist-types/PinpointEmailClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/PinpointEmailServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +72 -41
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/PinpointEmailClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/PinpointEmailServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +52 -41
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CreateConfigurationSetCommandInput, CreateConfigurationSetCommandOutput } from "./commands/CreateConfigurationSetCommand";
|
|
10
10
|
import { CreateConfigurationSetEventDestinationCommandInput, CreateConfigurationSetEventDestinationCommandOutput } from "./commands/CreateConfigurationSetEventDestinationCommand";
|
|
11
11
|
import { CreateDedicatedIpPoolCommandInput, CreateDedicatedIpPoolCommandOutput } from "./commands/CreateDedicatedIpPoolCommand";
|
|
@@ -70,7 +70,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
70
70
|
* A function that can calculate the length of a request body.
|
|
71
71
|
* @internal
|
|
72
72
|
*/
|
|
73
|
-
bodyLengthChecker?:
|
|
73
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
74
74
|
/**
|
|
75
75
|
* A function that converts a stream into an array of bytes.
|
|
76
76
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from PinpointEmail service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class PinpointEmailServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,36 +1,49 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { PinpointEmailServiceException as __BaseException } from "./PinpointEmailServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>The message can't be sent because the account's ability to send email has been
|
|
4
5
|
* permanently restricted.</p>
|
|
5
6
|
*/
|
|
6
|
-
export
|
|
7
|
-
name: "AccountSuspendedException";
|
|
8
|
-
$fault: "client";
|
|
9
|
-
|
|
7
|
+
export declare class AccountSuspendedException extends __BaseException {
|
|
8
|
+
readonly name: "AccountSuspendedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccountSuspendedException, __BaseException>);
|
|
10
14
|
}
|
|
11
15
|
/**
|
|
12
16
|
* <p>The resource specified in your request already exists.</p>
|
|
13
17
|
*/
|
|
14
|
-
export
|
|
15
|
-
name: "AlreadyExistsException";
|
|
16
|
-
$fault: "client";
|
|
17
|
-
|
|
18
|
+
export declare class AlreadyExistsException extends __BaseException {
|
|
19
|
+
readonly name: "AlreadyExistsException";
|
|
20
|
+
readonly $fault: "client";
|
|
21
|
+
/**
|
|
22
|
+
* @internal
|
|
23
|
+
*/
|
|
24
|
+
constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
|
|
18
25
|
}
|
|
19
26
|
/**
|
|
20
27
|
* <p>The input you provided is invalid.</p>
|
|
21
28
|
*/
|
|
22
|
-
export
|
|
23
|
-
name: "BadRequestException";
|
|
24
|
-
$fault: "client";
|
|
25
|
-
|
|
29
|
+
export declare class BadRequestException extends __BaseException {
|
|
30
|
+
readonly name: "BadRequestException";
|
|
31
|
+
readonly $fault: "client";
|
|
32
|
+
/**
|
|
33
|
+
* @internal
|
|
34
|
+
*/
|
|
35
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
26
36
|
}
|
|
27
37
|
/**
|
|
28
38
|
* <p>The resource is being modified by another operation or thread.</p>
|
|
29
39
|
*/
|
|
30
|
-
export
|
|
31
|
-
name: "ConcurrentModificationException";
|
|
32
|
-
$fault: "server";
|
|
33
|
-
|
|
40
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
41
|
+
readonly name: "ConcurrentModificationException";
|
|
42
|
+
readonly $fault: "server";
|
|
43
|
+
/**
|
|
44
|
+
* @internal
|
|
45
|
+
*/
|
|
46
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
34
47
|
}
|
|
35
48
|
export declare enum TlsPolicy {
|
|
36
49
|
OPTIONAL = "OPTIONAL",
|
|
@@ -231,26 +244,35 @@ export declare namespace CreateConfigurationSetResponse {
|
|
|
231
244
|
/**
|
|
232
245
|
* <p>There are too many instances of the specified resource type.</p>
|
|
233
246
|
*/
|
|
234
|
-
export
|
|
235
|
-
name: "LimitExceededException";
|
|
236
|
-
$fault: "client";
|
|
237
|
-
|
|
247
|
+
export declare class LimitExceededException extends __BaseException {
|
|
248
|
+
readonly name: "LimitExceededException";
|
|
249
|
+
readonly $fault: "client";
|
|
250
|
+
/**
|
|
251
|
+
* @internal
|
|
252
|
+
*/
|
|
253
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
238
254
|
}
|
|
239
255
|
/**
|
|
240
256
|
* <p>The resource you attempted to access doesn't exist.</p>
|
|
241
257
|
*/
|
|
242
|
-
export
|
|
243
|
-
name: "NotFoundException";
|
|
244
|
-
$fault: "client";
|
|
245
|
-
|
|
258
|
+
export declare class NotFoundException extends __BaseException {
|
|
259
|
+
readonly name: "NotFoundException";
|
|
260
|
+
readonly $fault: "client";
|
|
261
|
+
/**
|
|
262
|
+
* @internal
|
|
263
|
+
*/
|
|
264
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
246
265
|
}
|
|
247
266
|
/**
|
|
248
267
|
* <p>Too many requests have been made to the operation.</p>
|
|
249
268
|
*/
|
|
250
|
-
export
|
|
251
|
-
name: "TooManyRequestsException";
|
|
252
|
-
$fault: "client";
|
|
253
|
-
|
|
269
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
270
|
+
readonly name: "TooManyRequestsException";
|
|
271
|
+
readonly $fault: "client";
|
|
272
|
+
/**
|
|
273
|
+
* @internal
|
|
274
|
+
*/
|
|
275
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
254
276
|
}
|
|
255
277
|
export declare enum DimensionValueSource {
|
|
256
278
|
EMAIL_HEADER = "EMAIL_HEADER",
|
|
@@ -753,27 +775,36 @@ export declare namespace CreateDeliverabilityTestReportResponse {
|
|
|
753
775
|
/**
|
|
754
776
|
* <p>The message can't be sent because the sending domain isn't verified.</p>
|
|
755
777
|
*/
|
|
756
|
-
export
|
|
757
|
-
name: "MailFromDomainNotVerifiedException";
|
|
758
|
-
$fault: "client";
|
|
759
|
-
|
|
778
|
+
export declare class MailFromDomainNotVerifiedException extends __BaseException {
|
|
779
|
+
readonly name: "MailFromDomainNotVerifiedException";
|
|
780
|
+
readonly $fault: "client";
|
|
781
|
+
/**
|
|
782
|
+
* @internal
|
|
783
|
+
*/
|
|
784
|
+
constructor(opts: __ExceptionOptionType<MailFromDomainNotVerifiedException, __BaseException>);
|
|
760
785
|
}
|
|
761
786
|
/**
|
|
762
787
|
* <p>The message can't be sent because it contains invalid content.</p>
|
|
763
788
|
*/
|
|
764
|
-
export
|
|
765
|
-
name: "MessageRejected";
|
|
766
|
-
$fault: "client";
|
|
767
|
-
|
|
789
|
+
export declare class MessageRejected extends __BaseException {
|
|
790
|
+
readonly name: "MessageRejected";
|
|
791
|
+
readonly $fault: "client";
|
|
792
|
+
/**
|
|
793
|
+
* @internal
|
|
794
|
+
*/
|
|
795
|
+
constructor(opts: __ExceptionOptionType<MessageRejected, __BaseException>);
|
|
768
796
|
}
|
|
769
797
|
/**
|
|
770
798
|
* <p>The message can't be sent because the account's ability to send email is currently
|
|
771
799
|
* paused.</p>
|
|
772
800
|
*/
|
|
773
|
-
export
|
|
774
|
-
name: "SendingPausedException";
|
|
775
|
-
$fault: "client";
|
|
776
|
-
|
|
801
|
+
export declare class SendingPausedException extends __BaseException {
|
|
802
|
+
readonly name: "SendingPausedException";
|
|
803
|
+
readonly $fault: "client";
|
|
804
|
+
/**
|
|
805
|
+
* @internal
|
|
806
|
+
*/
|
|
807
|
+
constructor(opts: __ExceptionOptionType<SendingPausedException, __BaseException>);
|
|
777
808
|
}
|
|
778
809
|
/**
|
|
779
810
|
* <p>A request to begin the verification process for an email identity (an email address or
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: PinpointEmailClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: PinpointEmailClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: PinpointEmailClientConfig) => {
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CreateConfigurationSetCommandInput, CreateConfigurationSetCommandOutput } from "./commands/CreateConfigurationSetCommand";
|
|
10
10
|
import { CreateConfigurationSetEventDestinationCommandInput, CreateConfigurationSetEventDestinationCommandOutput } from "./commands/CreateConfigurationSetEventDestinationCommand";
|
|
11
11
|
import { CreateDedicatedIpPoolCommandInput, CreateDedicatedIpPoolCommandOutput } from "./commands/CreateDedicatedIpPoolCommand";
|
|
@@ -58,7 +58,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
58
58
|
|
|
59
59
|
urlParser?: __UrlParser;
|
|
60
60
|
|
|
61
|
-
bodyLengthChecker?:
|
|
61
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
62
62
|
|
|
63
63
|
streamCollector?: __StreamCollector;
|
|
64
64
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class PinpointEmailServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,27 +1,32 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { PinpointEmailServiceException as __BaseException } from "./PinpointEmailServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccountSuspendedException";
|
|
5
|
-
$fault: "client";
|
|
6
|
-
|
|
4
|
+
export declare class AccountSuspendedException extends __BaseException {
|
|
5
|
+
readonly name: "AccountSuspendedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
|
|
8
|
+
constructor(opts: __ExceptionOptionType<AccountSuspendedException, __BaseException>);
|
|
7
9
|
}
|
|
8
10
|
|
|
9
|
-
export
|
|
10
|
-
name: "AlreadyExistsException";
|
|
11
|
-
$fault: "client";
|
|
12
|
-
|
|
11
|
+
export declare class AlreadyExistsException extends __BaseException {
|
|
12
|
+
readonly name: "AlreadyExistsException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
|
|
15
|
+
constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
|
|
13
16
|
}
|
|
14
17
|
|
|
15
|
-
export
|
|
16
|
-
name: "BadRequestException";
|
|
17
|
-
$fault: "client";
|
|
18
|
-
|
|
18
|
+
export declare class BadRequestException extends __BaseException {
|
|
19
|
+
readonly name: "BadRequestException";
|
|
20
|
+
readonly $fault: "client";
|
|
21
|
+
|
|
22
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
19
23
|
}
|
|
20
24
|
|
|
21
|
-
export
|
|
22
|
-
name: "ConcurrentModificationException";
|
|
23
|
-
$fault: "server";
|
|
24
|
-
|
|
25
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
26
|
+
readonly name: "ConcurrentModificationException";
|
|
27
|
+
readonly $fault: "server";
|
|
28
|
+
|
|
29
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
25
30
|
}
|
|
26
31
|
export declare enum TlsPolicy {
|
|
27
32
|
OPTIONAL = "OPTIONAL",
|
|
@@ -105,22 +110,25 @@ export declare namespace CreateConfigurationSetResponse {
|
|
|
105
110
|
const filterSensitiveLog: (obj: CreateConfigurationSetResponse) => any;
|
|
106
111
|
}
|
|
107
112
|
|
|
108
|
-
export
|
|
109
|
-
name: "LimitExceededException";
|
|
110
|
-
$fault: "client";
|
|
111
|
-
|
|
113
|
+
export declare class LimitExceededException extends __BaseException {
|
|
114
|
+
readonly name: "LimitExceededException";
|
|
115
|
+
readonly $fault: "client";
|
|
116
|
+
|
|
117
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
112
118
|
}
|
|
113
119
|
|
|
114
|
-
export
|
|
115
|
-
name: "NotFoundException";
|
|
116
|
-
$fault: "client";
|
|
117
|
-
|
|
120
|
+
export declare class NotFoundException extends __BaseException {
|
|
121
|
+
readonly name: "NotFoundException";
|
|
122
|
+
readonly $fault: "client";
|
|
123
|
+
|
|
124
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
118
125
|
}
|
|
119
126
|
|
|
120
|
-
export
|
|
121
|
-
name: "TooManyRequestsException";
|
|
122
|
-
$fault: "client";
|
|
123
|
-
|
|
127
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
128
|
+
readonly name: "TooManyRequestsException";
|
|
129
|
+
readonly $fault: "client";
|
|
130
|
+
|
|
131
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
124
132
|
}
|
|
125
133
|
export declare enum DimensionValueSource {
|
|
126
134
|
EMAIL_HEADER = "EMAIL_HEADER",
|
|
@@ -341,22 +349,25 @@ export declare namespace CreateDeliverabilityTestReportResponse {
|
|
|
341
349
|
const filterSensitiveLog: (obj: CreateDeliverabilityTestReportResponse) => any;
|
|
342
350
|
}
|
|
343
351
|
|
|
344
|
-
export
|
|
345
|
-
name: "MailFromDomainNotVerifiedException";
|
|
346
|
-
$fault: "client";
|
|
347
|
-
|
|
352
|
+
export declare class MailFromDomainNotVerifiedException extends __BaseException {
|
|
353
|
+
readonly name: "MailFromDomainNotVerifiedException";
|
|
354
|
+
readonly $fault: "client";
|
|
355
|
+
|
|
356
|
+
constructor(opts: __ExceptionOptionType<MailFromDomainNotVerifiedException, __BaseException>);
|
|
348
357
|
}
|
|
349
358
|
|
|
350
|
-
export
|
|
351
|
-
name: "MessageRejected";
|
|
352
|
-
$fault: "client";
|
|
353
|
-
|
|
359
|
+
export declare class MessageRejected extends __BaseException {
|
|
360
|
+
readonly name: "MessageRejected";
|
|
361
|
+
readonly $fault: "client";
|
|
362
|
+
|
|
363
|
+
constructor(opts: __ExceptionOptionType<MessageRejected, __BaseException>);
|
|
354
364
|
}
|
|
355
365
|
|
|
356
|
-
export
|
|
357
|
-
name: "SendingPausedException";
|
|
358
|
-
$fault: "client";
|
|
359
|
-
|
|
366
|
+
export declare class SendingPausedException extends __BaseException {
|
|
367
|
+
readonly name: "SendingPausedException";
|
|
368
|
+
readonly $fault: "client";
|
|
369
|
+
|
|
370
|
+
constructor(opts: __ExceptionOptionType<SendingPausedException, __BaseException>);
|
|
360
371
|
}
|
|
361
372
|
|
|
362
373
|
export interface CreateEmailIdentityRequest {
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: PinpointEmailClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: PinpointEmailClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: PinpointEmailClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-pinpoint-email",
|
|
3
3
|
"description": "AWS SDK for JavaScript Pinpoint Email Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,34 +18,34 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.1",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.1",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.1",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.1",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.1",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.1",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.1",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.1",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.1",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.1",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.1",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.1",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.1",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.1",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.1",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.1",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.1",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.1",
|
|
39
|
+
"@aws-sdk/types": "3.54.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.1",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.1",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.1",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.1",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.1",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|