interface CfnEnabledBaselineMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ControlTower.CfnEnabledBaselineMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscontroltower#CfnEnabledBaselineMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.controltower.CfnEnabledBaselineMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_controltower.CfnEnabledBaselineMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_controltower » CfnEnabledBaselineMixinProps |
Properties for CfnEnabledBaselinePropsMixin.
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/cfn-property-mixins';
declare const value: any;
const cfnEnabledBaselineMixinProps: controltower.CfnEnabledBaselineMixinProps = {
baselineIdentifier: 'baselineIdentifier',
baselineVersion: 'baselineVersion',
parameters: [{
key: 'key',
value: value,
}],
tags: [{
key: 'key',
value: 'value',
}],
targetIdentifier: 'targetIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| baseline | string | The specific Baseline enabled as part of the EnabledBaseline resource. |
| baseline | string | The enabled version of the Baseline . |
| parameters? | IResolvable | (IResolvable | Parameter)[] | Shows the parameters that are applied when enabling this Baseline . |
| tags? | Cfn[] | |
| target | string | The target on which to enable the Baseline . |
baselineIdentifier?
Type:
string
(optional)
The specific Baseline enabled as part of the EnabledBaseline resource.
baselineVersion?
Type:
string
(optional)
The enabled version of the Baseline .
parameters?
Type:
IResolvable | (IResolvable | Parameter)[]
(optional)
Shows the parameters that are applied when enabling this Baseline .
tags?
Type:
Cfn[]
(optional)
targetIdentifier?
Type:
string
(optional)
The target on which to enable the Baseline .

.NET
Go
Java
Python
TypeScript