interface CfnEnabledBaselineProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ControlTower.CfnEnabledBaselineProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscontroltower#CfnEnabledBaselineProps |
Java | software.amazon.awscdk.services.controltower.CfnEnabledBaselineProps |
Python | aws_cdk.aws_controltower.CfnEnabledBaselineProps |
TypeScript | aws-cdk-lib » aws_controltower » CfnEnabledBaselineProps |
Properties for defining a CfnEnabledBaseline.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_controltower as controltower } from 'aws-cdk-lib';
declare const value: any;
const cfnEnabledBaselineProps: controltower.CfnEnabledBaselineProps = {
baselineIdentifier: 'baselineIdentifier',
baselineVersion: 'baselineVersion',
targetIdentifier: 'targetIdentifier',
// the properties below are optional
parameters: [{
key: 'key',
value: value,
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| baseline | string | The specific Baseline enabled as part of the EnabledBaseline resource. |
| baseline | string | The enabled version of the Baseline . |
| target | string | The target on which to enable the Baseline . |
| parameters? | IResolvable | (IResolvable | Parameter)[] | Shows the parameters that are applied when enabling this Baseline . |
| tags? | Cfn[] |
baselineIdentifier
Type:
string
The specific Baseline enabled as part of the EnabledBaseline resource.
baselineVersion
Type:
string
The enabled version of the Baseline .
targetIdentifier
Type:
string
The target on which to enable the Baseline .
parameters?
Type:
IResolvable | (IResolvable | Parameter)[]
(optional)
Shows the parameters that are applied when enabling this Baseline .
tags?
Type:
Cfn[]
(optional)

.NET
Go
Java
Python
TypeScript