aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
18 lines (17 loc) • 427 B
TypeScript
/**
* Properties the alias record target
*/
export interface IAliasRecordTargetProps {
/**
* Target Hosted zone ID.
*
* @default - hosted zone ID for the EBS endpoint will be retrieved based on the stack's region.
*/
readonly hostedZoneId?: string;
/**
* Evaluate target health
*
* @default - no health check configuration
*/
readonly evaluateTargetHealth?: boolean;
}