Files
agent-claw/cdk/node_modules/aws-cdk-lib/aws-route53-targets/lib/shared.d.ts
2026-05-06 18:55:16 -05:00

18 lines
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;
}