Socket
Socket
Sign inDemoInstall

@aws-sdk/client-sesv2

Package Overview
Dependencies
Maintainers
0
Versions
414
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-sdk/client-sesv2 - npm Package Compare versions

Comparing version 3.658.1 to 3.660.0

5

dist-es/models/models_0.js

@@ -183,2 +183,7 @@ import { SENSITIVE_STRING } from "@smithy/smithy-client";

};
export const HttpsPolicy = {
OPTIONAL: "OPTIONAL",
REQUIRE: "REQUIRE",
REQUIRE_OPEN_ONLY: "REQUIRE_OPEN_ONLY",
};
export const FeatureStatus = {

@@ -185,0 +190,0 @@ DISABLED: "DISABLED",

1

dist-types/commands/CreateConfigurationSetCommand.d.ts

@@ -45,2 +45,3 @@ import { Command as $Command } from "@smithy/smithy-client";

* CustomRedirectDomain: "STRING_VALUE", // required
* HttpsPolicy: "REQUIRE" || "REQUIRE_OPEN_ONLY" || "OPTIONAL",
* },

@@ -47,0 +48,0 @@ * DeliveryOptions: { // DeliveryOptions

@@ -53,2 +53,3 @@ import { Command as $Command } from "@smithy/smithy-client";

* // CustomRedirectDomain: "STRING_VALUE", // required
* // HttpsPolicy: "REQUIRE" || "REQUIRE_OPEN_ONLY" || "OPTIONAL",
* // },

@@ -55,0 +56,0 @@ * // DeliveryOptions: { // DeliveryOptions

@@ -41,2 +41,3 @@ import { Command as $Command } from "@smithy/smithy-client";

* CustomRedirectDomain: "STRING_VALUE",
* HttpsPolicy: "REQUIRE" || "REQUIRE_OPEN_ONLY" || "OPTIONAL",
* };

@@ -43,0 +44,0 @@ * const command = new PutConfigurationSetTrackingOptionsCommand(input);

3

dist-types/commands/PutEmailIdentityDkimSigningAttributesCommand.d.ts
import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import { PutEmailIdentityDkimSigningAttributesRequest, PutEmailIdentityDkimSigningAttributesResponse } from "../models/models_0";
import { PutEmailIdentityDkimSigningAttributesRequest } from "../models/models_0";
import { PutEmailIdentityDkimSigningAttributesResponse } from "../models/models_1";
import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client";

@@ -5,0 +6,0 @@ /**

@@ -1,3 +0,66 @@

import { BehaviorOnMxFailure, BulkEmailContent, BulkEmailEntry, BulkEmailEntryResult, Destination, EmailContent, EmailTemplateContent, EventDestinationDefinition, ListManagementOptions, MessageTag, SuppressionListReason, Tag, Topic, TopicPreference } from "./models_0";
import { BehaviorOnMxFailure, BulkEmailContent, BulkEmailEntry, BulkEmailEntryResult, Destination, DkimStatus, EmailContent, EmailTemplateContent, EventDestinationDefinition, ListManagementOptions, MessageTag, SuppressionListReason, Tag, Topic, TopicPreference } from "./models_0";
/**
* <p>If the action is successful, the service sends back an HTTP 200 response.</p>
* <p>The following data is returned in JSON format by the service.</p>
* @public
*/
export interface PutEmailIdentityDkimSigningAttributesResponse {
/**
* <p>The DKIM authentication status of the identity. Amazon SES determines the authentication
* status by searching for specific records in the DNS configuration for your domain. If
* you used <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy
* DKIM</a> to set up DKIM authentication, Amazon SES tries to find three unique CNAME
* records in the DNS configuration for your domain.</p>
* <p>If you provided a public key to perform DKIM authentication, Amazon SES tries to find a TXT
* record that uses the selector that you specified. The value of the TXT record must be a
* public key that's paired with the private key that you specified in the process of
* creating the identity.</p>
* <p>The status can be one of the following:</p>
* <ul>
* <li>
* <p>
* <code>PENDING</code> – The verification process was initiated, but Amazon SES
* hasn't yet detected the DKIM records in the DNS configuration for the
* domain.</p>
* </li>
* <li>
* <p>
* <code>SUCCESS</code> – The verification process completed
* successfully.</p>
* </li>
* <li>
* <p>
* <code>FAILED</code> – The verification process failed. This typically
* occurs when Amazon SES fails to find the DKIM records in the DNS configuration of the
* domain.</p>
* </li>
* <li>
* <p>
* <code>TEMPORARY_FAILURE</code> – A temporary issue is preventing Amazon SES
* from determining the DKIM authentication status of the domain.</p>
* </li>
* <li>
* <p>
* <code>NOT_STARTED</code> – The DKIM verification process hasn't been
* initiated for the domain.</p>
* </li>
* </ul>
* @public
*/
DkimStatus?: DkimStatus;
/**
* <p>If you used <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy DKIM</a> to configure DKIM authentication for the domain, then this object
* contains a set of unique strings that you use to create a set of CNAME records that you
* add to the DNS configuration for your domain. When Amazon SES detects these records in the
* DNS configuration for your domain, the DKIM authentication process is complete.</p>
* <p>If you configured DKIM authentication for the domain by providing your own
* public-private key pair, then this object contains the selector that's associated with
* your public key.</p>
* <p>Regardless of the DKIM authentication method you use, Amazon SES searches for the
* appropriate records in the DNS configuration of the domain for up to 72 hours.</p>
* @public
*/
DkimTokens?: string[];
}
/**
* <p>A request to set the attributes that control how bounce and complaint events are

@@ -4,0 +67,0 @@ * processed.</p>

import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import { PutEmailIdentityDkimSigningAttributesRequest } from "../models/models_0";
import { PutEmailIdentityDkimSigningAttributesResponse } from "../models/models_1";
import {
PutEmailIdentityDkimSigningAttributesRequest,
PutEmailIdentityDkimSigningAttributesResponse,
} from "../models/models_0";
import {
ServiceInputTypes,

@@ -9,0 +7,0 @@ ServiceOutputTypes,

@@ -314,4 +314,11 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";

}
export declare const HttpsPolicy: {
readonly OPTIONAL: "OPTIONAL";
readonly REQUIRE: "REQUIRE";
readonly REQUIRE_OPEN_ONLY: "REQUIRE_OPEN_ONLY";
};
export type HttpsPolicy = (typeof HttpsPolicy)[keyof typeof HttpsPolicy];
export interface TrackingOptions {
CustomRedirectDomain: string | undefined;
HttpsPolicy?: HttpsPolicy;
}

@@ -1360,2 +1367,3 @@ export declare const FeatureStatus: {

CustomRedirectDomain?: string;
HttpsPolicy?: HttpsPolicy;
}

@@ -1403,6 +1411,2 @@ export interface PutConfigurationSetTrackingOptionsResponse {}

}
export interface PutEmailIdentityDkimSigningAttributesResponse {
DkimStatus?: DkimStatus;
DkimTokens?: string[];
}
export declare const AccountDetailsFilterSensitiveLog: (

@@ -1409,0 +1413,0 @@ obj: AccountDetails

@@ -7,2 +7,3 @@ import {

Destination,
DkimStatus,
EmailContent,

@@ -18,2 +19,6 @@ EmailTemplateContent,

} from "./models_0";
export interface PutEmailIdentityDkimSigningAttributesResponse {
DkimStatus?: DkimStatus;
DkimTokens?: string[];
}
export interface PutEmailIdentityFeedbackAttributesRequest {

@@ -20,0 +25,0 @@ EmailIdentity: string | undefined;

{
"name": "@aws-sdk/client-sesv2",
"description": "AWS SDK for JavaScript Sesv2 Client for Node.js, Browser and React Native",
"version": "3.658.1",
"version": "3.660.0",
"scripts": {

@@ -6,0 +6,0 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc