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
Configuration to run a processing job in a specified container image.
Constant Summary collapse
- SENSITIVE =
[]
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.
1430 1431 1432 1433 1434 1435 1436 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1430 class AppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments) SENSITIVE = [] include Aws::Structure end |
#container_entrypoint ⇒ Array<String>
The entrypoint for a container used to run a processing job.
1430 1431 1432 1433 1434 1435 1436 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1430 class AppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments) SENSITIVE = [] include Aws::Structure end |
#image_uri ⇒ String
The container image to be run by the processing job.
1430 1431 1432 1433 1434 1435 1436 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1430 class AppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments) SENSITIVE = [] include Aws::Structure end |