@aws-sdk/client-pinpoint-email 3.300.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 +7 -7
- package/dist-types/commands/CreateConfigurationSetEventDestinationCommand.d.ts +9 -9
- package/dist-types/commands/CreateDedicatedIpPoolCommand.d.ts +3 -3
- package/dist-types/commands/CreateDeliverabilityTestReportCommand.d.ts +9 -9
- package/dist-types/commands/CreateEmailIdentityCommand.d.ts +3 -3
- package/dist-types/commands/DeleteConfigurationSetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDedicatedIpPoolCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEmailIdentityCommand.d.ts +1 -1
- package/dist-types/commands/GetBlacklistReportsCommand.d.ts +2 -2
- package/dist-types/commands/GetConfigurationSetCommand.d.ts +1 -1
- package/dist-types/commands/GetConfigurationSetEventDestinationsCommand.d.ts +1 -1
- package/dist-types/commands/GetDedicatedIpCommand.d.ts +1 -1
- package/dist-types/commands/GetDedicatedIpsCommand.d.ts +1 -1
- package/dist-types/commands/GetDeliverabilityTestReportCommand.d.ts +1 -1
- package/dist-types/commands/GetDomainDeliverabilityCampaignCommand.d.ts +1 -1
- package/dist-types/commands/GetDomainStatisticsReportCommand.d.ts +1 -1
- package/dist-types/commands/GetEmailIdentityCommand.d.ts +1 -1
- package/dist-types/commands/ListConfigurationSetsCommand.d.ts +1 -1
- package/dist-types/commands/ListDedicatedIpPoolsCommand.d.ts +1 -1
- package/dist-types/commands/ListDeliverabilityTestReportsCommand.d.ts +1 -1
- package/dist-types/commands/ListDomainDeliverabilityCampaignsCommand.d.ts +1 -1
- package/dist-types/commands/ListEmailIdentitiesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutAccountDedicatedIpWarmupAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutAccountSendingAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +1 -1
- package/dist-types/commands/PutConfigurationSetReputationOptionsCommand.d.ts +1 -1
- package/dist-types/commands/PutConfigurationSetSendingOptionsCommand.d.ts +1 -1
- package/dist-types/commands/PutConfigurationSetTrackingOptionsCommand.d.ts +1 -1
- package/dist-types/commands/PutDedicatedIpInPoolCommand.d.ts +1 -1
- package/dist-types/commands/PutDedicatedIpWarmupAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutDeliverabilityDashboardOptionCommand.d.ts +5 -5
- package/dist-types/commands/PutEmailIdentityDkimAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutEmailIdentityFeedbackAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutEmailIdentityMailFromAttributesCommand.d.ts +1 -1
- package/dist-types/commands/SendEmailCommand.d.ts +11 -11
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +9 -9
- package/package.json +3 -3
|
@@ -30,24 +30,24 @@ 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 = {
|
|
33
|
+
* const input = { // CreateConfigurationSetRequest
|
|
34
34
|
* ConfigurationSetName: "STRING_VALUE", // required
|
|
35
|
-
* TrackingOptions: {
|
|
35
|
+
* TrackingOptions: { // TrackingOptions
|
|
36
36
|
* CustomRedirectDomain: "STRING_VALUE", // required
|
|
37
37
|
* },
|
|
38
|
-
* DeliveryOptions: {
|
|
38
|
+
* DeliveryOptions: { // DeliveryOptions
|
|
39
39
|
* TlsPolicy: "STRING_VALUE",
|
|
40
40
|
* SendingPoolName: "STRING_VALUE",
|
|
41
41
|
* },
|
|
42
|
-
* ReputationOptions: {
|
|
42
|
+
* ReputationOptions: { // ReputationOptions
|
|
43
43
|
* ReputationMetricsEnabled: true || false,
|
|
44
44
|
* LastFreshStart: new Date("TIMESTAMP"),
|
|
45
45
|
* },
|
|
46
|
-
* SendingOptions: {
|
|
46
|
+
* SendingOptions: { // SendingOptions
|
|
47
47
|
* SendingEnabled: true || false,
|
|
48
48
|
* },
|
|
49
|
-
* Tags: [
|
|
50
|
-
* {
|
|
49
|
+
* Tags: [ // TagList
|
|
50
|
+
* { // Tag
|
|
51
51
|
* Key: "STRING_VALUE", // required
|
|
52
52
|
* Value: "STRING_VALUE", // required
|
|
53
53
|
* },
|
|
@@ -32,31 +32,31 @@ 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 = {
|
|
35
|
+
* const input = { // CreateConfigurationSetEventDestinationRequest
|
|
36
36
|
* ConfigurationSetName: "STRING_VALUE", // required
|
|
37
37
|
* EventDestinationName: "STRING_VALUE", // required
|
|
38
|
-
* EventDestination: {
|
|
38
|
+
* EventDestination: { // EventDestinationDefinition
|
|
39
39
|
* Enabled: true || false,
|
|
40
|
-
* MatchingEventTypes: [
|
|
40
|
+
* MatchingEventTypes: [ // EventTypes
|
|
41
41
|
* "STRING_VALUE",
|
|
42
42
|
* ],
|
|
43
|
-
* KinesisFirehoseDestination: {
|
|
43
|
+
* KinesisFirehoseDestination: { // KinesisFirehoseDestination
|
|
44
44
|
* IamRoleArn: "STRING_VALUE", // required
|
|
45
45
|
* DeliveryStreamArn: "STRING_VALUE", // required
|
|
46
46
|
* },
|
|
47
|
-
* CloudWatchDestination: {
|
|
48
|
-
* DimensionConfigurations: [ // required
|
|
49
|
-
* {
|
|
47
|
+
* CloudWatchDestination: { // CloudWatchDestination
|
|
48
|
+
* DimensionConfigurations: [ // CloudWatchDimensionConfigurations // required
|
|
49
|
+
* { // CloudWatchDimensionConfiguration
|
|
50
50
|
* DimensionName: "STRING_VALUE", // required
|
|
51
51
|
* DimensionValueSource: "STRING_VALUE", // required
|
|
52
52
|
* DefaultDimensionValue: "STRING_VALUE", // required
|
|
53
53
|
* },
|
|
54
54
|
* ],
|
|
55
55
|
* },
|
|
56
|
-
* SnsDestination: {
|
|
56
|
+
* SnsDestination: { // SnsDestination
|
|
57
57
|
* TopicArn: "STRING_VALUE", // required
|
|
58
58
|
* },
|
|
59
|
-
* PinpointDestination: {
|
|
59
|
+
* PinpointDestination: { // PinpointDestination
|
|
60
60
|
* ApplicationArn: "STRING_VALUE",
|
|
61
61
|
* },
|
|
62
62
|
* },
|
|
@@ -29,10 +29,10 @@ 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 = {
|
|
32
|
+
* const input = { // CreateDedicatedIpPoolRequest
|
|
33
33
|
* PoolName: "STRING_VALUE", // required
|
|
34
|
-
* Tags: [
|
|
35
|
-
* {
|
|
34
|
+
* Tags: [ // TagList
|
|
35
|
+
* { // Tag
|
|
36
36
|
* Key: "STRING_VALUE", // required
|
|
37
37
|
* Value: "STRING_VALUE", // required
|
|
38
38
|
* },
|
|
@@ -32,16 +32,16 @@ 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 = {
|
|
35
|
+
* const input = { // CreateDeliverabilityTestReportRequest
|
|
36
36
|
* ReportName: "STRING_VALUE",
|
|
37
37
|
* FromEmailAddress: "STRING_VALUE", // required
|
|
38
|
-
* Content: {
|
|
39
|
-
* Simple: {
|
|
40
|
-
* Subject: {
|
|
38
|
+
* Content: { // EmailContent
|
|
39
|
+
* Simple: { // Message
|
|
40
|
+
* Subject: { // Content
|
|
41
41
|
* Data: "STRING_VALUE", // required
|
|
42
42
|
* Charset: "STRING_VALUE",
|
|
43
43
|
* },
|
|
44
|
-
* Body: {
|
|
44
|
+
* Body: { // Body
|
|
45
45
|
* Text: {
|
|
46
46
|
* Data: "STRING_VALUE", // required
|
|
47
47
|
* Charset: "STRING_VALUE",
|
|
@@ -52,16 +52,16 @@ export interface CreateDeliverabilityTestReportCommandOutput extends CreateDeliv
|
|
|
52
52
|
* },
|
|
53
53
|
* },
|
|
54
54
|
* },
|
|
55
|
-
* Raw: {
|
|
55
|
+
* Raw: { // RawMessage
|
|
56
56
|
* Data: "BLOB_VALUE", // required
|
|
57
57
|
* },
|
|
58
|
-
* Template: {
|
|
58
|
+
* Template: { // Template
|
|
59
59
|
* TemplateArn: "STRING_VALUE",
|
|
60
60
|
* TemplateData: "STRING_VALUE",
|
|
61
61
|
* },
|
|
62
62
|
* },
|
|
63
|
-
* Tags: [
|
|
64
|
-
* {
|
|
63
|
+
* Tags: [ // TagList
|
|
64
|
+
* { // Tag
|
|
65
65
|
* Key: "STRING_VALUE", // required
|
|
66
66
|
* Value: "STRING_VALUE", // required
|
|
67
67
|
* },
|
|
@@ -39,10 +39,10 @@ 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 = {
|
|
42
|
+
* const input = { // CreateEmailIdentityRequest
|
|
43
43
|
* EmailIdentity: "STRING_VALUE", // required
|
|
44
|
-
* Tags: [
|
|
45
|
-
* {
|
|
44
|
+
* Tags: [ // TagList
|
|
45
|
+
* { // Tag
|
|
46
46
|
* Key: "STRING_VALUE", // required
|
|
47
47
|
* Value: "STRING_VALUE", // required
|
|
48
48
|
* },
|
|
@@ -31,7 +31,7 @@ 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 = {
|
|
34
|
+
* const input = { // DeleteConfigurationSetRequest
|
|
35
35
|
* ConfigurationSetName: "STRING_VALUE", // required
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DeleteConfigurationSetCommand(input);
|
|
@@ -31,7 +31,7 @@ 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 = {
|
|
34
|
+
* const input = { // DeleteConfigurationSetEventDestinationRequest
|
|
35
35
|
* ConfigurationSetName: "STRING_VALUE", // required
|
|
36
36
|
* EventDestinationName: "STRING_VALUE", // required
|
|
37
37
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteDedicatedIpPoolRequest
|
|
30
30
|
* PoolName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteDedicatedIpPoolCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DeleteEmailIdentityRequest
|
|
31
31
|
* EmailIdentity: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteEmailIdentityCommand(input);
|
|
@@ -26,8 +26,8 @@ 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 = {
|
|
30
|
-
* BlacklistItemNames: [ // required
|
|
29
|
+
* const input = { // GetBlacklistReportsRequest
|
|
30
|
+
* BlacklistItemNames: [ // BlacklistItemNames // required
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
33
|
* };
|
|
@@ -33,7 +33,7 @@ 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 = {
|
|
36
|
+
* const input = { // GetConfigurationSetRequest
|
|
37
37
|
* ConfigurationSetName: "STRING_VALUE", // required
|
|
38
38
|
* };
|
|
39
39
|
* const command = new GetConfigurationSetCommand(input);
|
|
@@ -32,7 +32,7 @@ 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 = {
|
|
35
|
+
* const input = { // GetConfigurationSetEventDestinationsRequest
|
|
36
36
|
* ConfigurationSetName: "STRING_VALUE", // required
|
|
37
37
|
* };
|
|
38
38
|
* const command = new GetConfigurationSetEventDestinationsCommand(input);
|
|
@@ -28,7 +28,7 @@ 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 = {
|
|
31
|
+
* const input = { // GetDedicatedIpRequest
|
|
32
32
|
* Ip: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetDedicatedIpCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // GetDedicatedIpsRequest
|
|
31
31
|
* PoolName: "STRING_VALUE",
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* PageSize: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetDeliverabilityTestReportRequest
|
|
30
30
|
* ReportId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetDeliverabilityTestReportCommand(input);
|
|
@@ -29,7 +29,7 @@ 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 = {
|
|
32
|
+
* const input = { // GetDomainDeliverabilityCampaignRequest
|
|
33
33
|
* CampaignId: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetDomainDeliverabilityCampaignCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // GetDomainStatisticsReportRequest
|
|
31
31
|
* Domain: "STRING_VALUE", // required
|
|
32
32
|
* StartDate: new Date("TIMESTAMP"), // required
|
|
33
33
|
* EndDate: new Date("TIMESTAMP"), // required
|
|
@@ -28,7 +28,7 @@ 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 = {
|
|
31
|
+
* const input = { // GetEmailIdentityRequest
|
|
32
32
|
* EmailIdentity: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetEmailIdentityCommand(input);
|
|
@@ -32,7 +32,7 @@ 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 = {
|
|
35
|
+
* const input = { // ListConfigurationSetsRequest
|
|
36
36
|
* NextToken: "STRING_VALUE",
|
|
37
37
|
* PageSize: Number("int"),
|
|
38
38
|
* };
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // ListDedicatedIpPoolsRequest
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* PageSize: Number("int"),
|
|
33
33
|
* };
|
|
@@ -28,7 +28,7 @@ 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 = {
|
|
31
|
+
* const input = { // ListDeliverabilityTestReportsRequest
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* PageSize: Number("int"),
|
|
34
34
|
* };
|
|
@@ -29,7 +29,7 @@ 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 = {
|
|
32
|
+
* const input = { // ListDomainDeliverabilityCampaignsRequest
|
|
33
33
|
* StartDate: new Date("TIMESTAMP"), // required
|
|
34
34
|
* EndDate: new Date("TIMESTAMP"), // required
|
|
35
35
|
* SubscribedDomain: "STRING_VALUE", // required
|
|
@@ -28,7 +28,7 @@ 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 = {
|
|
31
|
+
* const input = { // ListEmailIdentitiesRequest
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* PageSize: Number("int"),
|
|
34
34
|
* };
|
|
@@ -31,7 +31,7 @@ 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 = {
|
|
34
|
+
* const input = { // ListTagsForResourceRequest
|
|
35
35
|
* ResourceArn: "STRING_VALUE", // required
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // PutAccountDedicatedIpWarmupAttributesRequest
|
|
30
30
|
* AutoWarmupEnabled: true || false,
|
|
31
31
|
* };
|
|
32
32
|
* const command = new PutAccountDedicatedIpWarmupAttributesCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // PutAccountSendingAttributesRequest
|
|
30
30
|
* SendingEnabled: true || false,
|
|
31
31
|
* };
|
|
32
32
|
* const command = new PutAccountSendingAttributesCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // PutConfigurationSetDeliveryOptionsRequest
|
|
31
31
|
* ConfigurationSetName: "STRING_VALUE", // required
|
|
32
32
|
* TlsPolicy: "STRING_VALUE",
|
|
33
33
|
* SendingPoolName: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // PutConfigurationSetReputationOptionsRequest
|
|
31
31
|
* ConfigurationSetName: "STRING_VALUE", // required
|
|
32
32
|
* ReputationMetricsEnabled: true || false,
|
|
33
33
|
* };
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // PutConfigurationSetSendingOptionsRequest
|
|
31
31
|
* ConfigurationSetName: "STRING_VALUE", // required
|
|
32
32
|
* SendingEnabled: true || false,
|
|
33
33
|
* };
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // PutConfigurationSetTrackingOptionsRequest
|
|
31
31
|
* ConfigurationSetName: "STRING_VALUE", // required
|
|
32
32
|
* CustomRedirectDomain: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -35,7 +35,7 @@ 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 = {
|
|
38
|
+
* const input = { // PutDedicatedIpInPoolRequest
|
|
39
39
|
* Ip: "STRING_VALUE", // required
|
|
40
40
|
* DestinationPoolName: "STRING_VALUE", // required
|
|
41
41
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // PutDedicatedIpWarmupAttributesRequest
|
|
30
30
|
* Ip: "STRING_VALUE", // required
|
|
31
31
|
* WarmupPercentage: Number("int"), // required
|
|
32
32
|
* };
|
|
@@ -32,15 +32,15 @@ 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 = {
|
|
35
|
+
* const input = { // PutDeliverabilityDashboardOptionRequest
|
|
36
36
|
* DashboardEnabled: true || false, // required
|
|
37
|
-
* SubscribedDomains: [
|
|
38
|
-
* {
|
|
37
|
+
* SubscribedDomains: [ // DomainDeliverabilityTrackingOptions
|
|
38
|
+
* { // DomainDeliverabilityTrackingOption
|
|
39
39
|
* Domain: "STRING_VALUE",
|
|
40
40
|
* SubscriptionStartDate: new Date("TIMESTAMP"),
|
|
41
|
-
* InboxPlacementTrackingOption: {
|
|
41
|
+
* InboxPlacementTrackingOption: { // InboxPlacementTrackingOption
|
|
42
42
|
* Global: true || false,
|
|
43
|
-
* TrackedIsps: [
|
|
43
|
+
* TrackedIsps: [ // IspNameList
|
|
44
44
|
* "STRING_VALUE",
|
|
45
45
|
* ],
|
|
46
46
|
* },
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // PutEmailIdentityDkimAttributesRequest
|
|
30
30
|
* EmailIdentity: "STRING_VALUE", // required
|
|
31
31
|
* SigningEnabled: true || false,
|
|
32
32
|
* };
|
|
@@ -36,7 +36,7 @@ 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 = {
|
|
39
|
+
* const input = { // PutEmailIdentityFeedbackAttributesRequest
|
|
40
40
|
* EmailIdentity: "STRING_VALUE", // required
|
|
41
41
|
* EmailForwardingEnabled: true || false,
|
|
42
42
|
* };
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // PutEmailIdentityMailFromAttributesRequest
|
|
31
31
|
* EmailIdentity: "STRING_VALUE", // required
|
|
32
32
|
* MailFromDomain: "STRING_VALUE",
|
|
33
33
|
* BehaviorOnMxFailure: "STRING_VALUE",
|
|
@@ -43,10 +43,10 @@ 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 = {
|
|
46
|
+
* const input = { // SendEmailRequest
|
|
47
47
|
* FromEmailAddress: "STRING_VALUE",
|
|
48
|
-
* Destination: {
|
|
49
|
-
* ToAddresses: [
|
|
48
|
+
* Destination: { // Destination
|
|
49
|
+
* ToAddresses: [ // EmailAddressList
|
|
50
50
|
* "STRING_VALUE",
|
|
51
51
|
* ],
|
|
52
52
|
* CcAddresses: [
|
|
@@ -60,13 +60,13 @@ export interface SendEmailCommandOutput extends SendEmailResponse, __MetadataBea
|
|
|
60
60
|
* "STRING_VALUE",
|
|
61
61
|
* ],
|
|
62
62
|
* FeedbackForwardingEmailAddress: "STRING_VALUE",
|
|
63
|
-
* Content: {
|
|
64
|
-
* Simple: {
|
|
65
|
-
* Subject: {
|
|
63
|
+
* Content: { // EmailContent
|
|
64
|
+
* Simple: { // Message
|
|
65
|
+
* Subject: { // Content
|
|
66
66
|
* Data: "STRING_VALUE", // required
|
|
67
67
|
* Charset: "STRING_VALUE",
|
|
68
68
|
* },
|
|
69
|
-
* Body: {
|
|
69
|
+
* Body: { // Body
|
|
70
70
|
* Text: {
|
|
71
71
|
* Data: "STRING_VALUE", // required
|
|
72
72
|
* Charset: "STRING_VALUE",
|
|
@@ -77,16 +77,16 @@ export interface SendEmailCommandOutput extends SendEmailResponse, __MetadataBea
|
|
|
77
77
|
* },
|
|
78
78
|
* },
|
|
79
79
|
* },
|
|
80
|
-
* Raw: {
|
|
80
|
+
* Raw: { // RawMessage
|
|
81
81
|
* Data: "BLOB_VALUE", // required
|
|
82
82
|
* },
|
|
83
|
-
* Template: {
|
|
83
|
+
* Template: { // Template
|
|
84
84
|
* TemplateArn: "STRING_VALUE",
|
|
85
85
|
* TemplateData: "STRING_VALUE",
|
|
86
86
|
* },
|
|
87
87
|
* },
|
|
88
|
-
* EmailTags: [
|
|
89
|
-
* {
|
|
88
|
+
* EmailTags: [ // MessageTagList
|
|
89
|
+
* { // MessageTag
|
|
90
90
|
* Name: "STRING_VALUE", // required
|
|
91
91
|
* Value: "STRING_VALUE", // required
|
|
92
92
|
* },
|
|
@@ -34,10 +34,10 @@ 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 = {
|
|
37
|
+
* const input = { // TagResourceRequest
|
|
38
38
|
* ResourceArn: "STRING_VALUE", // required
|
|
39
|
-
* Tags: [ // required
|
|
40
|
-
* {
|
|
39
|
+
* Tags: [ // TagList // required
|
|
40
|
+
* { // Tag
|
|
41
41
|
* Key: "STRING_VALUE", // required
|
|
42
42
|
* Value: "STRING_VALUE", // required
|
|
43
43
|
* },
|
|
@@ -26,9 +26,9 @@ 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 = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -31,31 +31,31 @@ 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 = {
|
|
34
|
+
* const input = { // UpdateConfigurationSetEventDestinationRequest
|
|
35
35
|
* ConfigurationSetName: "STRING_VALUE", // required
|
|
36
36
|
* EventDestinationName: "STRING_VALUE", // required
|
|
37
|
-
* EventDestination: {
|
|
37
|
+
* EventDestination: { // EventDestinationDefinition
|
|
38
38
|
* Enabled: true || false,
|
|
39
|
-
* MatchingEventTypes: [
|
|
39
|
+
* MatchingEventTypes: [ // EventTypes
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
|
-
* KinesisFirehoseDestination: {
|
|
42
|
+
* KinesisFirehoseDestination: { // KinesisFirehoseDestination
|
|
43
43
|
* IamRoleArn: "STRING_VALUE", // required
|
|
44
44
|
* DeliveryStreamArn: "STRING_VALUE", // required
|
|
45
45
|
* },
|
|
46
|
-
* CloudWatchDestination: {
|
|
47
|
-
* DimensionConfigurations: [ // required
|
|
48
|
-
* {
|
|
46
|
+
* CloudWatchDestination: { // CloudWatchDestination
|
|
47
|
+
* DimensionConfigurations: [ // CloudWatchDimensionConfigurations // required
|
|
48
|
+
* { // CloudWatchDimensionConfiguration
|
|
49
49
|
* DimensionName: "STRING_VALUE", // required
|
|
50
50
|
* DimensionValueSource: "STRING_VALUE", // required
|
|
51
51
|
* DefaultDimensionValue: "STRING_VALUE", // required
|
|
52
52
|
* },
|
|
53
53
|
* ],
|
|
54
54
|
* },
|
|
55
|
-
* SnsDestination: {
|
|
55
|
+
* SnsDestination: { // SnsDestination
|
|
56
56
|
* TopicArn: "STRING_VALUE", // required
|
|
57
57
|
* },
|
|
58
|
-
* PinpointDestination: {
|
|
58
|
+
* PinpointDestination: { // PinpointDestination
|
|
59
59
|
* ApplicationArn: "STRING_VALUE",
|
|
60
60
|
* },
|
|
61
61
|
* },
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
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",
|