CfnEnabledBaselineProps

class aws_cdk.aws_controltower.CfnEnabledBaselineProps(*, baseline_identifier, baseline_version, target_identifier, parameters=None, tags=None)

Bases: object

Properties for defining a CfnEnabledBaseline.

Parameters:
  • baseline_identifier (str) – The specific Baseline enabled as part of the EnabledBaseline resource.

  • baseline_version (str) – The enabled version of the Baseline .

  • target_identifier (str) – The target on which to enable the Baseline .

  • parameters (Union[IResolvable, Sequence[Union[IResolvable, ParameterProperty, Dict[str, Any]]], None]) – Parameters that are applied when enabling this Baseline . These parameters configure the behavior of the baseline.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Tags associated with input to EnableBaseline .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledbaseline.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_controltower as controltower

# value: Any

cfn_enabled_baseline_props = controltower.CfnEnabledBaselineProps(
    baseline_identifier="baselineIdentifier",
    baseline_version="baselineVersion",
    target_identifier="targetIdentifier",

    # the properties below are optional
    parameters=[controltower.CfnEnabledBaseline.ParameterProperty(
        key="key",
        value=value
    )],
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

baseline_identifier

The specific Baseline enabled as part of the EnabledBaseline resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledbaseline.html#cfn-controltower-enabledbaseline-baselineidentifier

baseline_version

The enabled version of the Baseline .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledbaseline.html#cfn-controltower-enabledbaseline-baselineversion

parameters

Parameters that are applied when enabling this Baseline .

These parameters configure the behavior of the baseline.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledbaseline.html#cfn-controltower-enabledbaseline-parameters

tags

Tags associated with input to EnableBaseline .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledbaseline.html#cfn-controltower-enabledbaseline-tags

target_identifier

The target on which to enable the Baseline .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledbaseline.html#cfn-controltower-enabledbaseline-targetidentifier