Class: Aws::Imagebuilder::Types::SystemsManagerAgent
- Inherits:
-
Struct
- Object
- Struct
- Aws::Imagebuilder::Types::SystemsManagerAgent
- Defined in:
- gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb
Overview
Contains settings for the Systems Manager agent on your build instance.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#uninstall_after_build ⇒ Boolean
Controls whether the Systems Manager agent is removed from your final build image, prior to creating the new AMI.
Instance Attribute Details
#uninstall_after_build ⇒ Boolean
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. default value is false.
The default behavior of uninstallAfterBuild is to remove the SSM Agent if it was installed by EC2 Image Builder
8029 8030 8031 8032 8033 |
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 8029 class SystemsManagerAgent < Struct.new( :uninstall_after_build) SENSITIVE = [] include Aws::Structure end |