Interface CfnImageRecipe.SystemsManagerAgentProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnImageRecipe.SystemsManagerAgentProperty.Jsii$Proxy
- Enclosing class:
CfnImageRecipe
@Stability(Stable)
public static interface CfnImageRecipe.SystemsManagerAgentProperty
extends software.amazon.jsii.JsiiSerializable
Contains settings for the Systems Manager agent on your build instance.
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.imagebuilder.*; SystemsManagerAgentProperty systemsManagerAgentProperty = SystemsManagerAgentProperty.builder() .uninstallAfterBuild(false) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnImageRecipe.SystemsManagerAgentProperty
static final class
An implementation forCfnImageRecipe.SystemsManagerAgentProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getUninstallAfterBuild
Controls whether the Systems Manager agent is removed from your final build image, prior to creating the new AMI.If this is set to true, then the agent is removed from the final image. If it's set to false, then the agent is left in, so that it is included in the new AMI. The default value is false.
- See Also:
-
builder
-