Interface CfnEnabledBaselineProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEnabledBaselineProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:06.671Z")
@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
Modifier and TypeMethodDescriptionbuilder()The specificBaselineenabled as part of theEnabledBaselineresource.The enabled version of theBaseline.default ObjectParameters that are applied when enabling thisBaseline.getTags()Tags associated with input toEnableBaseline.The target on which to enable theBaseline.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
Parameters that are applied when enabling thisBaseline.These parameters configure the behavior of the baseline.
- See Also:
-
getTags
Tags associated with input toEnableBaseline.- See Also:
-
builder
- Returns:
- a
CfnEnabledBaselineProps.BuilderofCfnEnabledBaselineProps
-