![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
aws-cdk-ses-domain-identity
Advanced tools
Constructs for provisioning and referencing domain identities which can be used in SES RuleSets and Actions Construct.
This package provides Constructs for provisioning & validating SES Domain Identity which can be used in SES.
Inspired from Automatic DNS-validated certificates using Route 53 of aws-cdk-lib/aws-certificatemanager
package.
This package automatically validates SES Domain Identity like aws-cdk-lib/aws-certificatemanager
does.
Now aws-cdk-ses-domain-identity
has been migrated to CDK v2.
The major version of aws-cdk-ses-domain-identity
matches to compatible CDK version.
npm i aws-cdk-ses-domain-identity@1 --save
npm i aws-cdk-ses-domain-identity@latest --save
npm i aws-cdk-ses-domain-identity@2 --save
import * as route53 from "aws-cdk-lib/aws-route53";
import { DnsValidatedDomainIdentity } from "aws-cdk-ses-domain-identity";
// ... (truncated)
const hostedZone = route53.HostedZone.fromLookup(this, 'HostedZone', {
domainName: 'example.com',
privateZone: false,
});
const identity = new DnsValidatedDomainIdentity(this, 'DomainIdentity', {
domainName: 'example.com',
dkim: true,
region: 'us-east-1',
hostedZone,
});
// ... (truncated)
new DnsValidatedDomainIdentity(scope: Construct, id: string, props?: DnsValidatedDomainIdentityProps)
interface DnsValidatedDomainIdentityProps {
/**
* Fully-qualified domain name to request a domain identity for.
*/
readonly domainName: string;
/**
* Whether to configure DKIM on domain identity.
* @default true
*/
readonly dkim?: boolean;
/**
* Route 53 Hosted Zone used to perform DNS validation of the request. The zone
* must be authoritative for the domain name specified in the Domain Identity Request.
*/
readonly hostedZone: route53.IHostedZone;
/**
* AWS region that will validate the domain identity. This is needed especially
* for domain identity used for AWS SES services, which require the region
* to be one of SES supported regions.
*
* @default the region the stack is deployed in.
*/
readonly region?: string;
/**
* Role to use for the custom resource that creates the validated domain identity
*
* @default - A new role will be created
*/
readonly customResourceRole?: iam.IRole;
}
Name | Type | Description |
---|---|---|
identityArn | string | The ARN of the domain identity. |
See full license on mooyoul.mit-license.org
FAQs
Constructs for provisioning and referencing domain identities which can be used in SES RuleSets and Actions Construct.
The npm package aws-cdk-ses-domain-identity receives a total of 2,448 weekly downloads. As such, aws-cdk-ses-domain-identity popularity was classified as popular.
We found that aws-cdk-ses-domain-identity demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.