UNPKG

@cdktf/provider-aws

Version:

Prebuilt aws Provider for Terraform CDK (cdktf)

145 lines (144 loc) 6.71 kB
/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface AppconfigDeploymentConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/resources/appconfig_deployment#application_id AppconfigDeployment#application_id} */ readonly applicationId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/resources/appconfig_deployment#configuration_profile_id AppconfigDeployment#configuration_profile_id} */ readonly configurationProfileId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/resources/appconfig_deployment#configuration_version AppconfigDeployment#configuration_version} */ readonly configurationVersion: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/resources/appconfig_deployment#deployment_strategy_id AppconfigDeployment#deployment_strategy_id} */ readonly deploymentStrategyId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/resources/appconfig_deployment#description AppconfigDeployment#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/resources/appconfig_deployment#environment_id AppconfigDeployment#environment_id} */ readonly environmentId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/resources/appconfig_deployment#id AppconfigDeployment#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; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/resources/appconfig_deployment#kms_key_identifier AppconfigDeployment#kms_key_identifier} */ readonly kmsKeyIdentifier?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/resources/appconfig_deployment#tags AppconfigDeployment#tags} */ readonly tags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/resources/appconfig_deployment#tags_all AppconfigDeployment#tags_all} */ readonly tagsAll?: { [key: string]: string; }; } /** * Represents a {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/resources/appconfig_deployment aws_appconfig_deployment} */ export declare class AppconfigDeployment extends cdktf.TerraformResource { static readonly tfResourceType = "aws_appconfig_deployment"; /** * Generates CDKTF code for importing a AppconfigDeployment 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 AppconfigDeployment to import * @param importFromId The id of the existing AppconfigDeployment that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/aws/5.84.0/docs/resources/appconfig_deployment#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the AppconfigDeployment 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/5.84.0/docs/resources/appconfig_deployment aws_appconfig_deployment} 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 AppconfigDeploymentConfig */ constructor(scope: Construct, id: string, config: AppconfigDeploymentConfig); private _applicationId?; get applicationId(): string; set applicationId(value: string); get applicationIdInput(): string | undefined; get arn(): string; private _configurationProfileId?; get configurationProfileId(): string; set configurationProfileId(value: string); get configurationProfileIdInput(): string | undefined; private _configurationVersion?; get configurationVersion(): string; set configurationVersion(value: string); get configurationVersionInput(): string | undefined; get deploymentNumber(): number; private _deploymentStrategyId?; get deploymentStrategyId(): string; set deploymentStrategyId(value: string); get deploymentStrategyIdInput(): string | undefined; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string | undefined; private _environmentId?; get environmentId(): string; set environmentId(value: string); get environmentIdInput(): string | undefined; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; get kmsKeyArn(): string; private _kmsKeyIdentifier?; get kmsKeyIdentifier(): string; set kmsKeyIdentifier(value: string); resetKmsKeyIdentifier(): void; get kmsKeyIdentifierInput(): string | undefined; get state(): string; private _tags?; get tags(): { [key: string]: string; }; set tags(value: { [key: string]: string; }); resetTags(): void; get tagsInput(): { [key: string]: string; } | undefined; private _tagsAll?; get tagsAll(): { [key: string]: string; }; set tagsAll(value: { [key: string]: string; }); resetTagsAll(): void; get tagsAllInput(): { [key: string]: string; } | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }