Interface AdditionalInstanceConfiguration.Builder

  • Method Details

    • systemsManagerAgent

      AdditionalInstanceConfiguration.Builder systemsManagerAgent(SystemsManagerAgent systemsManagerAgent)

      The Systems Manager agent settings for your build instance. This setting applies to Linux and macOS build instances only. Requests that set it for a recipe with a Windows base image are rejected.

      Parameters:
      systemsManagerAgent - The Systems Manager agent settings for your build instance. This setting applies to Linux and macOS build instances only. Requests that set it for a recipe with a Windows base image are rejected.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • systemsManagerAgent

      default AdditionalInstanceConfiguration.Builder systemsManagerAgent(Consumer<SystemsManagerAgent.Builder> systemsManagerAgent)

      The Systems Manager agent settings for your build instance. This setting applies to Linux and macOS build instances only. Requests that set it for a recipe with a Windows base image are rejected.

      This is a convenience method that creates an instance of the SystemsManagerAgent.Builder avoiding the need to create one manually via SystemsManagerAgent.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to systemsManagerAgent(SystemsManagerAgent).

      Parameters:
      systemsManagerAgent - a consumer that will call methods on SystemsManagerAgent.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • userDataOverride

      AdditionalInstanceConfiguration.Builder userDataOverride(String userDataOverride)

      Use this property to provide commands or a command script to run when you launch your build instance.

      The userDataOverride property replaces any commands that Image Builder might have added to ensure that Systems Manager is installed on your Linux build instance. If you override the user data, make sure that you add commands to install Systems Manager, if it is not pre-installed on your base image.

      The user data is always base 64 encoded. For example, the following commands are encoded as IyEvYmluL2Jhc2gKbWtkaXIgLXAgL3Zhci9iYi8KdG91Y2ggL3Zhcg==:

      #!/bin/bash

      mkdir -p /var/bb/

      touch /var

      Parameters:
      userDataOverride - Use this property to provide commands or a command script to run when you launch your build instance.

      The userDataOverride property replaces any commands that Image Builder might have added to ensure that Systems Manager is installed on your Linux build instance. If you override the user data, make sure that you add commands to install Systems Manager, if it is not pre-installed on your base image.

      The user data is always base 64 encoded. For example, the following commands are encoded as IyEvYmluL2Jhc2gKbWtkaXIgLXAgL3Zhci9iYi8KdG91Y2ggL3Zhcg==:

      #!/bin/bash

      mkdir -p /var/bb/

      touch /var

      Returns:
      Returns a reference to this object so that method calls can be chained together.