Class: Aws::SageMaker::Types::ContainerConfig

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

The configuration used to run the application image container.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#container_argumentsArray<String>

The arguments for the container when you’re running the application.

Returns:

  • (Array<String>)


4535
4536
4537
4538
4539
4540
4541
# File 'lib/aws-sdk-sagemaker/types.rb', line 4535

class ContainerConfig < Struct.new(
  :container_arguments,
  :container_entrypoint,
  :container_environment_variables)
  SENSITIVE = []
  include Aws::Structure
end

#container_entrypointArray<String>

The entrypoint used to run the application in the container.

Returns:

  • (Array<String>)


4535
4536
4537
4538
4539
4540
4541
# File 'lib/aws-sdk-sagemaker/types.rb', line 4535

class ContainerConfig < Struct.new(
  :container_arguments,
  :container_entrypoint,
  :container_environment_variables)
  SENSITIVE = []
  include Aws::Structure
end

#container_environment_variablesHash<String,String>

The environment variables to set in the container

Returns:

  • (Hash<String,String>)


4535
4536
4537
4538
4539
4540
4541
# File 'lib/aws-sdk-sagemaker/types.rb', line 4535

class ContainerConfig < Struct.new(
  :container_arguments,
  :container_entrypoint,
  :container_environment_variables)
  SENSITIVE = []
  include Aws::Structure
end