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.
-
#rootless_docker ⇒ String
Indicates whether to use rootless 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.
21492 21493 21494 21495 21496 21497 21498 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 21492 class DockerSettings < Struct.new( :enable_docker_access, :vpc_only_trusted_accounts, :rootless_docker) SENSITIVE = [] include Aws::Structure end |
#rootless_docker ⇒ String
Indicates whether to use rootless Docker. Default value is ‘DISABLED`.
21492 21493 21494 21495 21496 21497 21498 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 21492 class DockerSettings < Struct.new( :enable_docker_access, :vpc_only_trusted_accounts, :rootless_docker) 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.
21492 21493 21494 21495 21496 21497 21498 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 21492 class DockerSettings < Struct.new( :enable_docker_access, :vpc_only_trusted_accounts, :rootless_docker) SENSITIVE = [] include Aws::Structure end |