SystemsManagerAgent

Contains settings for the Systems Manager agent on your build instance.

Amazon Web ServicesAutomationContainer ImagesEC2Image BuildingVirtual Machine Images

Properties

Name Type Description
uninstallAfterBuild object
View JSON Schema on GitHub

JSON Schema

ec2-image-builder-systems-manager-agent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ec2-image-builder/refs/heads/main/json-schema/ec2-image-builder-systems-manager-agent-schema.json",
  "title": "SystemsManagerAgent",
  "description": "Contains settings for the Systems Manager agent on your build instance.",
  "type": "object",
  "properties": {
    "uninstallAfterBuild": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullableBoolean"
        },
        {
          "description": "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."
        }
      ]
    }
  }
}