import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface EbEventConnectorConfig extends cdktf.TerraformMetaArguments { /** * connector name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eb_event_connector#connection_name EbEventConnector#connection_name} */ readonly connectionName: string; /** * description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eb_event_connector#description EbEventConnector#description} */ readonly description?: string; /** * switch. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eb_event_connector#enable EbEventConnector#enable} */ readonly enable?: boolean | cdktf.IResolvable; /** * event bus Id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eb_event_connector#event_bus_id EbEventConnector#event_bus_id} */ readonly eventBusId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eb_event_connector#id EbEventConnector#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; /** * type. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eb_event_connector#type EbEventConnector#type} */ readonly type?: string; /** * connection_description block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eb_event_connector#connection_description EbEventConnector#connection_description} */ readonly connectionDescription: EbEventConnectorConnectionDescription; } export interface EbEventConnectorConnectionDescriptionApiGwParams { /** * POST. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eb_event_connector#method EbEventConnector#method} */ readonly method: string; /** * HTTPS. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eb_event_connector#protocol EbEventConnector#protocol} */ readonly protocol: string; } export declare function ebEventConnectorConnectionDescriptionApiGwParamsToTerraform(struct?: EbEventConnectorConnectionDescriptionApiGwParamsOutputReference | EbEventConnectorConnectionDescriptionApiGwParams): any; export declare function ebEventConnectorConnectionDescriptionApiGwParamsToHclTerraform(struct?: EbEventConnectorConnectionDescriptionApiGwParamsOutputReference | EbEventConnectorConnectionDescriptionApiGwParams): any; export declare class EbEventConnectorConnectionDescriptionApiGwParamsOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): EbEventConnectorConnectionDescriptionApiGwParams | undefined; set internalValue(value: EbEventConnectorConnectionDescriptionApiGwParams | undefined); private _method?; get method(): string; set method(value: string); get methodInput(): string; private _protocol?; get protocol(): string; set protocol(value: string); get protocolInput(): string; } export interface EbEventConnectorConnectionDescriptionCkafkaParams { /** * kafka offset. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eb_event_connector#offset EbEventConnector#offset} */ readonly offset: string; /** * ckafka topic. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eb_event_connector#topic_name EbEventConnector#topic_name} */ readonly topicName: string; } export declare function ebEventConnectorConnectionDescriptionCkafkaParamsToTerraform(struct?: EbEventConnectorConnectionDescriptionCkafkaParamsOutputReference | EbEventConnectorConnectionDescriptionCkafkaParams): any; export declare function ebEventConnectorConnectionDescriptionCkafkaParamsToHclTerraform(struct?: EbEventConnectorConnectionDescriptionCkafkaParamsOutputReference | EbEventConnectorConnectionDescriptionCkafkaParams): any; export declare class EbEventConnectorConnectionDescriptionCkafkaParamsOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): EbEventConnectorConnectionDescriptionCkafkaParams | undefined; set internalValue(value: EbEventConnectorConnectionDescriptionCkafkaParams | undefined); private _offset?; get offset(): string; set offset(value: string); get offsetInput(): string; private _topicName?; get topicName(): string; set topicName(value: string); get topicNameInput(): string; } export interface EbEventConnectorConnectionDescription { /** * Resource qcs six-segment style, more reference [resource six-segment style](https://cloud.tencent.com/document/product/598/10606). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eb_event_connector#resource_description EbEventConnector#resource_description} */ readonly resourceDescription: string; /** * api_gw_params block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eb_event_connector#api_gw_params EbEventConnector#api_gw_params} */ readonly apiGwParams?: EbEventConnectorConnectionDescriptionApiGwParams; /** * ckafka_params block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eb_event_connector#ckafka_params EbEventConnector#ckafka_params} */ readonly ckafkaParams?: EbEventConnectorConnectionDescriptionCkafkaParams; } export declare function ebEventConnectorConnectionDescriptionToTerraform(struct?: EbEventConnectorConnectionDescriptionOutputReference | EbEventConnectorConnectionDescription): any; export declare function ebEventConnectorConnectionDescriptionToHclTerraform(struct?: EbEventConnectorConnectionDescriptionOutputReference | EbEventConnectorConnectionDescription): any; export declare class EbEventConnectorConnectionDescriptionOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): EbEventConnectorConnectionDescription | undefined; set internalValue(value: EbEventConnectorConnectionDescription | undefined); private _resourceDescription?; get resourceDescription(): string; set resourceDescription(value: string); get resourceDescriptionInput(): string; private _apiGwParams; get apiGwParams(): EbEventConnectorConnectionDescriptionApiGwParamsOutputReference; putApiGwParams(value: EbEventConnectorConnectionDescriptionApiGwParams): void; resetApiGwParams(): void; get apiGwParamsInput(): EbEventConnectorConnectionDescriptionApiGwParams; private _ckafkaParams; get ckafkaParams(): EbEventConnectorConnectionDescriptionCkafkaParamsOutputReference; putCkafkaParams(value: EbEventConnectorConnectionDescriptionCkafkaParams): void; resetCkafkaParams(): void; get ckafkaParamsInput(): EbEventConnectorConnectionDescriptionCkafkaParams; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eb_event_connector tencentcloud_eb_event_connector} */ export declare class EbEventConnector extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_eb_event_connector"; /** * Generates CDKTF code for importing a EbEventConnector 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 EbEventConnector to import * @param importFromId The id of the existing EbEventConnector that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eb_event_connector#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the EbEventConnector 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/eb_event_connector tencentcloud_eb_event_connector} 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 EbEventConnectorConfig */ constructor(scope: Construct, id: string, config: EbEventConnectorConfig); private _connectionName?; get connectionName(): string; set connectionName(value: string); get connectionNameInput(): string; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _enable?; get enable(): boolean | cdktf.IResolvable; set enable(value: boolean | cdktf.IResolvable); resetEnable(): void; get enableInput(): any; private _eventBusId?; get eventBusId(): string; set eventBusId(value: string); get eventBusIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _type?; get type(): string; set type(value: string); resetType(): void; get typeInput(): string; private _connectionDescription; get connectionDescription(): EbEventConnectorConnectionDescriptionOutputReference; putConnectionDescription(value: EbEventConnectorConnectionDescription): void; get connectionDescriptionInput(): EbEventConnectorConnectionDescription; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }