Show / Hide Table of Contents

Class CfnEnabledBaselineProps

Properties for defining a CfnEnabledBaseline.

Inheritance
object
CfnEnabledBaselineProps
Implements
ICfnEnabledBaselineProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.ControlTower
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEnabledBaselineProps : ICfnEnabledBaselineProps
Syntax (vb)
Public Class CfnEnabledBaselineProps Implements ICfnEnabledBaselineProps
Remarks

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

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.ControlTower;

             var value;

             var cfnEnabledBaselineProps = new CfnEnabledBaselineProps {
                 BaselineIdentifier = "baselineIdentifier",
                 BaselineVersion = "baselineVersion",
                 TargetIdentifier = "targetIdentifier",

                 // the properties below are optional
                 Parameters = new [] { new ParameterProperty {
                     Key = "key",
                     Value = value
                 } },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnEnabledBaselineProps()

Properties for defining a CfnEnabledBaseline.

Properties

BaselineIdentifier

The specific Baseline enabled as part of the EnabledBaseline resource.

BaselineVersion

The enabled version of the Baseline .

Parameters

Shows the parameters that are applied when enabling this Baseline .

Tags

Properties for defining a CfnEnabledBaseline.

TargetIdentifier

The target on which to enable the Baseline .

Constructors

CfnEnabledBaselineProps()

Properties for defining a CfnEnabledBaseline.

public CfnEnabledBaselineProps()
Remarks

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

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.ControlTower;

             var value;

             var cfnEnabledBaselineProps = new CfnEnabledBaselineProps {
                 BaselineIdentifier = "baselineIdentifier",
                 BaselineVersion = "baselineVersion",
                 TargetIdentifier = "targetIdentifier",

                 // the properties below are optional
                 Parameters = new [] { new ParameterProperty {
                     Key = "key",
                     Value = value
                 } },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

BaselineIdentifier

The specific Baseline enabled as part of the EnabledBaseline resource.

public string BaselineIdentifier { get; set; }
Property Value

string

Remarks

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

BaselineVersion

The enabled version of the Baseline .

public string BaselineVersion { get; set; }
Property Value

string

Remarks

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

Parameters

Shows the parameters that are applied when enabling this Baseline .

public object? Parameters { get; set; }
Property Value

object

Remarks

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

Tags

Properties for defining a CfnEnabledBaseline.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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

TargetIdentifier

The target on which to enable the Baseline .

public string TargetIdentifier { get; set; }
Property Value

string

Remarks

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

Implements

ICfnEnabledBaselineProps
Back to top Generated by DocFX