aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
16 lines (15 loc) • 765 B
TypeScript
import { IAliasRecordTargetProps } from './shared';
import * as route53 from '../../aws-route53';
/**
* Use an Elastic Beanstalk environment URL as an alias record target.
* E.g. mysampleenvironment.xyz.us-east-1.elasticbeanstalk.com
* or mycustomcnameprefix.us-east-1.elasticbeanstalk.com
*
* Only supports Elastic Beanstalk environments created after 2016 that have a regional endpoint.
*/
export declare class ElasticBeanstalkEnvironmentEndpointTarget implements route53.IAliasRecordTarget {
private readonly environmentEndpoint;
private readonly props?;
constructor(environmentEndpoint: string, props?: IAliasRecordTargetProps | undefined);
bind(record: route53.IRecordSet, _zone?: route53.IHostedZone): route53.AliasRecordTargetConfig;
}