You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SageMaker::Types::AppSpecification

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing AppSpecification as input to an Aws::Client method, you can use a vanilla Hash:

{
  image_uri: "ImageUri", # required
  container_entrypoint: ["ContainerEntrypointString"],
  container_arguments: ["ContainerArgument"],
}

Configuration to run a processing job in a specified container image.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#container_argumentsArray<String>

The arguments for a container used to run a processing job.

Returns:

  • (Array<String>)

    The arguments for a container used to run a processing job.

#container_entrypointArray<String>

The entrypoint for a container used to run a processing job.

Returns:

  • (Array<String>)

    The entrypoint for a container used to run a processing job.

#image_uriString

The container image to be run by the processing job.

Returns:

  • (String)

    The container image to be run by the processing job.