Method: Aws::SageMaker::Types::DescribeNotebookInstanceOutput#root_access
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
#root_access ⇒ String
Whether root access is enabled or disabled for users of the notebook instance.
<note markdown=“1”> Lifecycle configurations need root access to be able to set up a notebook instance. Because of this, lifecycle configurations associated with a notebook instance always run with root access even if you disable root access for users.
</note>
20453 20454 20455 20456 20457 20458 20459 20460 20461 20462 20463 20464 20465 20466 20467 20468 20469 20470 20471 20472 20473 20474 20475 20476 20477 20478 20479 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 20453 class DescribeNotebookInstanceOutput < Struct.new( :notebook_instance_arn, :notebook_instance_name, :notebook_instance_status, :failure_reason, :url, :instance_type, :ip_address_type, :subnet_id, :security_groups, :role_arn, :kms_key_id, :network_interface_id, :last_modified_time, :creation_time, :notebook_instance_lifecycle_config_name, :direct_internet_access, :volume_size_in_gb, :accelerator_types, :default_code_repository, :additional_code_repositories, :root_access, :platform_identifier, :instance_metadata_service_configuration) SENSITIVE = [] include Aws::Structure end |