#[non_exhaustive]pub struct DescribeNotebookInstanceOutput { /* private fields */ }
Implementations§
source§impl DescribeNotebookInstanceOutput
impl DescribeNotebookInstanceOutput
sourcepub fn notebook_instance_arn(&self) -> Option<&str>
pub fn notebook_instance_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the notebook instance.
sourcepub fn notebook_instance_name(&self) -> Option<&str>
pub fn notebook_instance_name(&self) -> Option<&str>
The name of the SageMaker notebook instance.
sourcepub fn notebook_instance_status(&self) -> Option<&NotebookInstanceStatus>
pub fn notebook_instance_status(&self) -> Option<&NotebookInstanceStatus>
The status of the notebook instance.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
If status is Failed
, the reason it failed.
sourcepub fn url(&self) -> Option<&str>
pub fn url(&self) -> Option<&str>
The URL that you use to connect to the Jupyter notebook that is running in your notebook instance.
sourcepub fn instance_type(&self) -> Option<&InstanceType>
pub fn instance_type(&self) -> Option<&InstanceType>
The type of ML compute instance running on the notebook instance.
sourcepub fn security_groups(&self) -> Option<&[String]>
pub fn security_groups(&self) -> Option<&[String]>
The IDs of the VPC security groups.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the IAM role associated with the instance.
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
The Amazon Web Services KMS key ID SageMaker uses to encrypt data when storing it on the ML storage volume attached to the instance.
sourcepub fn network_interface_id(&self) -> Option<&str>
pub fn network_interface_id(&self) -> Option<&str>
The network interface IDs that SageMaker created at the time of creating the instance.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
A timestamp. Use this parameter to retrieve the time when the notebook instance was last modified.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
A timestamp. Use this parameter to return the time when the notebook instance was created
sourcepub fn notebook_instance_lifecycle_config_name(&self) -> Option<&str>
pub fn notebook_instance_lifecycle_config_name(&self) -> Option<&str>
Returns the name of a notebook instance lifecycle configuration.
For information about notebook instance lifestyle configurations, see Step 2.1: (Optional) Customize a Notebook Instance
sourcepub fn direct_internet_access(&self) -> Option<&DirectInternetAccess>
pub fn direct_internet_access(&self) -> Option<&DirectInternetAccess>
Describes whether SageMaker provides internet access to the notebook instance. If this value is set to Disabled, the notebook instance does not have internet access, and cannot connect to SageMaker training and endpoint services.
For more information, see Notebook Instances Are Internet-Enabled by Default.
sourcepub fn volume_size_in_gb(&self) -> Option<i32>
pub fn volume_size_in_gb(&self) -> Option<i32>
The size, in GB, of the ML storage volume attached to the notebook instance.
sourcepub fn accelerator_types(&self) -> Option<&[NotebookInstanceAcceleratorType]>
pub fn accelerator_types(&self) -> Option<&[NotebookInstanceAcceleratorType]>
A list of the Elastic Inference (EI) instance types associated with this notebook instance. Currently only one EI instance type can be associated with a notebook instance. For more information, see Using Elastic Inference in Amazon SageMaker.
sourcepub fn default_code_repository(&self) -> Option<&str>
pub fn default_code_repository(&self) -> Option<&str>
The Git repository associated with the notebook instance as its default code repository. This can be either the name of a Git repository stored as a resource in your account, or the URL of a Git repository in Amazon Web Services CodeCommit or in any other Git repository. When you open a notebook instance, it opens in the directory that contains this repository. For more information, see Associating Git Repositories with SageMaker Notebook Instances.
sourcepub fn additional_code_repositories(&self) -> Option<&[String]>
pub fn additional_code_repositories(&self) -> Option<&[String]>
An array of up to three Git repositories associated with the notebook instance. These can be either the names of Git repositories stored as resources in your account, or the URL of Git repositories in Amazon Web Services CodeCommit or in any other Git repository. These repositories are cloned at the same level as the default repository of your notebook instance. For more information, see Associating Git Repositories with SageMaker Notebook Instances.
sourcepub fn root_access(&self) -> Option<&RootAccess>
pub fn root_access(&self) -> Option<&RootAccess>
Whether root access is enabled or disabled for users of the notebook instance.
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.
sourcepub fn platform_identifier(&self) -> Option<&str>
pub fn platform_identifier(&self) -> Option<&str>
The platform identifier of the notebook instance runtime environment.
sourcepub fn instance_metadata_service_configuration(
&self
) -> Option<&InstanceMetadataServiceConfiguration>
pub fn instance_metadata_service_configuration(
&self
) -> Option<&InstanceMetadataServiceConfiguration>
Information on the IMDS configuration of the notebook instance
source§impl DescribeNotebookInstanceOutput
impl DescribeNotebookInstanceOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeNotebookInstanceOutput
.
Trait Implementations§
source§impl Clone for DescribeNotebookInstanceOutput
impl Clone for DescribeNotebookInstanceOutput
source§fn clone(&self) -> DescribeNotebookInstanceOutput
fn clone(&self) -> DescribeNotebookInstanceOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<DescribeNotebookInstanceOutput> for DescribeNotebookInstanceOutput
impl PartialEq<DescribeNotebookInstanceOutput> for DescribeNotebookInstanceOutput
source§fn eq(&self, other: &DescribeNotebookInstanceOutput) -> bool
fn eq(&self, other: &DescribeNotebookInstanceOutput) -> bool
self
and other
values to be equal, and is used
by ==
.