Socket
Socket
Sign inDemoInstall

@aws-cdk/aws-route53

Package Overview
Dependencies
Maintainers
4
Versions
288
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-cdk/aws-route53

The CDK Construct Library for AWS::Route53


Version published
Weekly downloads
77K
increased by14.52%
Maintainers
4
Weekly downloads
 
Created

What is @aws-cdk/aws-route53?

@aws-cdk/aws-route53 is an AWS Cloud Development Kit (CDK) library that allows you to define and manage Amazon Route 53 resources using code. It provides a high-level, object-oriented abstraction to create and manage DNS zones, records, and other Route 53 features.

What are @aws-cdk/aws-route53's main functionalities?

Create a Hosted Zone

This code sample demonstrates how to create a new hosted zone in Route 53 using the AWS CDK. A hosted zone is a container for DNS records for a specific domain.

const route53 = require('@aws-cdk/aws-route53');
const cdk = require('@aws-cdk/core');

const app = new cdk.App();
const stack = new cdk.Stack(app, 'MyStack');

const zone = new route53.HostedZone(stack, 'MyHostedZone', {
  zoneName: 'example.com',
});

app.synth();

Create an A Record

This code sample demonstrates how to create an A record in a hosted zone. An A record maps a domain name to an IPv4 address.

const route53 = require('@aws-cdk/aws-route53');
const cdk = require('@aws-cdk/core');

const app = new cdk.App();
const stack = new cdk.Stack(app, 'MyStack');

const zone = new route53.HostedZone(stack, 'MyHostedZone', {
  zoneName: 'example.com',
});

new route53.ARecord(stack, 'MyARecord', {
  zone,
  target: route53.RecordTarget.fromIpAddresses('1.2.3.4'),
});

app.synth();

Create a CNAME Record

This code sample demonstrates how to create a CNAME record in a hosted zone. A CNAME record maps a domain name to another domain name.

const route53 = require('@aws-cdk/aws-route53');
const cdk = require('@aws-cdk/core');

const app = new cdk.App();
const stack = new cdk.Stack(app, 'MyStack');

const zone = new route53.HostedZone(stack, 'MyHostedZone', {
  zoneName: 'example.com',
});

new route53.CnameRecord(stack, 'MyCnameRecord', {
  zone,
  domainName: 'example.com',
  recordName: 'www',
});

app.synth();

Create an Alias Record

This code sample demonstrates how to create an alias record in a hosted zone. An alias record maps a domain name to an AWS resource, such as an Elastic Load Balancer.

const route53 = require('@aws-cdk/aws-route53');
const cdk = require('@aws-cdk/core');
const targets = require('@aws-cdk/aws-route53-targets');
const elbv2 = require('@aws-cdk/aws-elasticloadbalancingv2');

const app = new cdk.App();
const stack = new cdk.Stack(app, 'MyStack');

const zone = new route53.HostedZone(stack, 'MyHostedZone', {
  zoneName: 'example.com',
});

const lb = new elbv2.ApplicationLoadBalancer(stack, 'LB', {
  vpc,
  internetFacing: true,
});

new route53.ARecord(stack, 'AliasRecord', {
  zone,
  target: route53.RecordTarget.fromAlias(new targets.LoadBalancerTarget(lb)),
});

app.synth();

Other packages similar to @aws-cdk/aws-route53

Keywords

FAQs

Package last updated on 29 Nov 2022

Did you know?

Socket

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.

Install

Related posts

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