@aws-sdk/client-pinpoint-email 3.288.0 → 3.290.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/CreateConfigurationSetCommand.d.ts +19 -0
- package/dist-types/commands/CreateConfigurationSetEventDestinationCommand.d.ts +16 -0
- package/dist-types/commands/CreateDedicatedIpPoolCommand.d.ts +16 -0
- package/dist-types/commands/CreateDeliverabilityTestReportCommand.d.ts +30 -0
- package/dist-types/commands/CreateEmailIdentityCommand.d.ts +13 -0
- package/dist-types/commands/DeleteConfigurationSetCommand.d.ts +13 -0
- package/dist-types/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +10 -0
- package/dist-types/commands/DeleteDedicatedIpPoolCommand.d.ts +13 -0
- package/dist-types/commands/DeleteEmailIdentityCommand.d.ts +13 -0
- package/dist-types/commands/GetAccountCommand.d.ts +7 -0
- package/dist-types/commands/GetBlacklistReportsCommand.d.ts +10 -0
- package/dist-types/commands/GetConfigurationSetCommand.d.ts +10 -0
- package/dist-types/commands/GetConfigurationSetEventDestinationsCommand.d.ts +10 -0
- package/dist-types/commands/GetDedicatedIpCommand.d.ts +10 -0
- package/dist-types/commands/GetDedicatedIpsCommand.d.ts +10 -0
- package/dist-types/commands/GetDeliverabilityDashboardOptionsCommand.d.ts +10 -0
- package/dist-types/commands/GetDeliverabilityTestReportCommand.d.ts +10 -0
- package/dist-types/commands/GetDomainDeliverabilityCampaignCommand.d.ts +10 -0
- package/dist-types/commands/GetDomainStatisticsReportCommand.d.ts +10 -0
- package/dist-types/commands/GetEmailIdentityCommand.d.ts +10 -0
- package/dist-types/commands/ListConfigurationSetsCommand.d.ts +7 -0
- package/dist-types/commands/ListDedicatedIpPoolsCommand.d.ts +7 -0
- package/dist-types/commands/ListDeliverabilityTestReportsCommand.d.ts +10 -0
- package/dist-types/commands/ListDomainDeliverabilityCampaignsCommand.d.ts +10 -0
- package/dist-types/commands/ListEmailIdentitiesCommand.d.ts +7 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +10 -0
- package/dist-types/commands/PutAccountDedicatedIpWarmupAttributesCommand.d.ts +7 -0
- package/dist-types/commands/PutAccountSendingAttributesCommand.d.ts +7 -0
- package/dist-types/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +10 -0
- package/dist-types/commands/PutConfigurationSetReputationOptionsCommand.d.ts +10 -0
- package/dist-types/commands/PutConfigurationSetSendingOptionsCommand.d.ts +10 -0
- package/dist-types/commands/PutConfigurationSetTrackingOptionsCommand.d.ts +10 -0
- package/dist-types/commands/PutDedicatedIpInPoolCommand.d.ts +10 -0
- package/dist-types/commands/PutDedicatedIpWarmupAttributesCommand.d.ts +10 -0
- package/dist-types/commands/PutDeliverabilityDashboardOptionCommand.d.ts +16 -0
- package/dist-types/commands/PutEmailIdentityDkimAttributesCommand.d.ts +10 -0
- package/dist-types/commands/PutEmailIdentityFeedbackAttributesCommand.d.ts +10 -0
- package/dist-types/commands/PutEmailIdentityMailFromAttributesCommand.d.ts +10 -0
- package/dist-types/commands/SendEmailCommand.d.ts +27 -0
- package/dist-types/commands/TagResourceCommand.d.ts +13 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +13 -0
- package/dist-types/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +10 -0
- package/package.json +29 -29
|
@@ -33,6 +33,25 @@ export interface CreateConfigurationSetCommandOutput extends CreateConfiguration
|
|
|
33
33
|
* @see {@link CreateConfigurationSetCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link AlreadyExistsException} (client fault)
|
|
37
|
+
* <p>The resource specified in your request already exists.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link BadRequestException} (client fault)
|
|
40
|
+
* <p>The input you provided is invalid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ConcurrentModificationException} (server fault)
|
|
43
|
+
* <p>The resource is being modified by another operation or thread.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
46
|
+
* <p>There are too many instances of the specified resource type.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link NotFoundException} (client fault)
|
|
49
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
52
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
36
55
|
*/
|
|
37
56
|
export declare class CreateConfigurationSetCommand extends $Command<CreateConfigurationSetCommandInput, CreateConfigurationSetCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
38
57
|
readonly input: CreateConfigurationSetCommandInput;
|
|
@@ -35,6 +35,22 @@ export interface CreateConfigurationSetEventDestinationCommandOutput extends Cre
|
|
|
35
35
|
* @see {@link CreateConfigurationSetEventDestinationCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link AlreadyExistsException} (client fault)
|
|
39
|
+
* <p>The resource specified in your request already exists.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link BadRequestException} (client fault)
|
|
42
|
+
* <p>The input you provided is invalid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>There are too many instances of the specified resource type.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link NotFoundException} (client fault)
|
|
48
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
51
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
38
54
|
*/
|
|
39
55
|
export declare class CreateConfigurationSetEventDestinationCommand extends $Command<CreateConfigurationSetEventDestinationCommandInput, CreateConfigurationSetEventDestinationCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
40
56
|
readonly input: CreateConfigurationSetEventDestinationCommandInput;
|
|
@@ -32,6 +32,22 @@ export interface CreateDedicatedIpPoolCommandOutput extends CreateDedicatedIpPoo
|
|
|
32
32
|
* @see {@link CreateDedicatedIpPoolCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AlreadyExistsException} (client fault)
|
|
36
|
+
* <p>The resource specified in your request already exists.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link BadRequestException} (client fault)
|
|
39
|
+
* <p>The input you provided is invalid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ConcurrentModificationException} (server fault)
|
|
42
|
+
* <p>The resource is being modified by another operation or thread.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>There are too many instances of the specified resource type.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
48
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
35
51
|
*/
|
|
36
52
|
export declare class CreateDedicatedIpPoolCommand extends $Command<CreateDedicatedIpPoolCommandInput, CreateDedicatedIpPoolCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
37
53
|
readonly input: CreateDedicatedIpPoolCommandInput;
|
|
@@ -35,6 +35,36 @@ export interface CreateDeliverabilityTestReportCommandOutput extends CreateDeliv
|
|
|
35
35
|
* @see {@link CreateDeliverabilityTestReportCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link AccountSuspendedException} (client fault)
|
|
39
|
+
* <p>The message can't be sent because the account's ability to send email has been
|
|
40
|
+
* permanently restricted.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link BadRequestException} (client fault)
|
|
43
|
+
* <p>The input you provided is invalid.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ConcurrentModificationException} (server fault)
|
|
46
|
+
* <p>The resource is being modified by another operation or thread.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
49
|
+
* <p>There are too many instances of the specified resource type.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link MailFromDomainNotVerifiedException} (client fault)
|
|
52
|
+
* <p>The message can't be sent because the sending domain isn't verified.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link MessageRejected} (client fault)
|
|
55
|
+
* <p>The message can't be sent because it contains invalid content.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link NotFoundException} (client fault)
|
|
58
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link SendingPausedException} (client fault)
|
|
61
|
+
* <p>The message can't be sent because the account's ability to send email is currently
|
|
62
|
+
* paused.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
65
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
66
|
+
*
|
|
67
|
+
*
|
|
38
68
|
*/
|
|
39
69
|
export declare class CreateDeliverabilityTestReportCommand extends $Command<CreateDeliverabilityTestReportCommandInput, CreateDeliverabilityTestReportCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
40
70
|
readonly input: CreateDeliverabilityTestReportCommandInput;
|
|
@@ -42,6 +42,19 @@ export interface CreateEmailIdentityCommandOutput extends CreateEmailIdentityRes
|
|
|
42
42
|
* @see {@link CreateEmailIdentityCommandOutput} for command's `response` shape.
|
|
43
43
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
44
44
|
*
|
|
45
|
+
* @throws {@link BadRequestException} (client fault)
|
|
46
|
+
* <p>The input you provided is invalid.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ConcurrentModificationException} (server fault)
|
|
49
|
+
* <p>The resource is being modified by another operation or thread.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
52
|
+
* <p>There are too many instances of the specified resource type.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
55
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
45
58
|
*/
|
|
46
59
|
export declare class CreateEmailIdentityCommand extends $Command<CreateEmailIdentityCommandInput, CreateEmailIdentityCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
47
60
|
readonly input: CreateEmailIdentityCommandInput;
|
|
@@ -34,6 +34,19 @@ export interface DeleteConfigurationSetCommandOutput extends DeleteConfiguration
|
|
|
34
34
|
* @see {@link DeleteConfigurationSetCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link BadRequestException} (client fault)
|
|
38
|
+
* <p>The input you provided is invalid.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ConcurrentModificationException} (server fault)
|
|
41
|
+
* <p>The resource is being modified by another operation or thread.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link NotFoundException} (client fault)
|
|
44
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
47
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
37
50
|
*/
|
|
38
51
|
export declare class DeleteConfigurationSetCommand extends $Command<DeleteConfigurationSetCommandInput, DeleteConfigurationSetCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
39
52
|
readonly input: DeleteConfigurationSetCommandInput;
|
|
@@ -34,6 +34,16 @@ export interface DeleteConfigurationSetEventDestinationCommandOutput extends Del
|
|
|
34
34
|
* @see {@link DeleteConfigurationSetEventDestinationCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link BadRequestException} (client fault)
|
|
38
|
+
* <p>The input you provided is invalid.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link NotFoundException} (client fault)
|
|
41
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
44
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
37
47
|
*/
|
|
38
48
|
export declare class DeleteConfigurationSetEventDestinationCommand extends $Command<DeleteConfigurationSetEventDestinationCommandInput, DeleteConfigurationSetEventDestinationCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
39
49
|
readonly input: DeleteConfigurationSetEventDestinationCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface DeleteDedicatedIpPoolCommandOutput extends DeleteDedicatedIpPoo
|
|
|
29
29
|
* @see {@link DeleteDedicatedIpPoolCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The input you provided is invalid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConcurrentModificationException} (server fault)
|
|
36
|
+
* <p>The resource is being modified by another operation or thread.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class DeleteDedicatedIpPoolCommand extends $Command<DeleteDedicatedIpPoolCommandInput, DeleteDedicatedIpPoolCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
34
47
|
readonly input: DeleteDedicatedIpPoolCommandInput;
|
|
@@ -30,6 +30,19 @@ export interface DeleteEmailIdentityCommandOutput extends DeleteEmailIdentityRes
|
|
|
30
30
|
* @see {@link DeleteEmailIdentityCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequestException} (client fault)
|
|
34
|
+
* <p>The input you provided is invalid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConcurrentModificationException} (server fault)
|
|
37
|
+
* <p>The resource is being modified by another operation or thread.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link NotFoundException} (client fault)
|
|
40
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
43
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
33
46
|
*/
|
|
34
47
|
export declare class DeleteEmailIdentityCommand extends $Command<DeleteEmailIdentityCommandInput, DeleteEmailIdentityCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
35
48
|
readonly input: DeleteEmailIdentityCommandInput;
|
|
@@ -30,6 +30,13 @@ export interface GetAccountCommandOutput extends GetAccountResponse, __MetadataB
|
|
|
30
30
|
* @see {@link GetAccountCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequestException} (client fault)
|
|
34
|
+
* <p>The input you provided is invalid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
37
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
33
40
|
*/
|
|
34
41
|
export declare class GetAccountCommand extends $Command<GetAccountCommandInput, GetAccountCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
35
42
|
readonly input: GetAccountCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface GetBlacklistReportsCommandOutput extends GetBlacklistReportsRes
|
|
|
29
29
|
* @see {@link GetBlacklistReportsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The input you provided is invalid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link NotFoundException} (client fault)
|
|
36
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
39
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class GetBlacklistReportsCommand extends $Command<GetBlacklistReportsCommandInput, GetBlacklistReportsCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
34
44
|
readonly input: GetBlacklistReportsCommandInput;
|
|
@@ -36,6 +36,16 @@ export interface GetConfigurationSetCommandOutput extends GetConfigurationSetRes
|
|
|
36
36
|
* @see {@link GetConfigurationSetCommandOutput} for command's `response` shape.
|
|
37
37
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
38
38
|
*
|
|
39
|
+
* @throws {@link BadRequestException} (client fault)
|
|
40
|
+
* <p>The input you provided is invalid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link NotFoundException} (client fault)
|
|
43
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
46
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
39
49
|
*/
|
|
40
50
|
export declare class GetConfigurationSetCommand extends $Command<GetConfigurationSetCommandInput, GetConfigurationSetCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
41
51
|
readonly input: GetConfigurationSetCommandInput;
|
|
@@ -35,6 +35,16 @@ export interface GetConfigurationSetEventDestinationsCommandOutput extends GetCo
|
|
|
35
35
|
* @see {@link GetConfigurationSetEventDestinationsCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link BadRequestException} (client fault)
|
|
39
|
+
* <p>The input you provided is invalid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link NotFoundException} (client fault)
|
|
42
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
45
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
38
48
|
*/
|
|
39
49
|
export declare class GetConfigurationSetEventDestinationsCommand extends $Command<GetConfigurationSetEventDestinationsCommandInput, GetConfigurationSetEventDestinationsCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
40
50
|
readonly input: GetConfigurationSetEventDestinationsCommandInput;
|
|
@@ -31,6 +31,16 @@ export interface GetDedicatedIpCommandOutput extends GetDedicatedIpResponse, __M
|
|
|
31
31
|
* @see {@link GetDedicatedIpCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>The input you provided is invalid.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link NotFoundException} (client fault)
|
|
38
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
41
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
34
44
|
*/
|
|
35
45
|
export declare class GetDedicatedIpCommand extends $Command<GetDedicatedIpCommandInput, GetDedicatedIpCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
36
46
|
readonly input: GetDedicatedIpCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface GetDedicatedIpsCommandOutput extends GetDedicatedIpsResponse, _
|
|
|
30
30
|
* @see {@link GetDedicatedIpsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequestException} (client fault)
|
|
34
|
+
* <p>The input you provided is invalid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link NotFoundException} (client fault)
|
|
37
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
40
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class GetDedicatedIpsCommand extends $Command<GetDedicatedIpsCommandInput, GetDedicatedIpsCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
35
45
|
readonly input: GetDedicatedIpsCommandInput;
|
|
@@ -35,6 +35,16 @@ export interface GetDeliverabilityDashboardOptionsCommandOutput extends GetDeliv
|
|
|
35
35
|
* @see {@link GetDeliverabilityDashboardOptionsCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link BadRequestException} (client fault)
|
|
39
|
+
* <p>The input you provided is invalid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
42
|
+
* <p>There are too many instances of the specified resource type.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
45
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
38
48
|
*/
|
|
39
49
|
export declare class GetDeliverabilityDashboardOptionsCommand extends $Command<GetDeliverabilityDashboardOptionsCommandInput, GetDeliverabilityDashboardOptionsCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
40
50
|
readonly input: GetDeliverabilityDashboardOptionsCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface GetDeliverabilityTestReportCommandOutput extends GetDeliverabil
|
|
|
29
29
|
* @see {@link GetDeliverabilityTestReportCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The input you provided is invalid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link NotFoundException} (client fault)
|
|
36
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
39
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class GetDeliverabilityTestReportCommand extends $Command<GetDeliverabilityTestReportCommandInput, GetDeliverabilityTestReportCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
34
44
|
readonly input: GetDeliverabilityTestReportCommandInput;
|
|
@@ -32,6 +32,16 @@ export interface GetDomainDeliverabilityCampaignCommandOutput extends GetDomainD
|
|
|
32
32
|
* @see {@link GetDomainDeliverabilityCampaignCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input you provided is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
35
45
|
*/
|
|
36
46
|
export declare class GetDomainDeliverabilityCampaignCommand extends $Command<GetDomainDeliverabilityCampaignCommandInput, GetDomainDeliverabilityCampaignCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
37
47
|
readonly input: GetDomainDeliverabilityCampaignCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface GetDomainStatisticsReportCommandOutput extends GetDomainStatist
|
|
|
30
30
|
* @see {@link GetDomainStatisticsReportCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequestException} (client fault)
|
|
34
|
+
* <p>The input you provided is invalid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link NotFoundException} (client fault)
|
|
37
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
40
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class GetDomainStatisticsReportCommand extends $Command<GetDomainStatisticsReportCommandInput, GetDomainStatisticsReportCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
35
45
|
readonly input: GetDomainStatisticsReportCommandInput;
|
|
@@ -31,6 +31,16 @@ export interface GetEmailIdentityCommandOutput extends GetEmailIdentityResponse,
|
|
|
31
31
|
* @see {@link GetEmailIdentityCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>The input you provided is invalid.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link NotFoundException} (client fault)
|
|
38
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
41
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
34
44
|
*/
|
|
35
45
|
export declare class GetEmailIdentityCommand extends $Command<GetEmailIdentityCommandInput, GetEmailIdentityCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
36
46
|
readonly input: GetEmailIdentityCommandInput;
|
|
@@ -35,6 +35,13 @@ export interface ListConfigurationSetsCommandOutput extends ListConfigurationSet
|
|
|
35
35
|
* @see {@link ListConfigurationSetsCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link BadRequestException} (client fault)
|
|
39
|
+
* <p>The input you provided is invalid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
38
45
|
*/
|
|
39
46
|
export declare class ListConfigurationSetsCommand extends $Command<ListConfigurationSetsCommandInput, ListConfigurationSetsCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
40
47
|
readonly input: ListConfigurationSetsCommandInput;
|
|
@@ -30,6 +30,13 @@ export interface ListDedicatedIpPoolsCommandOutput extends ListDedicatedIpPoolsR
|
|
|
30
30
|
* @see {@link ListDedicatedIpPoolsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequestException} (client fault)
|
|
34
|
+
* <p>The input you provided is invalid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
37
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
33
40
|
*/
|
|
34
41
|
export declare class ListDedicatedIpPoolsCommand extends $Command<ListDedicatedIpPoolsCommandInput, ListDedicatedIpPoolsCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
35
42
|
readonly input: ListDedicatedIpPoolsCommandInput;
|
|
@@ -31,6 +31,16 @@ export interface ListDeliverabilityTestReportsCommandOutput extends ListDelivera
|
|
|
31
31
|
* @see {@link ListDeliverabilityTestReportsCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>The input you provided is invalid.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link NotFoundException} (client fault)
|
|
38
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
41
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
34
44
|
*/
|
|
35
45
|
export declare class ListDeliverabilityTestReportsCommand extends $Command<ListDeliverabilityTestReportsCommandInput, ListDeliverabilityTestReportsCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
36
46
|
readonly input: ListDeliverabilityTestReportsCommandInput;
|
|
@@ -32,6 +32,16 @@ export interface ListDomainDeliverabilityCampaignsCommandOutput extends ListDoma
|
|
|
32
32
|
* @see {@link ListDomainDeliverabilityCampaignsCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input you provided is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
35
45
|
*/
|
|
36
46
|
export declare class ListDomainDeliverabilityCampaignsCommand extends $Command<ListDomainDeliverabilityCampaignsCommandInput, ListDomainDeliverabilityCampaignsCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
37
47
|
readonly input: ListDomainDeliverabilityCampaignsCommandInput;
|
|
@@ -31,6 +31,13 @@ export interface ListEmailIdentitiesCommandOutput extends ListEmailIdentitiesRes
|
|
|
31
31
|
* @see {@link ListEmailIdentitiesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>The input you provided is invalid.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
38
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
34
41
|
*/
|
|
35
42
|
export declare class ListEmailIdentitiesCommand extends $Command<ListEmailIdentitiesCommandInput, ListEmailIdentitiesCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
36
43
|
readonly input: ListEmailIdentitiesCommandInput;
|
|
@@ -34,6 +34,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
34
34
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link BadRequestException} (client fault)
|
|
38
|
+
* <p>The input you provided is invalid.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link NotFoundException} (client fault)
|
|
41
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
44
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
37
47
|
*/
|
|
38
48
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
39
49
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -29,6 +29,13 @@ export interface PutAccountDedicatedIpWarmupAttributesCommandOutput extends PutA
|
|
|
29
29
|
* @see {@link PutAccountDedicatedIpWarmupAttributesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The input you provided is invalid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
36
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
37
|
+
*
|
|
38
|
+
*
|
|
32
39
|
*/
|
|
33
40
|
export declare class PutAccountDedicatedIpWarmupAttributesCommand extends $Command<PutAccountDedicatedIpWarmupAttributesCommandInput, PutAccountDedicatedIpWarmupAttributesCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
34
41
|
readonly input: PutAccountDedicatedIpWarmupAttributesCommandInput;
|
|
@@ -29,6 +29,13 @@ export interface PutAccountSendingAttributesCommandOutput extends PutAccountSend
|
|
|
29
29
|
* @see {@link PutAccountSendingAttributesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The input you provided is invalid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
36
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
37
|
+
*
|
|
38
|
+
*
|
|
32
39
|
*/
|
|
33
40
|
export declare class PutAccountSendingAttributesCommand extends $Command<PutAccountSendingAttributesCommandInput, PutAccountSendingAttributesCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
34
41
|
readonly input: PutAccountSendingAttributesCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface PutConfigurationSetDeliveryOptionsCommandOutput extends PutConf
|
|
|
30
30
|
* @see {@link PutConfigurationSetDeliveryOptionsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequestException} (client fault)
|
|
34
|
+
* <p>The input you provided is invalid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link NotFoundException} (client fault)
|
|
37
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
40
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class PutConfigurationSetDeliveryOptionsCommand extends $Command<PutConfigurationSetDeliveryOptionsCommandInput, PutConfigurationSetDeliveryOptionsCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
35
45
|
readonly input: PutConfigurationSetDeliveryOptionsCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface PutConfigurationSetReputationOptionsCommandOutput extends PutCo
|
|
|
30
30
|
* @see {@link PutConfigurationSetReputationOptionsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequestException} (client fault)
|
|
34
|
+
* <p>The input you provided is invalid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link NotFoundException} (client fault)
|
|
37
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
40
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class PutConfigurationSetReputationOptionsCommand extends $Command<PutConfigurationSetReputationOptionsCommandInput, PutConfigurationSetReputationOptionsCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
35
45
|
readonly input: PutConfigurationSetReputationOptionsCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface PutConfigurationSetSendingOptionsCommandOutput extends PutConfi
|
|
|
30
30
|
* @see {@link PutConfigurationSetSendingOptionsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequestException} (client fault)
|
|
34
|
+
* <p>The input you provided is invalid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link NotFoundException} (client fault)
|
|
37
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
40
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class PutConfigurationSetSendingOptionsCommand extends $Command<PutConfigurationSetSendingOptionsCommandInput, PutConfigurationSetSendingOptionsCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
35
45
|
readonly input: PutConfigurationSetSendingOptionsCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface PutConfigurationSetTrackingOptionsCommandOutput extends PutConf
|
|
|
30
30
|
* @see {@link PutConfigurationSetTrackingOptionsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequestException} (client fault)
|
|
34
|
+
* <p>The input you provided is invalid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link NotFoundException} (client fault)
|
|
37
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
40
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class PutConfigurationSetTrackingOptionsCommand extends $Command<PutConfigurationSetTrackingOptionsCommandInput, PutConfigurationSetTrackingOptionsCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
35
45
|
readonly input: PutConfigurationSetTrackingOptionsCommandInput;
|
|
@@ -38,6 +38,16 @@ export interface PutDedicatedIpInPoolCommandOutput extends PutDedicatedIpInPoolR
|
|
|
38
38
|
* @see {@link PutDedicatedIpInPoolCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link BadRequestException} (client fault)
|
|
42
|
+
* <p>The input you provided is invalid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link NotFoundException} (client fault)
|
|
45
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
48
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
41
51
|
*/
|
|
42
52
|
export declare class PutDedicatedIpInPoolCommand extends $Command<PutDedicatedIpInPoolCommandInput, PutDedicatedIpInPoolCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
43
53
|
readonly input: PutDedicatedIpInPoolCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface PutDedicatedIpWarmupAttributesCommandOutput extends PutDedicate
|
|
|
29
29
|
* @see {@link PutDedicatedIpWarmupAttributesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The input you provided is invalid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link NotFoundException} (client fault)
|
|
36
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
39
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class PutDedicatedIpWarmupAttributesCommand extends $Command<PutDedicatedIpWarmupAttributesCommandInput, PutDedicatedIpWarmupAttributesCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
34
44
|
readonly input: PutDedicatedIpWarmupAttributesCommandInput;
|
|
@@ -35,6 +35,22 @@ export interface PutDeliverabilityDashboardOptionCommandOutput extends PutDelive
|
|
|
35
35
|
* @see {@link PutDeliverabilityDashboardOptionCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link AlreadyExistsException} (client fault)
|
|
39
|
+
* <p>The resource specified in your request already exists.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link BadRequestException} (client fault)
|
|
42
|
+
* <p>The input you provided is invalid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>There are too many instances of the specified resource type.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link NotFoundException} (client fault)
|
|
48
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
51
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
38
54
|
*/
|
|
39
55
|
export declare class PutDeliverabilityDashboardOptionCommand extends $Command<PutDeliverabilityDashboardOptionCommandInput, PutDeliverabilityDashboardOptionCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
40
56
|
readonly input: PutDeliverabilityDashboardOptionCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface PutEmailIdentityDkimAttributesCommandOutput extends PutEmailIde
|
|
|
29
29
|
* @see {@link PutEmailIdentityDkimAttributesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The input you provided is invalid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link NotFoundException} (client fault)
|
|
36
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
39
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class PutEmailIdentityDkimAttributesCommand extends $Command<PutEmailIdentityDkimAttributesCommandInput, PutEmailIdentityDkimAttributesCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
34
44
|
readonly input: PutEmailIdentityDkimAttributesCommandInput;
|
|
@@ -39,6 +39,16 @@ export interface PutEmailIdentityFeedbackAttributesCommandOutput extends PutEmai
|
|
|
39
39
|
* @see {@link PutEmailIdentityFeedbackAttributesCommandOutput} for command's `response` shape.
|
|
40
40
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
41
41
|
*
|
|
42
|
+
* @throws {@link BadRequestException} (client fault)
|
|
43
|
+
* <p>The input you provided is invalid.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link NotFoundException} (client fault)
|
|
46
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
49
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
42
52
|
*/
|
|
43
53
|
export declare class PutEmailIdentityFeedbackAttributesCommand extends $Command<PutEmailIdentityFeedbackAttributesCommandInput, PutEmailIdentityFeedbackAttributesCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
44
54
|
readonly input: PutEmailIdentityFeedbackAttributesCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface PutEmailIdentityMailFromAttributesCommandOutput extends PutEmai
|
|
|
30
30
|
* @see {@link PutEmailIdentityMailFromAttributesCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequestException} (client fault)
|
|
34
|
+
* <p>The input you provided is invalid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link NotFoundException} (client fault)
|
|
37
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
40
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class PutEmailIdentityMailFromAttributesCommand extends $Command<PutEmailIdentityMailFromAttributesCommandInput, PutEmailIdentityMailFromAttributesCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
35
45
|
readonly input: PutEmailIdentityMailFromAttributesCommandInput;
|
|
@@ -46,6 +46,33 @@ export interface SendEmailCommandOutput extends SendEmailResponse, __MetadataBea
|
|
|
46
46
|
* @see {@link SendEmailCommandOutput} for command's `response` shape.
|
|
47
47
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
48
48
|
*
|
|
49
|
+
* @throws {@link AccountSuspendedException} (client fault)
|
|
50
|
+
* <p>The message can't be sent because the account's ability to send email has been
|
|
51
|
+
* permanently restricted.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link BadRequestException} (client fault)
|
|
54
|
+
* <p>The input you provided is invalid.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
57
|
+
* <p>There are too many instances of the specified resource type.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link MailFromDomainNotVerifiedException} (client fault)
|
|
60
|
+
* <p>The message can't be sent because the sending domain isn't verified.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link MessageRejected} (client fault)
|
|
63
|
+
* <p>The message can't be sent because it contains invalid content.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link NotFoundException} (client fault)
|
|
66
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link SendingPausedException} (client fault)
|
|
69
|
+
* <p>The message can't be sent because the account's ability to send email is currently
|
|
70
|
+
* paused.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
73
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
74
|
+
*
|
|
75
|
+
*
|
|
49
76
|
*/
|
|
50
77
|
export declare class SendEmailCommand extends $Command<SendEmailCommandInput, SendEmailCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
51
78
|
readonly input: SendEmailCommandInput;
|
|
@@ -37,6 +37,19 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
37
37
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
38
38
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
39
39
|
*
|
|
40
|
+
* @throws {@link BadRequestException} (client fault)
|
|
41
|
+
* <p>The input you provided is invalid.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ConcurrentModificationException} (server fault)
|
|
44
|
+
* <p>The resource is being modified by another operation or thread.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link NotFoundException} (client fault)
|
|
47
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
50
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
40
53
|
*/
|
|
41
54
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
42
55
|
readonly input: TagResourceCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
29
29
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The input you provided is invalid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConcurrentModificationException} (server fault)
|
|
36
|
+
* <p>The resource is being modified by another operation or thread.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
34
47
|
readonly input: UntagResourceCommandInput;
|
|
@@ -34,6 +34,16 @@ export interface UpdateConfigurationSetEventDestinationCommandOutput extends Upd
|
|
|
34
34
|
* @see {@link UpdateConfigurationSetEventDestinationCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link BadRequestException} (client fault)
|
|
38
|
+
* <p>The input you provided is invalid.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link NotFoundException} (client fault)
|
|
41
|
+
* <p>The resource you attempted to access doesn't exist.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
44
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
37
47
|
*/
|
|
38
48
|
export declare class UpdateConfigurationSetEventDestinationCommand extends $Command<UpdateConfigurationSetEventDestinationCommandInput, UpdateConfigurationSetEventDestinationCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
39
49
|
readonly input: UpdateConfigurationSetEventDestinationCommandInput;
|
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.290.0",
|
|
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",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|