Class: Aws::SageMaker::Types::AppSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::AppSpecification
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass AppSpecification data as a hash:
{
image_uri: "ImageUri", # required
container_entrypoint: ["ContainerEntrypointString"],
container_arguments: ["ContainerArgument"],
}
Configuration to run a processing job in a specified container image.
Instance Attribute Summary collapse
-
#container_arguments ⇒ Array<String>
The arguments for a container used to run a processing job.
-
#container_entrypoint ⇒ Array<String>
The entrypoint for a container used to run a processing job.
-
#image_uri ⇒ String
The container image to be run by the processing job.
Instance Attribute Details
#container_arguments ⇒ Array<String>
The arguments for a container used to run a processing job.
811 812 813 814 815 816 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 811 class AppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments) include Aws::Structure end |
#container_entrypoint ⇒ Array<String>
The entrypoint for a container used to run a processing job.
811 812 813 814 815 816 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 811 class AppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments) include Aws::Structure end |
#image_uri ⇒ String
The container image to be run by the processing job.
811 812 813 814 815 816 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 811 class AppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments) include Aws::Structure end |