CfnTagOptionProps

class aws_cdk.aws_servicecatalog.CfnTagOptionProps(*, key, value, active=None)

Bases: object

Properties for defining a CfnTagOption.

Parameters:
  • key (str) – The TagOption key.

  • value (str) – The TagOption value.

  • active (Union[bool, IResolvable, None]) – The TagOption active state.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_servicecatalog as servicecatalog

cfn_tag_option_props = servicecatalog.CfnTagOptionProps(
    key="key",
    value="value",

    # the properties below are optional
    active=False
)

Attributes

active

The TagOption active state.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-active

key

The TagOption key.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-key

value

The TagOption value.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoption.html#cfn-servicecatalog-tagoption-value