import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface LiveSourceConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/spring-media/awsmt/2.5.1/docs/resources/live_source#http_package_configurations LiveSource#http_package_configurations} */ readonly httpPackageConfigurations: LiveSourceHttpPackageConfigurations[] | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/spring-media/awsmt/2.5.1/docs/resources/live_source#name LiveSource#name} */ readonly name: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/spring-media/awsmt/2.5.1/docs/resources/live_source#source_location_name LiveSource#source_location_name} */ readonly sourceLocationName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/spring-media/awsmt/2.5.1/docs/resources/live_source#tags LiveSource#tags} */ readonly tags?: { [key: string]: string; }; } export interface LiveSourceHttpPackageConfigurations { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/spring-media/awsmt/2.5.1/docs/resources/live_source#path LiveSource#path} */ readonly path: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/spring-media/awsmt/2.5.1/docs/resources/live_source#source_group LiveSource#source_group} */ readonly sourceGroup: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/spring-media/awsmt/2.5.1/docs/resources/live_source#type LiveSource#type} */ readonly type: string; } export declare function liveSourceHttpPackageConfigurationsToTerraform(struct?: LiveSourceHttpPackageConfigurations | cdktf.IResolvable): any; export declare function liveSourceHttpPackageConfigurationsToHclTerraform(struct?: LiveSourceHttpPackageConfigurations | cdktf.IResolvable): any; export declare class LiveSourceHttpPackageConfigurationsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): LiveSourceHttpPackageConfigurations | cdktf.IResolvable | undefined; set internalValue(value: LiveSourceHttpPackageConfigurations | cdktf.IResolvable | undefined); private _path?; get path(): string; set path(value: string); get pathInput(): string; private _sourceGroup?; get sourceGroup(): string; set sourceGroup(value: string); get sourceGroupInput(): string; private _type?; get type(): string; set type(value: string); get typeInput(): string; } export declare class LiveSourceHttpPackageConfigurationsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: LiveSourceHttpPackageConfigurations[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): LiveSourceHttpPackageConfigurationsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/spring-media/awsmt/2.5.1/docs/resources/live_source awsmt_live_source} */ export declare class LiveSource extends cdktf.TerraformResource { static readonly tfResourceType = "awsmt_live_source"; /** * Generates CDKTF code for importing a LiveSource 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 LiveSource to import * @param importFromId The id of the existing LiveSource that should be imported. Refer to the {@link https://registry.terraform.io/providers/spring-media/awsmt/2.5.1/docs/resources/live_source#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the LiveSource 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/spring-media/awsmt/2.5.1/docs/resources/live_source awsmt_live_source} 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 LiveSourceConfig */ constructor(scope: Construct, id: string, config: LiveSourceConfig); get arn(): any; get creationTime(): any; private _httpPackageConfigurations; get httpPackageConfigurations(): LiveSourceHttpPackageConfigurationsList; putHttpPackageConfigurations(value: LiveSourceHttpPackageConfigurations[] | cdktf.IResolvable): void; get httpPackageConfigurationsInput(): any; get id(): any; get lastModifiedTime(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _sourceLocationName?; get sourceLocationName(): string; set sourceLocationName(value: string); get sourceLocationNameInput(): string; private _tags?; get tags(): { [key: string]: string; }; set tags(value: { [key: string]: string; }); resetTags(): void; get tagsInput(): { [key: string]: string; }; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }