Class: Aws::SageMaker::Types::DockerSettings

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

Overview

A collection of settings that configure the domain’s Docker interaction.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enable_docker_accessString

Indicates whether the domain can access Docker.

Returns:

  • (String)


17656
17657
17658
17659
17660
17661
# File 'lib/aws-sdk-sagemaker/types.rb', line 17656

class DockerSettings < Struct.new(
  :enable_docker_access,
  :vpc_only_trusted_accounts)
  SENSITIVE = []
  include Aws::Structure
end

#vpc_only_trusted_accountsArray<String>

The list of Amazon Web Services accounts that are trusted when the domain is created in VPC-only mode.

Returns:

  • (Array<String>)


17656
17657
17658
17659
17660
17661
# File 'lib/aws-sdk-sagemaker/types.rb', line 17656

class DockerSettings < Struct.new(
  :enable_docker_access,
  :vpc_only_trusted_accounts)
  SENSITIVE = []
  include Aws::Structure
end