@aws-sdk/client-pinpoint-email 3.295.0 → 3.297.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/PinpointEmail.d.ts +43 -0
- package/dist-types/PinpointEmailClient.d.ts +24 -4
- package/dist-types/commands/CreateConfigurationSetCommand.d.ts +16 -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 +16 -0
- package/dist-types/commands/CreateEmailIdentityCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConfigurationSetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDedicatedIpPoolCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEmailIdentityCommand.d.ts +16 -0
- package/dist-types/commands/GetAccountCommand.d.ts +16 -0
- package/dist-types/commands/GetBlacklistReportsCommand.d.ts +16 -0
- package/dist-types/commands/GetConfigurationSetCommand.d.ts +16 -0
- package/dist-types/commands/GetConfigurationSetEventDestinationsCommand.d.ts +16 -0
- package/dist-types/commands/GetDedicatedIpCommand.d.ts +16 -0
- package/dist-types/commands/GetDedicatedIpsCommand.d.ts +16 -0
- package/dist-types/commands/GetDeliverabilityDashboardOptionsCommand.d.ts +16 -0
- package/dist-types/commands/GetDeliverabilityTestReportCommand.d.ts +16 -0
- package/dist-types/commands/GetDomainDeliverabilityCampaignCommand.d.ts +16 -0
- package/dist-types/commands/GetDomainStatisticsReportCommand.d.ts +16 -0
- package/dist-types/commands/GetEmailIdentityCommand.d.ts +16 -0
- package/dist-types/commands/ListConfigurationSetsCommand.d.ts +16 -0
- package/dist-types/commands/ListDedicatedIpPoolsCommand.d.ts +16 -0
- package/dist-types/commands/ListDeliverabilityTestReportsCommand.d.ts +16 -0
- package/dist-types/commands/ListDomainDeliverabilityCampaignsCommand.d.ts +16 -0
- package/dist-types/commands/ListEmailIdentitiesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutAccountDedicatedIpWarmupAttributesCommand.d.ts +16 -0
- package/dist-types/commands/PutAccountSendingAttributesCommand.d.ts +16 -0
- package/dist-types/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +16 -0
- package/dist-types/commands/PutConfigurationSetReputationOptionsCommand.d.ts +16 -0
- package/dist-types/commands/PutConfigurationSetSendingOptionsCommand.d.ts +16 -0
- package/dist-types/commands/PutConfigurationSetTrackingOptionsCommand.d.ts +16 -0
- package/dist-types/commands/PutDedicatedIpInPoolCommand.d.ts +16 -0
- package/dist-types/commands/PutDedicatedIpWarmupAttributesCommand.d.ts +16 -0
- package/dist-types/commands/PutDeliverabilityDashboardOptionCommand.d.ts +16 -0
- package/dist-types/commands/PutEmailIdentityDkimAttributesCommand.d.ts +16 -0
- package/dist-types/commands/PutEmailIdentityFeedbackAttributesCommand.d.ts +16 -0
- package/dist-types/commands/PutEmailIdentityMailFromAttributesCommand.d.ts +16 -0
- package/dist-types/commands/SendEmailCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +16 -0
- package/dist-types/models/PinpointEmailServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +174 -0
- package/dist-types/pagination/GetDedicatedIpsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListConfigurationSetsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDedicatedIpPoolsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDeliverabilityTestReportsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDomainDeliverabilityCampaignsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEmailIdentitiesPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
5
5
|
import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Remove one or more tags (keys and values) from a specified resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
46
53
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
47
54
|
readonly input: UntagResourceCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: UntagResourceCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PinpointEmailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateConfigurationSetEventDestinationRequest, UpdateConfigurationSetEventDestinationResponse } from "../models/models_0";
|
|
5
5
|
import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateConfigurationSetEventDestinationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateConfigurationSetEventDestinationCommandInput extends UpdateConfigurationSetEventDestinationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateConfigurationSetEventDestinationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateConfigurationSetEventDestinationCommandOutput extends UpdateConfigurationSetEventDestinationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Update the configuration of an event destination for a configuration set.</p>
|
|
18
23
|
* <p>In Amazon Pinpoint, <i>events</i> include message sends, deliveries, opens,
|
|
19
24
|
* clicks, bounces, and complaints. <i>Event destinations</i> are places that
|
|
@@ -30,6 +35,8 @@ export interface UpdateConfigurationSetEventDestinationCommandOutput extends Upd
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param UpdateConfigurationSetEventDestinationCommandInput - {@link UpdateConfigurationSetEventDestinationCommandInput}
|
|
39
|
+
* @returns {@link UpdateConfigurationSetEventDestinationCommandOutput}
|
|
33
40
|
* @see {@link UpdateConfigurationSetEventDestinationCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link UpdateConfigurationSetEventDestinationCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link PinpointEmailClientResolvedConfig | config} for PinpointEmailClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface UpdateConfigurationSetEventDestinationCommandOutput extends Upd
|
|
|
48
55
|
export declare class UpdateConfigurationSetEventDestinationCommand extends $Command<UpdateConfigurationSetEventDestinationCommandInput, UpdateConfigurationSetEventDestinationCommandOutput, PinpointEmailClientResolvedConfig> {
|
|
49
56
|
readonly input: UpdateConfigurationSetEventDestinationCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: UpdateConfigurationSetEventDestinationCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PinpointEmailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateConfigurationSetEventDestinationCommandInput, UpdateConfigurationSetEventDestinationCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from PinpointEmail service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class PinpointEmailServiceException extends __ServiceException {
|