import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CamAccessKeyConfig extends cdktf.TerraformMetaArguments { /** * Access_key is the access key identification, required when updating. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_access_key#access_key CamAccessKey#access_key} */ readonly accessKey?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_access_key#id CamAccessKey#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; /** * Either a base-64 encoded PGP public key, or a keybase username in the form keybase:some_person_that_exists, for use in the encrypted_secret output attribute. If providing a base-64 encoded PGP public key, make sure to provide the "raw" version and not the "armored" one (e.g. avoid passing the -a option to gpg --export). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_access_key#pgp_key CamAccessKey#pgp_key} */ readonly pgpKey?: string; /** * Key status, activated (Active) or inactive (Inactive), required when updating. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_access_key#status CamAccessKey#status} */ readonly status?: string; /** * Specify user Uin, if not filled, the access key is created for the current user by default. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_access_key#target_uin CamAccessKey#target_uin} */ readonly targetUin?: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_access_key tencentcloud_cam_access_key} */ export declare class CamAccessKey extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_cam_access_key"; /** * Generates CDKTF code for importing a CamAccessKey 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 CamAccessKey to import * @param importFromId The id of the existing CamAccessKey that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_access_key#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CamAccessKey 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/cam_access_key tencentcloud_cam_access_key} 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 CamAccessKeyConfig = {} */ constructor(scope: Construct, id: string, config?: CamAccessKeyConfig); private _accessKey?; get accessKey(): string; set accessKey(value: string); resetAccessKey(): void; get accessKeyInput(): string; get encryptedSecretAccessKey(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get keyFingerprint(): any; private _pgpKey?; get pgpKey(): string; set pgpKey(value: string); resetPgpKey(): void; get pgpKeyInput(): string; get secretAccessKey(): any; private _status?; get status(): string; set status(value: string); resetStatus(): void; get statusInput(): string; private _targetUin?; get targetUin(): number; set targetUin(value: number); resetTargetUin(): void; get targetUinInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }