import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface SsmSecretVersionConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ssm_secret_version#id SsmSecretVersion#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; /** * The base64-encoded binary secret. secret_binary and secret_string must be set only one, and the maximum support is 4096 bytes. When secret status is `Disabled`, this field will not update anymore. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ssm_secret_version#secret_binary SsmSecretVersion#secret_binary} */ readonly secretBinary?: string; /** * Name of secret which cannot be repeated in the same region. The maximum length is 128 bytes. The name can only contain English letters, numbers, underscore and hyphen '-'. The first character must be a letter or number. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ssm_secret_version#secret_name SsmSecretVersion#secret_name} */ readonly secretName: string; /** * The string text of secret. secret_binary and secret_string must be set only one, and the maximum support is 4096 bytes. When secret status is `Disabled`, this field will not update anymore. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ssm_secret_version#secret_string SsmSecretVersion#secret_string} */ readonly secretString?: string; /** * Version of secret. The maximum length is 64 bytes. The version_id can only contain English letters, numbers, underscore and hyphen '-'. The first character must be a letter or number. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ssm_secret_version#version_id SsmSecretVersion#version_id} */ readonly versionId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ssm_secret_version tencentcloud_ssm_secret_version} */ export declare class SsmSecretVersion extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_ssm_secret_version"; /** * Generates CDKTF code for importing a SsmSecretVersion 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 SsmSecretVersion to import * @param importFromId The id of the existing SsmSecretVersion that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ssm_secret_version#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the SsmSecretVersion 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/ssm_secret_version tencentcloud_ssm_secret_version} 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 SsmSecretVersionConfig */ constructor(scope: Construct, id: string, config: SsmSecretVersionConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _secretBinary?; get secretBinary(): string; set secretBinary(value: string); resetSecretBinary(): void; get secretBinaryInput(): string; private _secretName?; get secretName(): string; set secretName(value: string); get secretNameInput(): string; private _secretString?; get secretString(): string; set secretString(value: string); resetSecretString(): void; get secretStringInput(): string; private _versionId?; get versionId(): string; set versionId(value: string); get versionIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }