UNPKG

@cdktf/provider-aws

Version:

Prebuilt aws Provider for Terraform CDK (cdktf)

110 lines (109 loc) 4.9 kB
/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataAwsRoute53ZoneConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/data-sources/route53_zone#id DataAwsRoute53Zone#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/data-sources/route53_zone#name DataAwsRoute53Zone#name} */ readonly name?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/data-sources/route53_zone#private_zone DataAwsRoute53Zone#private_zone} */ readonly privateZone?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/data-sources/route53_zone#tags DataAwsRoute53Zone#tags} */ readonly tags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/data-sources/route53_zone#vpc_id DataAwsRoute53Zone#vpc_id} */ readonly vpcId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/data-sources/route53_zone#zone_id DataAwsRoute53Zone#zone_id} */ readonly zoneId?: string; } /** * Represents a {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/data-sources/route53_zone aws_route53_zone} */ export declare class DataAwsRoute53Zone extends cdktf.TerraformDataSource { static readonly tfResourceType = "aws_route53_zone"; /** * Generates CDKTF code for importing a DataAwsRoute53Zone resource upon running "cdktf plan <stack-name>" * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the DataAwsRoute53Zone to import * @param importFromId The id of the existing DataAwsRoute53Zone that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/data-sources/route53_zone#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataAwsRoute53Zone to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource; /** * Create a new {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/data-sources/route53_zone aws_route53_zone} Data Source * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options DataAwsRoute53ZoneConfig = {} */ constructor(scope: Construct, id: string, config?: DataAwsRoute53ZoneConfig); get arn(): string; get callerReference(): string; get comment(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; get linkedServiceDescription(): string; get linkedServicePrincipal(): string; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string | undefined; get nameServers(): string[]; get primaryNameServer(): string; private _privateZone?; get privateZone(): boolean | cdktf.IResolvable; set privateZone(value: boolean | cdktf.IResolvable); resetPrivateZone(): void; get privateZoneInput(): boolean | cdktf.IResolvable | undefined; get resourceRecordSetCount(): number; private _tags?; get tags(): { [key: string]: string; }; set tags(value: { [key: string]: string; }); resetTags(): void; get tagsInput(): { [key: string]: string; } | undefined; private _vpcId?; get vpcId(): string; set vpcId(value: string); resetVpcId(): void; get vpcIdInput(): string | undefined; private _zoneId?; get zoneId(): string; set zoneId(value: string); resetZoneId(): void; get zoneIdInput(): string | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }