Class: Aws::Braket::Types::AlgorithmSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::Braket::Types::AlgorithmSpecification
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-braket/types.rb
Overview
Defines the Amazon Braket job to be created. Specifies the container image the job uses and the paths to the Python scripts used for entry and training.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#container_image ⇒ Types::ContainerImage
The container image used to create an Amazon Braket job.
-
#script_mode_config ⇒ Types::ScriptModeConfig
Configures the paths to the Python scripts used for entry and training.
Instance Attribute Details
#container_image ⇒ Types::ContainerImage
The container image used to create an Amazon Braket job.
41 42 43 44 45 46 |
# File 'lib/aws-sdk-braket/types.rb', line 41 class AlgorithmSpecification < Struct.new( :container_image, :script_mode_config) SENSITIVE = [] include Aws::Structure end |
#script_mode_config ⇒ Types::ScriptModeConfig
Configures the paths to the Python scripts used for entry and training.
41 42 43 44 45 46 |
# File 'lib/aws-sdk-braket/types.rb', line 41 class AlgorithmSpecification < Struct.new( :container_image, :script_mode_config) SENSITIVE = [] include Aws::Structure end |