import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CynosdbClusterTransparentEncryptConfig extends cdktf.TerraformMetaArguments { /** * Cluster ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_cluster_transparent_encrypt#cluster_id CynosdbClusterTransparentEncrypt#cluster_id} */ readonly clusterId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_cluster_transparent_encrypt#id CynosdbClusterTransparentEncrypt#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; /** * Whether to enable global encryption. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_cluster_transparent_encrypt#is_open_global_encryption CynosdbClusterTransparentEncrypt#is_open_global_encryption} */ readonly isOpenGlobalEncryption?: boolean | cdktf.IResolvable; /** * Key Id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_cluster_transparent_encrypt#key_id CynosdbClusterTransparentEncrypt#key_id} */ readonly keyId?: string; /** * Key region. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_cluster_transparent_encrypt#key_region CynosdbClusterTransparentEncrypt#key_region} */ readonly keyRegion?: string; /** * Key type (cloud, custom). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_cluster_transparent_encrypt#key_type CynosdbClusterTransparentEncrypt#key_type} */ readonly keyType: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_cluster_transparent_encrypt tencentcloud_cynosdb_cluster_transparent_encrypt} */ export declare class CynosdbClusterTransparentEncrypt extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_cynosdb_cluster_transparent_encrypt"; /** * Generates CDKTF code for importing a CynosdbClusterTransparentEncrypt resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the CynosdbClusterTransparentEncrypt to import * @param importFromId The id of the existing CynosdbClusterTransparentEncrypt that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_cluster_transparent_encrypt#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CynosdbClusterTransparentEncrypt to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_cluster_transparent_encrypt tencentcloud_cynosdb_cluster_transparent_encrypt} Resource * * @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 CynosdbClusterTransparentEncryptConfig */ constructor(scope: Construct, id: string, config: CynosdbClusterTransparentEncryptConfig); private _clusterId?; get clusterId(): string; set clusterId(value: string); get clusterIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _isOpenGlobalEncryption?; get isOpenGlobalEncryption(): boolean | cdktf.IResolvable; set isOpenGlobalEncryption(value: boolean | cdktf.IResolvable); resetIsOpenGlobalEncryption(): void; get isOpenGlobalEncryptionInput(): any; private _keyId?; get keyId(): string; set keyId(value: string); resetKeyId(): void; get keyIdInput(): string; private _keyRegion?; get keyRegion(): string; set keyRegion(value: string); resetKeyRegion(): void; get keyRegionInput(): string; private _keyType?; get keyType(): string; set keyType(value: string); get keyTypeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }