@aws-sdk/client-pinpoint-email 3.299.0 → 3.301.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 +23 -0
- package/dist-types/commands/CreateConfigurationSetEventDestinationCommand.d.ts +29 -0
- package/dist-types/commands/CreateDedicatedIpPoolCommand.d.ts +9 -0
- package/dist-types/commands/CreateDeliverabilityTestReportCommand.d.ts +35 -0
- package/dist-types/commands/CreateEmailIdentityCommand.d.ts +9 -0
- package/dist-types/commands/DeleteConfigurationSetCommand.d.ts +3 -0
- package/dist-types/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDedicatedIpPoolCommand.d.ts +3 -0
- package/dist-types/commands/DeleteEmailIdentityCommand.d.ts +3 -0
- package/dist-types/commands/GetAccountCommand.d.ts +1 -0
- package/dist-types/commands/GetBlacklistReportsCommand.d.ts +5 -0
- package/dist-types/commands/GetConfigurationSetCommand.d.ts +3 -0
- package/dist-types/commands/GetConfigurationSetEventDestinationsCommand.d.ts +3 -0
- package/dist-types/commands/GetDedicatedIpCommand.d.ts +3 -0
- package/dist-types/commands/GetDedicatedIpsCommand.d.ts +5 -0
- package/dist-types/commands/GetDeliverabilityDashboardOptionsCommand.d.ts +1 -0
- package/dist-types/commands/GetDeliverabilityTestReportCommand.d.ts +3 -0
- package/dist-types/commands/GetDomainDeliverabilityCampaignCommand.d.ts +3 -0
- package/dist-types/commands/GetDomainStatisticsReportCommand.d.ts +5 -0
- package/dist-types/commands/GetEmailIdentityCommand.d.ts +3 -0
- package/dist-types/commands/ListConfigurationSetsCommand.d.ts +4 -0
- package/dist-types/commands/ListDedicatedIpPoolsCommand.d.ts +4 -0
- package/dist-types/commands/ListDeliverabilityTestReportsCommand.d.ts +4 -0
- package/dist-types/commands/ListDomainDeliverabilityCampaignsCommand.d.ts +7 -0
- package/dist-types/commands/ListEmailIdentitiesCommand.d.ts +4 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/PutAccountDedicatedIpWarmupAttributesCommand.d.ts +3 -0
- package/dist-types/commands/PutAccountSendingAttributesCommand.d.ts +3 -0
- package/dist-types/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +5 -0
- package/dist-types/commands/PutConfigurationSetReputationOptionsCommand.d.ts +4 -0
- package/dist-types/commands/PutConfigurationSetSendingOptionsCommand.d.ts +4 -0
- package/dist-types/commands/PutConfigurationSetTrackingOptionsCommand.d.ts +4 -0
- package/dist-types/commands/PutDedicatedIpInPoolCommand.d.ts +4 -0
- package/dist-types/commands/PutDedicatedIpWarmupAttributesCommand.d.ts +4 -0
- package/dist-types/commands/PutDeliverabilityDashboardOptionCommand.d.ts +15 -0
- package/dist-types/commands/PutEmailIdentityDkimAttributesCommand.d.ts +4 -0
- package/dist-types/commands/PutEmailIdentityFeedbackAttributesCommand.d.ts +4 -0
- package/dist-types/commands/PutEmailIdentityMailFromAttributesCommand.d.ts +5 -0
- package/dist-types/commands/SendEmailCommand.d.ts +50 -0
- package/dist-types/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +29 -0
- package/package.json +8 -8
|
@@ -30,6 +30,29 @@ export interface CreateConfigurationSetCommandOutput extends CreateConfiguration
|
|
|
30
30
|
* import { PinpointEmailClient, CreateConfigurationSetCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
31
31
|
* // const { PinpointEmailClient, CreateConfigurationSetCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
32
32
|
* const client = new PinpointEmailClient(config);
|
|
33
|
+
* const input = { // CreateConfigurationSetRequest
|
|
34
|
+
* ConfigurationSetName: "STRING_VALUE", // required
|
|
35
|
+
* TrackingOptions: { // TrackingOptions
|
|
36
|
+
* CustomRedirectDomain: "STRING_VALUE", // required
|
|
37
|
+
* },
|
|
38
|
+
* DeliveryOptions: { // DeliveryOptions
|
|
39
|
+
* TlsPolicy: "STRING_VALUE",
|
|
40
|
+
* SendingPoolName: "STRING_VALUE",
|
|
41
|
+
* },
|
|
42
|
+
* ReputationOptions: { // ReputationOptions
|
|
43
|
+
* ReputationMetricsEnabled: true || false,
|
|
44
|
+
* LastFreshStart: new Date("TIMESTAMP"),
|
|
45
|
+
* },
|
|
46
|
+
* SendingOptions: { // SendingOptions
|
|
47
|
+
* SendingEnabled: true || false,
|
|
48
|
+
* },
|
|
49
|
+
* Tags: [ // TagList
|
|
50
|
+
* { // Tag
|
|
51
|
+
* Key: "STRING_VALUE", // required
|
|
52
|
+
* Value: "STRING_VALUE", // required
|
|
53
|
+
* },
|
|
54
|
+
* ],
|
|
55
|
+
* };
|
|
33
56
|
* const command = new CreateConfigurationSetCommand(input);
|
|
34
57
|
* const response = await client.send(command);
|
|
35
58
|
* ```
|
|
@@ -32,6 +32,35 @@ export interface CreateConfigurationSetEventDestinationCommandOutput extends Cre
|
|
|
32
32
|
* import { PinpointEmailClient, CreateConfigurationSetEventDestinationCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
33
33
|
* // const { PinpointEmailClient, CreateConfigurationSetEventDestinationCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
34
34
|
* const client = new PinpointEmailClient(config);
|
|
35
|
+
* const input = { // CreateConfigurationSetEventDestinationRequest
|
|
36
|
+
* ConfigurationSetName: "STRING_VALUE", // required
|
|
37
|
+
* EventDestinationName: "STRING_VALUE", // required
|
|
38
|
+
* EventDestination: { // EventDestinationDefinition
|
|
39
|
+
* Enabled: true || false,
|
|
40
|
+
* MatchingEventTypes: [ // EventTypes
|
|
41
|
+
* "STRING_VALUE",
|
|
42
|
+
* ],
|
|
43
|
+
* KinesisFirehoseDestination: { // KinesisFirehoseDestination
|
|
44
|
+
* IamRoleArn: "STRING_VALUE", // required
|
|
45
|
+
* DeliveryStreamArn: "STRING_VALUE", // required
|
|
46
|
+
* },
|
|
47
|
+
* CloudWatchDestination: { // CloudWatchDestination
|
|
48
|
+
* DimensionConfigurations: [ // CloudWatchDimensionConfigurations // required
|
|
49
|
+
* { // CloudWatchDimensionConfiguration
|
|
50
|
+
* DimensionName: "STRING_VALUE", // required
|
|
51
|
+
* DimensionValueSource: "STRING_VALUE", // required
|
|
52
|
+
* DefaultDimensionValue: "STRING_VALUE", // required
|
|
53
|
+
* },
|
|
54
|
+
* ],
|
|
55
|
+
* },
|
|
56
|
+
* SnsDestination: { // SnsDestination
|
|
57
|
+
* TopicArn: "STRING_VALUE", // required
|
|
58
|
+
* },
|
|
59
|
+
* PinpointDestination: { // PinpointDestination
|
|
60
|
+
* ApplicationArn: "STRING_VALUE",
|
|
61
|
+
* },
|
|
62
|
+
* },
|
|
63
|
+
* };
|
|
35
64
|
* const command = new CreateConfigurationSetEventDestinationCommand(input);
|
|
36
65
|
* const response = await client.send(command);
|
|
37
66
|
* ```
|
|
@@ -29,6 +29,15 @@ export interface CreateDedicatedIpPoolCommandOutput extends CreateDedicatedIpPoo
|
|
|
29
29
|
* import { PinpointEmailClient, CreateDedicatedIpPoolCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
30
30
|
* // const { PinpointEmailClient, CreateDedicatedIpPoolCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
31
31
|
* const client = new PinpointEmailClient(config);
|
|
32
|
+
* const input = { // CreateDedicatedIpPoolRequest
|
|
33
|
+
* PoolName: "STRING_VALUE", // required
|
|
34
|
+
* Tags: [ // TagList
|
|
35
|
+
* { // Tag
|
|
36
|
+
* Key: "STRING_VALUE", // required
|
|
37
|
+
* Value: "STRING_VALUE", // required
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* };
|
|
32
41
|
* const command = new CreateDedicatedIpPoolCommand(input);
|
|
33
42
|
* const response = await client.send(command);
|
|
34
43
|
* ```
|
|
@@ -32,6 +32,41 @@ export interface CreateDeliverabilityTestReportCommandOutput extends CreateDeliv
|
|
|
32
32
|
* import { PinpointEmailClient, CreateDeliverabilityTestReportCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
33
33
|
* // const { PinpointEmailClient, CreateDeliverabilityTestReportCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
34
34
|
* const client = new PinpointEmailClient(config);
|
|
35
|
+
* const input = { // CreateDeliverabilityTestReportRequest
|
|
36
|
+
* ReportName: "STRING_VALUE",
|
|
37
|
+
* FromEmailAddress: "STRING_VALUE", // required
|
|
38
|
+
* Content: { // EmailContent
|
|
39
|
+
* Simple: { // Message
|
|
40
|
+
* Subject: { // Content
|
|
41
|
+
* Data: "STRING_VALUE", // required
|
|
42
|
+
* Charset: "STRING_VALUE",
|
|
43
|
+
* },
|
|
44
|
+
* Body: { // Body
|
|
45
|
+
* Text: {
|
|
46
|
+
* Data: "STRING_VALUE", // required
|
|
47
|
+
* Charset: "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* Html: {
|
|
50
|
+
* Data: "STRING_VALUE", // required
|
|
51
|
+
* Charset: "STRING_VALUE",
|
|
52
|
+
* },
|
|
53
|
+
* },
|
|
54
|
+
* },
|
|
55
|
+
* Raw: { // RawMessage
|
|
56
|
+
* Data: "BLOB_VALUE", // required
|
|
57
|
+
* },
|
|
58
|
+
* Template: { // Template
|
|
59
|
+
* TemplateArn: "STRING_VALUE",
|
|
60
|
+
* TemplateData: "STRING_VALUE",
|
|
61
|
+
* },
|
|
62
|
+
* },
|
|
63
|
+
* Tags: [ // TagList
|
|
64
|
+
* { // Tag
|
|
65
|
+
* Key: "STRING_VALUE", // required
|
|
66
|
+
* Value: "STRING_VALUE", // required
|
|
67
|
+
* },
|
|
68
|
+
* ],
|
|
69
|
+
* };
|
|
35
70
|
* const command = new CreateDeliverabilityTestReportCommand(input);
|
|
36
71
|
* const response = await client.send(command);
|
|
37
72
|
* ```
|
|
@@ -39,6 +39,15 @@ export interface CreateEmailIdentityCommandOutput extends CreateEmailIdentityRes
|
|
|
39
39
|
* import { PinpointEmailClient, CreateEmailIdentityCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
40
40
|
* // const { PinpointEmailClient, CreateEmailIdentityCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
41
41
|
* const client = new PinpointEmailClient(config);
|
|
42
|
+
* const input = { // CreateEmailIdentityRequest
|
|
43
|
+
* EmailIdentity: "STRING_VALUE", // required
|
|
44
|
+
* Tags: [ // TagList
|
|
45
|
+
* { // Tag
|
|
46
|
+
* Key: "STRING_VALUE", // required
|
|
47
|
+
* Value: "STRING_VALUE", // required
|
|
48
|
+
* },
|
|
49
|
+
* ],
|
|
50
|
+
* };
|
|
42
51
|
* const command = new CreateEmailIdentityCommand(input);
|
|
43
52
|
* const response = await client.send(command);
|
|
44
53
|
* ```
|
|
@@ -31,6 +31,9 @@ export interface DeleteConfigurationSetCommandOutput extends DeleteConfiguration
|
|
|
31
31
|
* import { PinpointEmailClient, DeleteConfigurationSetCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
32
32
|
* // const { PinpointEmailClient, DeleteConfigurationSetCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
33
33
|
* const client = new PinpointEmailClient(config);
|
|
34
|
+
* const input = { // DeleteConfigurationSetRequest
|
|
35
|
+
* ConfigurationSetName: "STRING_VALUE", // required
|
|
36
|
+
* };
|
|
34
37
|
* const command = new DeleteConfigurationSetCommand(input);
|
|
35
38
|
* const response = await client.send(command);
|
|
36
39
|
* ```
|
|
@@ -31,6 +31,10 @@ export interface DeleteConfigurationSetEventDestinationCommandOutput extends Del
|
|
|
31
31
|
* import { PinpointEmailClient, DeleteConfigurationSetEventDestinationCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
32
32
|
* // const { PinpointEmailClient, DeleteConfigurationSetEventDestinationCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
33
33
|
* const client = new PinpointEmailClient(config);
|
|
34
|
+
* const input = { // DeleteConfigurationSetEventDestinationRequest
|
|
35
|
+
* ConfigurationSetName: "STRING_VALUE", // required
|
|
36
|
+
* EventDestinationName: "STRING_VALUE", // required
|
|
37
|
+
* };
|
|
34
38
|
* const command = new DeleteConfigurationSetEventDestinationCommand(input);
|
|
35
39
|
* const response = await client.send(command);
|
|
36
40
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteDedicatedIpPoolCommandOutput extends DeleteDedicatedIpPoo
|
|
|
26
26
|
* import { PinpointEmailClient, DeleteDedicatedIpPoolCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
27
27
|
* // const { PinpointEmailClient, DeleteDedicatedIpPoolCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
28
28
|
* const client = new PinpointEmailClient(config);
|
|
29
|
+
* const input = { // DeleteDedicatedIpPoolRequest
|
|
30
|
+
* PoolName: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteDedicatedIpPoolCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface DeleteEmailIdentityCommandOutput extends DeleteEmailIdentityRes
|
|
|
27
27
|
* import { PinpointEmailClient, DeleteEmailIdentityCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
28
28
|
* // const { PinpointEmailClient, DeleteEmailIdentityCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
29
29
|
* const client = new PinpointEmailClient(config);
|
|
30
|
+
* const input = { // DeleteEmailIdentityRequest
|
|
31
|
+
* EmailIdentity: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new DeleteEmailIdentityCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -27,6 +27,7 @@ export interface GetAccountCommandOutput extends GetAccountResponse, __MetadataB
|
|
|
27
27
|
* import { PinpointEmailClient, GetAccountCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
28
28
|
* // const { PinpointEmailClient, GetAccountCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
29
29
|
* const client = new PinpointEmailClient(config);
|
|
30
|
+
* const input = {};
|
|
30
31
|
* const command = new GetAccountCommand(input);
|
|
31
32
|
* const response = await client.send(command);
|
|
32
33
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface GetBlacklistReportsCommandOutput extends GetBlacklistReportsRes
|
|
|
26
26
|
* import { PinpointEmailClient, GetBlacklistReportsCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
27
27
|
* // const { PinpointEmailClient, GetBlacklistReportsCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
28
28
|
* const client = new PinpointEmailClient(config);
|
|
29
|
+
* const input = { // GetBlacklistReportsRequest
|
|
30
|
+
* BlacklistItemNames: [ // BlacklistItemNames // required
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* };
|
|
29
34
|
* const command = new GetBlacklistReportsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -33,6 +33,9 @@ export interface GetConfigurationSetCommandOutput extends GetConfigurationSetRes
|
|
|
33
33
|
* import { PinpointEmailClient, GetConfigurationSetCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
34
34
|
* // const { PinpointEmailClient, GetConfigurationSetCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
35
35
|
* const client = new PinpointEmailClient(config);
|
|
36
|
+
* const input = { // GetConfigurationSetRequest
|
|
37
|
+
* ConfigurationSetName: "STRING_VALUE", // required
|
|
38
|
+
* };
|
|
36
39
|
* const command = new GetConfigurationSetCommand(input);
|
|
37
40
|
* const response = await client.send(command);
|
|
38
41
|
* ```
|
|
@@ -32,6 +32,9 @@ export interface GetConfigurationSetEventDestinationsCommandOutput extends GetCo
|
|
|
32
32
|
* import { PinpointEmailClient, GetConfigurationSetEventDestinationsCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
33
33
|
* // const { PinpointEmailClient, GetConfigurationSetEventDestinationsCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
34
34
|
* const client = new PinpointEmailClient(config);
|
|
35
|
+
* const input = { // GetConfigurationSetEventDestinationsRequest
|
|
36
|
+
* ConfigurationSetName: "STRING_VALUE", // required
|
|
37
|
+
* };
|
|
35
38
|
* const command = new GetConfigurationSetEventDestinationsCommand(input);
|
|
36
39
|
* const response = await client.send(command);
|
|
37
40
|
* ```
|
|
@@ -28,6 +28,9 @@ export interface GetDedicatedIpCommandOutput extends GetDedicatedIpResponse, __M
|
|
|
28
28
|
* import { PinpointEmailClient, GetDedicatedIpCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
29
29
|
* // const { PinpointEmailClient, GetDedicatedIpCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
30
30
|
* const client = new PinpointEmailClient(config);
|
|
31
|
+
* const input = { // GetDedicatedIpRequest
|
|
32
|
+
* Ip: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
31
34
|
* const command = new GetDedicatedIpCommand(input);
|
|
32
35
|
* const response = await client.send(command);
|
|
33
36
|
* ```
|
|
@@ -27,6 +27,11 @@ export interface GetDedicatedIpsCommandOutput extends GetDedicatedIpsResponse, _
|
|
|
27
27
|
* import { PinpointEmailClient, GetDedicatedIpsCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
28
28
|
* // const { PinpointEmailClient, GetDedicatedIpsCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
29
29
|
* const client = new PinpointEmailClient(config);
|
|
30
|
+
* const input = { // GetDedicatedIpsRequest
|
|
31
|
+
* PoolName: "STRING_VALUE",
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* PageSize: Number("int"),
|
|
34
|
+
* };
|
|
30
35
|
* const command = new GetDedicatedIpsCommand(input);
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
@@ -32,6 +32,7 @@ export interface GetDeliverabilityDashboardOptionsCommandOutput extends GetDeliv
|
|
|
32
32
|
* import { PinpointEmailClient, GetDeliverabilityDashboardOptionsCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
33
33
|
* // const { PinpointEmailClient, GetDeliverabilityDashboardOptionsCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
34
34
|
* const client = new PinpointEmailClient(config);
|
|
35
|
+
* const input = {};
|
|
35
36
|
* const command = new GetDeliverabilityDashboardOptionsCommand(input);
|
|
36
37
|
* const response = await client.send(command);
|
|
37
38
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetDeliverabilityTestReportCommandOutput extends GetDeliverabil
|
|
|
26
26
|
* import { PinpointEmailClient, GetDeliverabilityTestReportCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
27
27
|
* // const { PinpointEmailClient, GetDeliverabilityTestReportCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
28
28
|
* const client = new PinpointEmailClient(config);
|
|
29
|
+
* const input = { // GetDeliverabilityTestReportRequest
|
|
30
|
+
* ReportId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetDeliverabilityTestReportCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -29,6 +29,9 @@ export interface GetDomainDeliverabilityCampaignCommandOutput extends GetDomainD
|
|
|
29
29
|
* import { PinpointEmailClient, GetDomainDeliverabilityCampaignCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
30
30
|
* // const { PinpointEmailClient, GetDomainDeliverabilityCampaignCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
31
31
|
* const client = new PinpointEmailClient(config);
|
|
32
|
+
* const input = { // GetDomainDeliverabilityCampaignRequest
|
|
33
|
+
* CampaignId: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
32
35
|
* const command = new GetDomainDeliverabilityCampaignCommand(input);
|
|
33
36
|
* const response = await client.send(command);
|
|
34
37
|
* ```
|
|
@@ -27,6 +27,11 @@ export interface GetDomainStatisticsReportCommandOutput extends GetDomainStatist
|
|
|
27
27
|
* import { PinpointEmailClient, GetDomainStatisticsReportCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
28
28
|
* // const { PinpointEmailClient, GetDomainStatisticsReportCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
29
29
|
* const client = new PinpointEmailClient(config);
|
|
30
|
+
* const input = { // GetDomainStatisticsReportRequest
|
|
31
|
+
* Domain: "STRING_VALUE", // required
|
|
32
|
+
* StartDate: new Date("TIMESTAMP"), // required
|
|
33
|
+
* EndDate: new Date("TIMESTAMP"), // required
|
|
34
|
+
* };
|
|
30
35
|
* const command = new GetDomainStatisticsReportCommand(input);
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
@@ -28,6 +28,9 @@ export interface GetEmailIdentityCommandOutput extends GetEmailIdentityResponse,
|
|
|
28
28
|
* import { PinpointEmailClient, GetEmailIdentityCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
29
29
|
* // const { PinpointEmailClient, GetEmailIdentityCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
30
30
|
* const client = new PinpointEmailClient(config);
|
|
31
|
+
* const input = { // GetEmailIdentityRequest
|
|
32
|
+
* EmailIdentity: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
31
34
|
* const command = new GetEmailIdentityCommand(input);
|
|
32
35
|
* const response = await client.send(command);
|
|
33
36
|
* ```
|
|
@@ -32,6 +32,10 @@ export interface ListConfigurationSetsCommandOutput extends ListConfigurationSet
|
|
|
32
32
|
* import { PinpointEmailClient, ListConfigurationSetsCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
33
33
|
* // const { PinpointEmailClient, ListConfigurationSetsCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
34
34
|
* const client = new PinpointEmailClient(config);
|
|
35
|
+
* const input = { // ListConfigurationSetsRequest
|
|
36
|
+
* NextToken: "STRING_VALUE",
|
|
37
|
+
* PageSize: Number("int"),
|
|
38
|
+
* };
|
|
35
39
|
* const command = new ListConfigurationSetsCommand(input);
|
|
36
40
|
* const response = await client.send(command);
|
|
37
41
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface ListDedicatedIpPoolsCommandOutput extends ListDedicatedIpPoolsR
|
|
|
27
27
|
* import { PinpointEmailClient, ListDedicatedIpPoolsCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
28
28
|
* // const { PinpointEmailClient, ListDedicatedIpPoolsCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
29
29
|
* const client = new PinpointEmailClient(config);
|
|
30
|
+
* const input = { // ListDedicatedIpPoolsRequest
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* PageSize: Number("int"),
|
|
33
|
+
* };
|
|
30
34
|
* const command = new ListDedicatedIpPoolsCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -28,6 +28,10 @@ export interface ListDeliverabilityTestReportsCommandOutput extends ListDelivera
|
|
|
28
28
|
* import { PinpointEmailClient, ListDeliverabilityTestReportsCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
29
29
|
* // const { PinpointEmailClient, ListDeliverabilityTestReportsCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
30
30
|
* const client = new PinpointEmailClient(config);
|
|
31
|
+
* const input = { // ListDeliverabilityTestReportsRequest
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* PageSize: Number("int"),
|
|
34
|
+
* };
|
|
31
35
|
* const command = new ListDeliverabilityTestReportsCommand(input);
|
|
32
36
|
* const response = await client.send(command);
|
|
33
37
|
* ```
|
|
@@ -29,6 +29,13 @@ export interface ListDomainDeliverabilityCampaignsCommandOutput extends ListDoma
|
|
|
29
29
|
* import { PinpointEmailClient, ListDomainDeliverabilityCampaignsCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
30
30
|
* // const { PinpointEmailClient, ListDomainDeliverabilityCampaignsCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
31
31
|
* const client = new PinpointEmailClient(config);
|
|
32
|
+
* const input = { // ListDomainDeliverabilityCampaignsRequest
|
|
33
|
+
* StartDate: new Date("TIMESTAMP"), // required
|
|
34
|
+
* EndDate: new Date("TIMESTAMP"), // required
|
|
35
|
+
* SubscribedDomain: "STRING_VALUE", // required
|
|
36
|
+
* NextToken: "STRING_VALUE",
|
|
37
|
+
* PageSize: Number("int"),
|
|
38
|
+
* };
|
|
32
39
|
* const command = new ListDomainDeliverabilityCampaignsCommand(input);
|
|
33
40
|
* const response = await client.send(command);
|
|
34
41
|
* ```
|
|
@@ -28,6 +28,10 @@ export interface ListEmailIdentitiesCommandOutput extends ListEmailIdentitiesRes
|
|
|
28
28
|
* import { PinpointEmailClient, ListEmailIdentitiesCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
29
29
|
* // const { PinpointEmailClient, ListEmailIdentitiesCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
30
30
|
* const client = new PinpointEmailClient(config);
|
|
31
|
+
* const input = { // ListEmailIdentitiesRequest
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* PageSize: Number("int"),
|
|
34
|
+
* };
|
|
31
35
|
* const command = new ListEmailIdentitiesCommand(input);
|
|
32
36
|
* const response = await client.send(command);
|
|
33
37
|
* ```
|
|
@@ -31,6 +31,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* import { PinpointEmailClient, ListTagsForResourceCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
32
32
|
* // const { PinpointEmailClient, ListTagsForResourceCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
33
33
|
* const client = new PinpointEmailClient(config);
|
|
34
|
+
* const input = { // ListTagsForResourceRequest
|
|
35
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
36
|
+
* };
|
|
34
37
|
* const command = new ListTagsForResourceCommand(input);
|
|
35
38
|
* const response = await client.send(command);
|
|
36
39
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface PutAccountDedicatedIpWarmupAttributesCommandOutput extends PutA
|
|
|
26
26
|
* import { PinpointEmailClient, PutAccountDedicatedIpWarmupAttributesCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
27
27
|
* // const { PinpointEmailClient, PutAccountDedicatedIpWarmupAttributesCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
28
28
|
* const client = new PinpointEmailClient(config);
|
|
29
|
+
* const input = { // PutAccountDedicatedIpWarmupAttributesRequest
|
|
30
|
+
* AutoWarmupEnabled: true || false,
|
|
31
|
+
* };
|
|
29
32
|
* const command = new PutAccountDedicatedIpWarmupAttributesCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface PutAccountSendingAttributesCommandOutput extends PutAccountSend
|
|
|
26
26
|
* import { PinpointEmailClient, PutAccountSendingAttributesCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
27
27
|
* // const { PinpointEmailClient, PutAccountSendingAttributesCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
28
28
|
* const client = new PinpointEmailClient(config);
|
|
29
|
+
* const input = { // PutAccountSendingAttributesRequest
|
|
30
|
+
* SendingEnabled: true || false,
|
|
31
|
+
* };
|
|
29
32
|
* const command = new PutAccountSendingAttributesCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -27,6 +27,11 @@ export interface PutConfigurationSetDeliveryOptionsCommandOutput extends PutConf
|
|
|
27
27
|
* import { PinpointEmailClient, PutConfigurationSetDeliveryOptionsCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
28
28
|
* // const { PinpointEmailClient, PutConfigurationSetDeliveryOptionsCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
29
29
|
* const client = new PinpointEmailClient(config);
|
|
30
|
+
* const input = { // PutConfigurationSetDeliveryOptionsRequest
|
|
31
|
+
* ConfigurationSetName: "STRING_VALUE", // required
|
|
32
|
+
* TlsPolicy: "STRING_VALUE",
|
|
33
|
+
* SendingPoolName: "STRING_VALUE",
|
|
34
|
+
* };
|
|
30
35
|
* const command = new PutConfigurationSetDeliveryOptionsCommand(input);
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface PutConfigurationSetReputationOptionsCommandOutput extends PutCo
|
|
|
27
27
|
* import { PinpointEmailClient, PutConfigurationSetReputationOptionsCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
28
28
|
* // const { PinpointEmailClient, PutConfigurationSetReputationOptionsCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
29
29
|
* const client = new PinpointEmailClient(config);
|
|
30
|
+
* const input = { // PutConfigurationSetReputationOptionsRequest
|
|
31
|
+
* ConfigurationSetName: "STRING_VALUE", // required
|
|
32
|
+
* ReputationMetricsEnabled: true || false,
|
|
33
|
+
* };
|
|
30
34
|
* const command = new PutConfigurationSetReputationOptionsCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface PutConfigurationSetSendingOptionsCommandOutput extends PutConfi
|
|
|
27
27
|
* import { PinpointEmailClient, PutConfigurationSetSendingOptionsCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
28
28
|
* // const { PinpointEmailClient, PutConfigurationSetSendingOptionsCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
29
29
|
* const client = new PinpointEmailClient(config);
|
|
30
|
+
* const input = { // PutConfigurationSetSendingOptionsRequest
|
|
31
|
+
* ConfigurationSetName: "STRING_VALUE", // required
|
|
32
|
+
* SendingEnabled: true || false,
|
|
33
|
+
* };
|
|
30
34
|
* const command = new PutConfigurationSetSendingOptionsCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface PutConfigurationSetTrackingOptionsCommandOutput extends PutConf
|
|
|
27
27
|
* import { PinpointEmailClient, PutConfigurationSetTrackingOptionsCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
28
28
|
* // const { PinpointEmailClient, PutConfigurationSetTrackingOptionsCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
29
29
|
* const client = new PinpointEmailClient(config);
|
|
30
|
+
* const input = { // PutConfigurationSetTrackingOptionsRequest
|
|
31
|
+
* ConfigurationSetName: "STRING_VALUE", // required
|
|
32
|
+
* CustomRedirectDomain: "STRING_VALUE",
|
|
33
|
+
* };
|
|
30
34
|
* const command = new PutConfigurationSetTrackingOptionsCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -35,6 +35,10 @@ export interface PutDedicatedIpInPoolCommandOutput extends PutDedicatedIpInPoolR
|
|
|
35
35
|
* import { PinpointEmailClient, PutDedicatedIpInPoolCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
36
36
|
* // const { PinpointEmailClient, PutDedicatedIpInPoolCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
37
37
|
* const client = new PinpointEmailClient(config);
|
|
38
|
+
* const input = { // PutDedicatedIpInPoolRequest
|
|
39
|
+
* Ip: "STRING_VALUE", // required
|
|
40
|
+
* DestinationPoolName: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
38
42
|
* const command = new PutDedicatedIpInPoolCommand(input);
|
|
39
43
|
* const response = await client.send(command);
|
|
40
44
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface PutDedicatedIpWarmupAttributesCommandOutput extends PutDedicate
|
|
|
26
26
|
* import { PinpointEmailClient, PutDedicatedIpWarmupAttributesCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
27
27
|
* // const { PinpointEmailClient, PutDedicatedIpWarmupAttributesCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
28
28
|
* const client = new PinpointEmailClient(config);
|
|
29
|
+
* const input = { // PutDedicatedIpWarmupAttributesRequest
|
|
30
|
+
* Ip: "STRING_VALUE", // required
|
|
31
|
+
* WarmupPercentage: Number("int"), // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new PutDedicatedIpWarmupAttributesCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -32,6 +32,21 @@ export interface PutDeliverabilityDashboardOptionCommandOutput extends PutDelive
|
|
|
32
32
|
* import { PinpointEmailClient, PutDeliverabilityDashboardOptionCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
33
33
|
* // const { PinpointEmailClient, PutDeliverabilityDashboardOptionCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
34
34
|
* const client = new PinpointEmailClient(config);
|
|
35
|
+
* const input = { // PutDeliverabilityDashboardOptionRequest
|
|
36
|
+
* DashboardEnabled: true || false, // required
|
|
37
|
+
* SubscribedDomains: [ // DomainDeliverabilityTrackingOptions
|
|
38
|
+
* { // DomainDeliverabilityTrackingOption
|
|
39
|
+
* Domain: "STRING_VALUE",
|
|
40
|
+
* SubscriptionStartDate: new Date("TIMESTAMP"),
|
|
41
|
+
* InboxPlacementTrackingOption: { // InboxPlacementTrackingOption
|
|
42
|
+
* Global: true || false,
|
|
43
|
+
* TrackedIsps: [ // IspNameList
|
|
44
|
+
* "STRING_VALUE",
|
|
45
|
+
* ],
|
|
46
|
+
* },
|
|
47
|
+
* },
|
|
48
|
+
* ],
|
|
49
|
+
* };
|
|
35
50
|
* const command = new PutDeliverabilityDashboardOptionCommand(input);
|
|
36
51
|
* const response = await client.send(command);
|
|
37
52
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface PutEmailIdentityDkimAttributesCommandOutput extends PutEmailIde
|
|
|
26
26
|
* import { PinpointEmailClient, PutEmailIdentityDkimAttributesCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
27
27
|
* // const { PinpointEmailClient, PutEmailIdentityDkimAttributesCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
28
28
|
* const client = new PinpointEmailClient(config);
|
|
29
|
+
* const input = { // PutEmailIdentityDkimAttributesRequest
|
|
30
|
+
* EmailIdentity: "STRING_VALUE", // required
|
|
31
|
+
* SigningEnabled: true || false,
|
|
32
|
+
* };
|
|
29
33
|
* const command = new PutEmailIdentityDkimAttributesCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -36,6 +36,10 @@ export interface PutEmailIdentityFeedbackAttributesCommandOutput extends PutEmai
|
|
|
36
36
|
* import { PinpointEmailClient, PutEmailIdentityFeedbackAttributesCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
37
37
|
* // const { PinpointEmailClient, PutEmailIdentityFeedbackAttributesCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
38
38
|
* const client = new PinpointEmailClient(config);
|
|
39
|
+
* const input = { // PutEmailIdentityFeedbackAttributesRequest
|
|
40
|
+
* EmailIdentity: "STRING_VALUE", // required
|
|
41
|
+
* EmailForwardingEnabled: true || false,
|
|
42
|
+
* };
|
|
39
43
|
* const command = new PutEmailIdentityFeedbackAttributesCommand(input);
|
|
40
44
|
* const response = await client.send(command);
|
|
41
45
|
* ```
|
|
@@ -27,6 +27,11 @@ export interface PutEmailIdentityMailFromAttributesCommandOutput extends PutEmai
|
|
|
27
27
|
* import { PinpointEmailClient, PutEmailIdentityMailFromAttributesCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
28
28
|
* // const { PinpointEmailClient, PutEmailIdentityMailFromAttributesCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
29
29
|
* const client = new PinpointEmailClient(config);
|
|
30
|
+
* const input = { // PutEmailIdentityMailFromAttributesRequest
|
|
31
|
+
* EmailIdentity: "STRING_VALUE", // required
|
|
32
|
+
* MailFromDomain: "STRING_VALUE",
|
|
33
|
+
* BehaviorOnMxFailure: "STRING_VALUE",
|
|
34
|
+
* };
|
|
30
35
|
* const command = new PutEmailIdentityMailFromAttributesCommand(input);
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
@@ -43,6 +43,56 @@ export interface SendEmailCommandOutput extends SendEmailResponse, __MetadataBea
|
|
|
43
43
|
* import { PinpointEmailClient, SendEmailCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
44
44
|
* // const { PinpointEmailClient, SendEmailCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
45
45
|
* const client = new PinpointEmailClient(config);
|
|
46
|
+
* const input = { // SendEmailRequest
|
|
47
|
+
* FromEmailAddress: "STRING_VALUE",
|
|
48
|
+
* Destination: { // Destination
|
|
49
|
+
* ToAddresses: [ // EmailAddressList
|
|
50
|
+
* "STRING_VALUE",
|
|
51
|
+
* ],
|
|
52
|
+
* CcAddresses: [
|
|
53
|
+
* "STRING_VALUE",
|
|
54
|
+
* ],
|
|
55
|
+
* BccAddresses: [
|
|
56
|
+
* "STRING_VALUE",
|
|
57
|
+
* ],
|
|
58
|
+
* },
|
|
59
|
+
* ReplyToAddresses: [
|
|
60
|
+
* "STRING_VALUE",
|
|
61
|
+
* ],
|
|
62
|
+
* FeedbackForwardingEmailAddress: "STRING_VALUE",
|
|
63
|
+
* Content: { // EmailContent
|
|
64
|
+
* Simple: { // Message
|
|
65
|
+
* Subject: { // Content
|
|
66
|
+
* Data: "STRING_VALUE", // required
|
|
67
|
+
* Charset: "STRING_VALUE",
|
|
68
|
+
* },
|
|
69
|
+
* Body: { // Body
|
|
70
|
+
* Text: {
|
|
71
|
+
* Data: "STRING_VALUE", // required
|
|
72
|
+
* Charset: "STRING_VALUE",
|
|
73
|
+
* },
|
|
74
|
+
* Html: {
|
|
75
|
+
* Data: "STRING_VALUE", // required
|
|
76
|
+
* Charset: "STRING_VALUE",
|
|
77
|
+
* },
|
|
78
|
+
* },
|
|
79
|
+
* },
|
|
80
|
+
* Raw: { // RawMessage
|
|
81
|
+
* Data: "BLOB_VALUE", // required
|
|
82
|
+
* },
|
|
83
|
+
* Template: { // Template
|
|
84
|
+
* TemplateArn: "STRING_VALUE",
|
|
85
|
+
* TemplateData: "STRING_VALUE",
|
|
86
|
+
* },
|
|
87
|
+
* },
|
|
88
|
+
* EmailTags: [ // MessageTagList
|
|
89
|
+
* { // MessageTag
|
|
90
|
+
* Name: "STRING_VALUE", // required
|
|
91
|
+
* Value: "STRING_VALUE", // required
|
|
92
|
+
* },
|
|
93
|
+
* ],
|
|
94
|
+
* ConfigurationSetName: "STRING_VALUE",
|
|
95
|
+
* };
|
|
46
96
|
* const command = new SendEmailCommand(input);
|
|
47
97
|
* const response = await client.send(command);
|
|
48
98
|
* ```
|
|
@@ -34,6 +34,15 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
34
34
|
* import { PinpointEmailClient, TagResourceCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
35
35
|
* // const { PinpointEmailClient, TagResourceCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
36
36
|
* const client = new PinpointEmailClient(config);
|
|
37
|
+
* const input = { // TagResourceRequest
|
|
38
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
39
|
+
* Tags: [ // TagList // required
|
|
40
|
+
* { // Tag
|
|
41
|
+
* Key: "STRING_VALUE", // required
|
|
42
|
+
* Value: "STRING_VALUE", // required
|
|
43
|
+
* },
|
|
44
|
+
* ],
|
|
45
|
+
* };
|
|
37
46
|
* const command = new TagResourceCommand(input);
|
|
38
47
|
* const response = await client.send(command);
|
|
39
48
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { PinpointEmailClient, UntagResourceCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
27
27
|
* // const { PinpointEmailClient, UntagResourceCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
28
28
|
* const client = new PinpointEmailClient(config);
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* TagKeys: [ // TagKeyList // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -31,6 +31,35 @@ export interface UpdateConfigurationSetEventDestinationCommandOutput extends Upd
|
|
|
31
31
|
* import { PinpointEmailClient, UpdateConfigurationSetEventDestinationCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
|
|
32
32
|
* // const { PinpointEmailClient, UpdateConfigurationSetEventDestinationCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
|
|
33
33
|
* const client = new PinpointEmailClient(config);
|
|
34
|
+
* const input = { // UpdateConfigurationSetEventDestinationRequest
|
|
35
|
+
* ConfigurationSetName: "STRING_VALUE", // required
|
|
36
|
+
* EventDestinationName: "STRING_VALUE", // required
|
|
37
|
+
* EventDestination: { // EventDestinationDefinition
|
|
38
|
+
* Enabled: true || false,
|
|
39
|
+
* MatchingEventTypes: [ // EventTypes
|
|
40
|
+
* "STRING_VALUE",
|
|
41
|
+
* ],
|
|
42
|
+
* KinesisFirehoseDestination: { // KinesisFirehoseDestination
|
|
43
|
+
* IamRoleArn: "STRING_VALUE", // required
|
|
44
|
+
* DeliveryStreamArn: "STRING_VALUE", // required
|
|
45
|
+
* },
|
|
46
|
+
* CloudWatchDestination: { // CloudWatchDestination
|
|
47
|
+
* DimensionConfigurations: [ // CloudWatchDimensionConfigurations // required
|
|
48
|
+
* { // CloudWatchDimensionConfiguration
|
|
49
|
+
* DimensionName: "STRING_VALUE", // required
|
|
50
|
+
* DimensionValueSource: "STRING_VALUE", // required
|
|
51
|
+
* DefaultDimensionValue: "STRING_VALUE", // required
|
|
52
|
+
* },
|
|
53
|
+
* ],
|
|
54
|
+
* },
|
|
55
|
+
* SnsDestination: { // SnsDestination
|
|
56
|
+
* TopicArn: "STRING_VALUE", // required
|
|
57
|
+
* },
|
|
58
|
+
* PinpointDestination: { // PinpointDestination
|
|
59
|
+
* ApplicationArn: "STRING_VALUE",
|
|
60
|
+
* },
|
|
61
|
+
* },
|
|
62
|
+
* };
|
|
34
63
|
* const command = new UpdateConfigurationSetEventDestinationCommand(input);
|
|
35
64
|
* const response = await client.send(command);
|
|
36
65
|
* ```
|
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.301.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|