@cdktf/provider-aws
Version:
Prebuilt aws Provider for Terraform CDK (cdktf)
118 lines (117 loc) • 6.24 kB
TypeScript
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataAwsNeptuneOrderableDbInstanceConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/data-sources/neptune_orderable_db_instance#engine DataAwsNeptuneOrderableDbInstance#engine}
*/
readonly engine?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/data-sources/neptune_orderable_db_instance#engine_version DataAwsNeptuneOrderableDbInstance#engine_version}
*/
readonly engineVersion?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/data-sources/neptune_orderable_db_instance#id DataAwsNeptuneOrderableDbInstance#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/neptune_orderable_db_instance#instance_class DataAwsNeptuneOrderableDbInstance#instance_class}
*/
readonly instanceClass?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/data-sources/neptune_orderable_db_instance#license_model DataAwsNeptuneOrderableDbInstance#license_model}
*/
readonly licenseModel?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/data-sources/neptune_orderable_db_instance#preferred_instance_classes DataAwsNeptuneOrderableDbInstance#preferred_instance_classes}
*/
readonly preferredInstanceClasses?: string[];
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/data-sources/neptune_orderable_db_instance#vpc DataAwsNeptuneOrderableDbInstance#vpc}
*/
readonly vpc?: boolean | cdktf.IResolvable;
}
/**
* Represents a {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/data-sources/neptune_orderable_db_instance aws_neptune_orderable_db_instance}
*/
export declare class DataAwsNeptuneOrderableDbInstance extends cdktf.TerraformDataSource {
static readonly tfResourceType = "aws_neptune_orderable_db_instance";
/**
* Generates CDKTF code for importing a DataAwsNeptuneOrderableDbInstance 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 DataAwsNeptuneOrderableDbInstance to import
* @param importFromId The id of the existing DataAwsNeptuneOrderableDbInstance that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/data-sources/neptune_orderable_db_instance#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataAwsNeptuneOrderableDbInstance 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/neptune_orderable_db_instance aws_neptune_orderable_db_instance} 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 DataAwsNeptuneOrderableDbInstanceConfig = {}
*/
constructor(scope: Construct, id: string, config?: DataAwsNeptuneOrderableDbInstanceConfig);
get availabilityZones(): string[];
private _engine?;
get engine(): string;
set engine(value: string);
resetEngine(): void;
get engineInput(): string | undefined;
private _engineVersion?;
get engineVersion(): string;
set engineVersion(value: string);
resetEngineVersion(): void;
get engineVersionInput(): string | undefined;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
private _instanceClass?;
get instanceClass(): string;
set instanceClass(value: string);
resetInstanceClass(): void;
get instanceClassInput(): string | undefined;
private _licenseModel?;
get licenseModel(): string;
set licenseModel(value: string);
resetLicenseModel(): void;
get licenseModelInput(): string | undefined;
get maxIopsPerDbInstance(): number;
get maxIopsPerGib(): number;
get maxStorageSize(): number;
get minIopsPerDbInstance(): number;
get minIopsPerGib(): number;
get minStorageSize(): number;
get multiAzCapable(): cdktf.IResolvable;
private _preferredInstanceClasses?;
get preferredInstanceClasses(): string[];
set preferredInstanceClasses(value: string[]);
resetPreferredInstanceClasses(): void;
get preferredInstanceClassesInput(): string[] | undefined;
get readReplicaCapable(): cdktf.IResolvable;
get storageType(): string;
get supportsEnhancedMonitoring(): cdktf.IResolvable;
get supportsIamDatabaseAuthentication(): cdktf.IResolvable;
get supportsIops(): cdktf.IResolvable;
get supportsPerformanceInsights(): cdktf.IResolvable;
get supportsStorageEncryption(): cdktf.IResolvable;
private _vpc?;
get vpc(): boolean | cdktf.IResolvable;
set vpc(value: boolean | cdktf.IResolvable);
resetVpc(): void;
get vpcInput(): boolean | cdktf.IResolvable | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}