17 lines
802 B
TypeScript
17 lines
802 B
TypeScript
import type { IAliasRecordTargetProps } from './shared';
|
|
import type * 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?;
|
|
private hostedZoneId?;
|
|
constructor(environmentEndpoint: string, props?: IAliasRecordTargetProps | undefined);
|
|
bind(record: route53.IRecordSet, _zone?: route53.IHostedZone): route53.AliasRecordTargetConfig;
|
|
}
|