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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/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)


17664
17665
17666
17667
17668
17669
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 17664

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>)


17664
17665
17666
17667
17668
17669
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 17664

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