import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface YqObjectStorageConnectionConfig extends cdktf.TerraformMetaArguments { /** * The bucket name from ObjectStorage. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/yq_object_storage_connection#bucket YqObjectStorageConnection#bucket} */ readonly bucket: string; /** * The resource description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/yq_object_storage_connection#description YqObjectStorageConnection#description} */ readonly description?: string; /** * The resource name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/yq_object_storage_connection#name YqObjectStorageConnection#name} */ readonly name: string; /** * The service account ID to access resources on behalf of. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/yq_object_storage_connection#service_account_id YqObjectStorageConnection#service_account_id} */ readonly serviceAccountId?: string; } /** * Represents a {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/yq_object_storage_connection yandex_yq_object_storage_connection} */ export declare class YqObjectStorageConnection extends cdktf.TerraformResource { static readonly tfResourceType = "yandex_yq_object_storage_connection"; /** * Generates CDKTF code for importing a YqObjectStorageConnection 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 YqObjectStorageConnection to import * @param importFromId The id of the existing YqObjectStorageConnection that should be imported. Refer to the {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/yq_object_storage_connection#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the YqObjectStorageConnection 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/yandex-cloud/yandex/0.177.0/docs/resources/yq_object_storage_connection yandex_yq_object_storage_connection} 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 YqObjectStorageConnectionConfig */ constructor(scope: Construct, id: string, config: YqObjectStorageConnectionConfig); private _bucket?; get bucket(): string; set bucket(value: string); get bucketInput(): string; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; get id(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _serviceAccountId?; get serviceAccountId(): string; set serviceAccountId(value: string); resetServiceAccountId(): void; get serviceAccountIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }