UNPKG

@cdktf/provider-aws

Version:

Prebuilt aws Provider for Terraform CDK (cdktf)

83 lines (82 loc) 4.37 kB
/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TransferWebAppCustomizationConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/transfer_web_app_customization#favicon_file TransferWebAppCustomization#favicon_file} */ readonly faviconFile?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/transfer_web_app_customization#logo_file TransferWebAppCustomization#logo_file} */ readonly logoFile?: string; /** * Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the [provider configuration](https://registry.terraform.io/providers/hashicorp/aws/latest/docs#aws-configuration-reference). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/transfer_web_app_customization#region TransferWebAppCustomization#region} */ readonly region?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/transfer_web_app_customization#title TransferWebAppCustomization#title} */ readonly title?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/transfer_web_app_customization#web_app_id TransferWebAppCustomization#web_app_id} */ readonly webAppId: string; } /** * Represents a {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/transfer_web_app_customization aws_transfer_web_app_customization} */ export declare class TransferWebAppCustomization extends cdktf.TerraformResource { static readonly tfResourceType = "aws_transfer_web_app_customization"; /** * Generates CDKTF code for importing a TransferWebAppCustomization resource upon running "cdktf plan <stack-name>" * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the TransferWebAppCustomization to import * @param importFromId The id of the existing TransferWebAppCustomization that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/transfer_web_app_customization#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TransferWebAppCustomization to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource; /** * Create a new {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/transfer_web_app_customization aws_transfer_web_app_customization} 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 TransferWebAppCustomizationConfig */ constructor(scope: Construct, id: string, config: TransferWebAppCustomizationConfig); private _faviconFile?; get faviconFile(): string; set faviconFile(value: string); resetFaviconFile(): void; get faviconFileInput(): string | undefined; private _logoFile?; get logoFile(): string; set logoFile(value: string); resetLogoFile(): void; get logoFileInput(): string | undefined; private _region?; get region(): string; set region(value: string); resetRegion(): void; get regionInput(): string | undefined; private _title?; get title(): string; set title(value: string); resetTitle(): void; get titleInput(): string | undefined; private _webAppId?; get webAppId(): string; set webAppId(value: string); get webAppIdInput(): string | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }