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

12 lines
478 B
TypeScript

import type * as ec2 from '../../aws-ec2';
import type * as route53 from '../../aws-route53';
/**
* Set an InterfaceVpcEndpoint as a target for an ARecord
*/
export declare class InterfaceVpcEndpointTarget implements route53.IAliasRecordTarget {
private readonly vpcEndpoint;
private readonly cfnVpcEndpoint;
constructor(vpcEndpoint: ec2.InterfaceVpcEndpoint);
bind(_record: route53.IRecordSet, _zone?: route53.IHostedZone): route53.AliasRecordTargetConfig;
}