@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.
Files changed (54) hide show
  1. package/dist-types/PinpointEmail.d.ts +43 -0
  2. package/dist-types/PinpointEmailClient.d.ts +24 -4
  3. package/dist-types/commands/CreateConfigurationSetCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateConfigurationSetEventDestinationCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateDedicatedIpPoolCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateDeliverabilityTestReportCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateEmailIdentityCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteConfigurationSetCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteDedicatedIpPoolCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteEmailIdentityCommand.d.ts +16 -0
  12. package/dist-types/commands/GetAccountCommand.d.ts +16 -0
  13. package/dist-types/commands/GetBlacklistReportsCommand.d.ts +16 -0
  14. package/dist-types/commands/GetConfigurationSetCommand.d.ts +16 -0
  15. package/dist-types/commands/GetConfigurationSetEventDestinationsCommand.d.ts +16 -0
  16. package/dist-types/commands/GetDedicatedIpCommand.d.ts +16 -0
  17. package/dist-types/commands/GetDedicatedIpsCommand.d.ts +16 -0
  18. package/dist-types/commands/GetDeliverabilityDashboardOptionsCommand.d.ts +16 -0
  19. package/dist-types/commands/GetDeliverabilityTestReportCommand.d.ts +16 -0
  20. package/dist-types/commands/GetDomainDeliverabilityCampaignCommand.d.ts +16 -0
  21. package/dist-types/commands/GetDomainStatisticsReportCommand.d.ts +16 -0
  22. package/dist-types/commands/GetEmailIdentityCommand.d.ts +16 -0
  23. package/dist-types/commands/ListConfigurationSetsCommand.d.ts +16 -0
  24. package/dist-types/commands/ListDedicatedIpPoolsCommand.d.ts +16 -0
  25. package/dist-types/commands/ListDeliverabilityTestReportsCommand.d.ts +16 -0
  26. package/dist-types/commands/ListDomainDeliverabilityCampaignsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListEmailIdentitiesCommand.d.ts +16 -0
  28. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  29. package/dist-types/commands/PutAccountDedicatedIpWarmupAttributesCommand.d.ts +16 -0
  30. package/dist-types/commands/PutAccountSendingAttributesCommand.d.ts +16 -0
  31. package/dist-types/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +16 -0
  32. package/dist-types/commands/PutConfigurationSetReputationOptionsCommand.d.ts +16 -0
  33. package/dist-types/commands/PutConfigurationSetSendingOptionsCommand.d.ts +16 -0
  34. package/dist-types/commands/PutConfigurationSetTrackingOptionsCommand.d.ts +16 -0
  35. package/dist-types/commands/PutDedicatedIpInPoolCommand.d.ts +16 -0
  36. package/dist-types/commands/PutDedicatedIpWarmupAttributesCommand.d.ts +16 -0
  37. package/dist-types/commands/PutDeliverabilityDashboardOptionCommand.d.ts +16 -0
  38. package/dist-types/commands/PutEmailIdentityDkimAttributesCommand.d.ts +16 -0
  39. package/dist-types/commands/PutEmailIdentityFeedbackAttributesCommand.d.ts +16 -0
  40. package/dist-types/commands/PutEmailIdentityMailFromAttributesCommand.d.ts +16 -0
  41. package/dist-types/commands/SendEmailCommand.d.ts +16 -0
  42. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  43. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  44. package/dist-types/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +16 -0
  45. package/dist-types/models/PinpointEmailServiceException.d.ts +2 -0
  46. package/dist-types/models/models_0.d.ts +174 -0
  47. package/dist-types/pagination/GetDedicatedIpsPaginator.d.ts +3 -0
  48. package/dist-types/pagination/Interfaces.d.ts +3 -0
  49. package/dist-types/pagination/ListConfigurationSetsPaginator.d.ts +3 -0
  50. package/dist-types/pagination/ListDedicatedIpPoolsPaginator.d.ts +3 -0
  51. package/dist-types/pagination/ListDeliverabilityTestReportsPaginator.d.ts +3 -0
  52. package/dist-types/pagination/ListDomainDeliverabilityCampaignsPaginator.d.ts +3 -0
  53. package/dist-types/pagination/ListEmailIdentitiesPaginator.d.ts +3 -0
  54. 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 {