Interface ImageRecipe.Builder

    • Method Detail

      • arn

        ImageRecipe.Builder arn​(String arn)

        The Amazon Resource Name (ARN) of the image recipe.

        Parameters:
        arn - The Amazon Resource Name (ARN) of the image recipe.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • type

        ImageRecipe.Builder type​(String type)

        Specifies which type of image is created by the recipe - an AMI or a container image.

        Parameters:
        type - Specifies which type of image is created by the recipe - an AMI or a container image.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        ImageType, ImageType
      • type

        ImageRecipe.Builder type​(ImageType type)

        Specifies which type of image is created by the recipe - an AMI or a container image.

        Parameters:
        type - Specifies which type of image is created by the recipe - an AMI or a container image.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        ImageType, ImageType
      • name

        ImageRecipe.Builder name​(String name)

        The name of the image recipe.

        Parameters:
        name - The name of the image recipe.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • description

        ImageRecipe.Builder description​(String description)

        The description of the image recipe.

        Parameters:
        description - The description of the image recipe.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • platform

        ImageRecipe.Builder platform​(String platform)

        The platform of the image recipe.

        Parameters:
        platform - The platform of the image recipe.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        Platform, Platform
      • platform

        ImageRecipe.Builder platform​(Platform platform)

        The platform of the image recipe.

        Parameters:
        platform - The platform of the image recipe.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        Platform, Platform
      • owner

        ImageRecipe.Builder owner​(String owner)

        The owner of the image recipe.

        Parameters:
        owner - The owner of the image recipe.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • version

        ImageRecipe.Builder version​(String version)

        The version of the image recipe.

        Parameters:
        version - The version of the image recipe.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • components

        ImageRecipe.Builder components​(Collection<ComponentConfiguration> components)

        The components that are included in the image recipe. Recipes require a minimum of one build component, and can have a maximum of 20 build and test components in any combination.

        Parameters:
        components - The components that are included in the image recipe. Recipes require a minimum of one build component, and can have a maximum of 20 build and test components in any combination.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • components

        ImageRecipe.Builder components​(ComponentConfiguration... components)

        The components that are included in the image recipe. Recipes require a minimum of one build component, and can have a maximum of 20 build and test components in any combination.

        Parameters:
        components - The components that are included in the image recipe. Recipes require a minimum of one build component, and can have a maximum of 20 build and test components in any combination.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • parentImage

        ImageRecipe.Builder parentImage​(String parentImage)

        The base image of the image recipe.

        Parameters:
        parentImage - The base image of the image recipe.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • blockDeviceMappings

        ImageRecipe.Builder blockDeviceMappings​(Collection<InstanceBlockDeviceMapping> blockDeviceMappings)

        The block device mappings to apply when creating images from this recipe.

        Parameters:
        blockDeviceMappings - The block device mappings to apply when creating images from this recipe.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • blockDeviceMappings

        ImageRecipe.Builder blockDeviceMappings​(InstanceBlockDeviceMapping... blockDeviceMappings)

        The block device mappings to apply when creating images from this recipe.

        Parameters:
        blockDeviceMappings - The block device mappings to apply when creating images from this recipe.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • dateCreated

        ImageRecipe.Builder dateCreated​(String dateCreated)

        The date on which this image recipe was created.

        Parameters:
        dateCreated - The date on which this image recipe was created.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        ImageRecipe.Builder tags​(Map<String,​String> tags)

        The tags of the image recipe.

        Parameters:
        tags - The tags of the image recipe.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • workingDirectory

        ImageRecipe.Builder workingDirectory​(String workingDirectory)

        The working directory to be used during build and test workflows.

        Parameters:
        workingDirectory - The working directory to be used during build and test workflows.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • additionalInstanceConfiguration

        ImageRecipe.Builder additionalInstanceConfiguration​(AdditionalInstanceConfiguration additionalInstanceConfiguration)

        Before you create a new AMI, Image Builder launches temporary Amazon EC2 instances to build and test your image configuration. Instance configuration adds a layer of control over those instances. You can define settings and add scripts to run when an instance is launched from your AMI.

        Parameters:
        additionalInstanceConfiguration - Before you create a new AMI, Image Builder launches temporary Amazon EC2 instances to build and test your image configuration. Instance configuration adds a layer of control over those instances. You can define settings and add scripts to run when an instance is launched from your AMI.
        Returns:
        Returns a reference to this object so that method calls can be chained together.