Skip to main content

Initializer

import cdktn

cdktn.TerraformOutputConfig(
  value: typing.Any,
  depends_on: typing.List[ITerraformDependable] = None,
  description: str = None,
  precondition: Precondition = None,
  sensitive: bool = None,
  static_id: bool = None
)

Properties

NameTypeDescription
valuetyping.AnyNo description.
depends_ontyping.List[ITerraformDependable]No description.
descriptionstrNo description.
preconditionPreconditionNo description.
sensitiveboolNo description.
static_idboolIf set to true the synthesized Terraform Output will be named after the id passed to the constructor instead of the default (TerraformOutput.friendlyUniqueId).

valueRequired

value: typing.Any
  • Type: typing.Any

depends_onOptional

depends_on: typing.List[ITerraformDependable]

descriptionOptional

description: str
  • Type: str

preconditionOptional

precondition: Precondition

sensitiveOptional

sensitive: bool
  • Type: bool

static_idOptional

static_id: bool
  • Type: bool
  • Default: false
If set to true the synthesized Terraform Output will be named after the id passed to the constructor instead of the default (TerraformOutput.friendlyUniqueId).