import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CiamUserStoreConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ciam_user_store#id CiamUserStore#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; /** * User Store Description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ciam_user_store#user_pool_desc CiamUserStore#user_pool_desc} */ readonly userPoolDesc?: string; /** * User Store Logo. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ciam_user_store#user_pool_logo CiamUserStore#user_pool_logo} */ readonly userPoolLogo?: string; /** * User Store Name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ciam_user_store#user_pool_name CiamUserStore#user_pool_name} */ readonly userPoolName: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ciam_user_store tencentcloud_ciam_user_store} */ export declare class CiamUserStore extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_ciam_user_store"; /** * Generates CDKTF code for importing a CiamUserStore 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 CiamUserStore to import * @param importFromId The id of the existing CiamUserStore that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ciam_user_store#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CiamUserStore 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/ciam_user_store tencentcloud_ciam_user_store} 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 CiamUserStoreConfig */ constructor(scope: Construct, id: string, config: CiamUserStoreConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _userPoolDesc?; get userPoolDesc(): string; set userPoolDesc(value: string); resetUserPoolDesc(): void; get userPoolDescInput(): string; private _userPoolLogo?; get userPoolLogo(): string; set userPoolLogo(value: string); resetUserPoolLogo(): void; get userPoolLogoInput(): string; private _userPoolName?; get userPoolName(): string; set userPoolName(value: string); get userPoolNameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }