Class: Aws::SageMaker::Types::ContainerConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ContainerConfig
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
The configuration used to run the application image container.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#container_arguments ⇒ Array<String>
The arguments for the container when you're running the application.
-
#container_entrypoint ⇒ Array<String>
The entrypoint used to run the application in the container.
-
#container_environment_variables ⇒ Hash<String,String>
The environment variables to set in the container.
Instance Attribute Details
#container_arguments ⇒ Array<String>
The arguments for the container when you're running the application.
4855 4856 4857 4858 4859 4860 4861 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 4855 class ContainerConfig < Struct.new( :container_arguments, :container_entrypoint, :container_environment_variables) SENSITIVE = [] include Aws::Structure end |
#container_entrypoint ⇒ Array<String>
The entrypoint used to run the application in the container.
4855 4856 4857 4858 4859 4860 4861 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 4855 class ContainerConfig < Struct.new( :container_arguments, :container_entrypoint, :container_environment_variables) SENSITIVE = [] include Aws::Structure end |
#container_environment_variables ⇒ Hash<String,String>
The environment variables to set in the container
4855 4856 4857 4858 4859 4860 4861 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 4855 class ContainerConfig < Struct.new( :container_arguments, :container_entrypoint, :container_environment_variables) SENSITIVE = [] include Aws::Structure end |