agent-claw: automated task changes
This commit is contained in:
22
cdk/node_modules/aws-cdk-lib/aws-route53-targets/lib/cloudfront-target.d.ts
generated
vendored
Normal file
22
cdk/node_modules/aws-cdk-lib/aws-route53-targets/lib/cloudfront-target.d.ts
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
import type { IConstruct } from 'constructs';
|
||||
import type * as cloudfront from '../../aws-cloudfront';
|
||||
import type * as route53 from '../../aws-route53';
|
||||
/**
|
||||
* Use a CloudFront Distribution as an alias record target
|
||||
*/
|
||||
export declare class CloudFrontTarget implements route53.IAliasRecordTarget {
|
||||
private readonly distribution;
|
||||
/**
|
||||
* The hosted zone Id if using an alias record in Route53.
|
||||
* This value never changes.
|
||||
*/
|
||||
static readonly CLOUDFRONT_ZONE_ID = "Z2FDTNDATAQYW2";
|
||||
/**
|
||||
* Get the hosted zone id for the current scope.
|
||||
*
|
||||
* @param scope - scope in which this resource is defined
|
||||
*/
|
||||
static getHostedZoneId(scope: IConstruct): string;
|
||||
constructor(distribution: cloudfront.IDistribution);
|
||||
bind(_record: route53.IRecordSet, _zone?: route53.IHostedZone): route53.AliasRecordTargetConfig;
|
||||
}
|
||||
Reference in New Issue
Block a user