Interface CfnEnabledBaselineProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEnabledBaselineProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:37.643Z")
@Stability(Stable)
public interface CfnEnabledBaselineProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.controltower.*;
Object value;
CfnEnabledBaselineProps cfnEnabledBaselineProps = CfnEnabledBaselineProps.builder()
.baselineIdentifier("baselineIdentifier")
.baselineVersion("baselineVersion")
.targetIdentifier("targetIdentifier")
// the properties below are optional
.parameters(List.of(ParameterProperty.builder()
.key("key")
.value(value)
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEnabledBaselinePropsstatic final classAn implementation forCfnEnabledBaselineProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBaselineIdentifier
The specificBaselineenabled as part of theEnabledBaselineresource.- See Also:
-
getBaselineVersion
The enabled version of theBaseline.- See Also:
-
getTargetIdentifier
The target on which to enable theBaseline.- See Also:
-
getParameters
Shows the parameters that are applied when enabling thisBaseline.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnEnabledBaseline.ParameterProperty>- See Also:
-
getTags
- See Also:
-
builder
- Returns:
- a
CfnEnabledBaselineProps.BuilderofCfnEnabledBaselineProps
-