Class: Aws::SageMaker::Types::DockerSettings
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::DockerSettings
 
 
- 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
- 
  
    
      #enable_docker_access  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether the domain can access Docker.
 - 
  
    
      #vpc_only_trusted_accounts  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of Amazon Web Services accounts that are trusted when the domain is created in VPC-only mode.
 
Instance Attribute Details
#enable_docker_access ⇒ String
Indicates whether the domain can access Docker.
      19827 19828 19829 19830 19831 19832  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 19827 class DockerSettings < Struct.new( :enable_docker_access, :vpc_only_trusted_accounts) SENSITIVE = [] include Aws::Structure end  | 
  
#vpc_only_trusted_accounts ⇒ Array<String>
The list of Amazon Web Services accounts that are trusted when the domain is created in VPC-only mode.
      19827 19828 19829 19830 19831 19832  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 19827 class DockerSettings < Struct.new( :enable_docker_access, :vpc_only_trusted_accounts) SENSITIVE = [] include Aws::Structure end  |