import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CssSnapshotRuleAttachmentConfig extends cdktf.TerraformMetaArguments { /** * The streaming path is consistent with the AppName in the streaming and playback addresses. The default is live. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_snapshot_rule_attachment#app_name CssSnapshotRuleAttachment#app_name} */ readonly appName?: string; /** * Streaming domain name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_snapshot_rule_attachment#domain_name CssSnapshotRuleAttachment#domain_name} */ readonly domainName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_snapshot_rule_attachment#id CssSnapshotRuleAttachment#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; /** * Stream name. Note: If this parameter is set to a non empty string, the rule will only work on this streaming. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_snapshot_rule_attachment#stream_name CssSnapshotRuleAttachment#stream_name} */ readonly streamName?: string; /** * Template ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_snapshot_rule_attachment#template_id CssSnapshotRuleAttachment#template_id} */ readonly templateId: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_snapshot_rule_attachment tencentcloud_css_snapshot_rule_attachment} */ export declare class CssSnapshotRuleAttachment extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_css_snapshot_rule_attachment"; /** * Generates CDKTF code for importing a CssSnapshotRuleAttachment 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 CssSnapshotRuleAttachment to import * @param importFromId The id of the existing CssSnapshotRuleAttachment that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_snapshot_rule_attachment#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CssSnapshotRuleAttachment 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/css_snapshot_rule_attachment tencentcloud_css_snapshot_rule_attachment} 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 CssSnapshotRuleAttachmentConfig */ constructor(scope: Construct, id: string, config: CssSnapshotRuleAttachmentConfig); private _appName?; get appName(): string; set appName(value: string); resetAppName(): void; get appNameInput(): string; private _domainName?; get domainName(): string; set domainName(value: string); get domainNameInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _streamName?; get streamName(): string; set streamName(value: string); resetStreamName(): void; get streamNameInput(): string; private _templateId?; get templateId(): number; set templateId(value: number); get templateIdInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }