pub struct SagemakerClient<'a> { /* private fields */ }Expand description
Client for the Amazon SageMaker API
Implementations§
Source§impl<'a> SagemakerClient<'a>
impl<'a> SagemakerClient<'a>
Sourcepub async fn list_notebook_instances(
&self,
body: &ListNotebookInstancesInput,
) -> Result<ListNotebookInstancesOutput>
pub async fn list_notebook_instances( &self, body: &ListNotebookInstancesInput, ) -> Result<ListNotebookInstancesOutput>
Returns a list of the Amazon SageMaker notebook instances in the requester’s account.
Sourcepub async fn stop_notebook_instance(
&self,
body: &StopNotebookInstanceInput,
) -> Result<()>
pub async fn stop_notebook_instance( &self, body: &StopNotebookInstanceInput, ) -> Result<()>
Terminates the ML compute instance. Before terminating the instance, SageMaker disconnects the ML storage volume from it.
Auto Trait Implementations§
impl<'a> Freeze for SagemakerClient<'a>
impl<'a> !RefUnwindSafe for SagemakerClient<'a>
impl<'a> Send for SagemakerClient<'a>
impl<'a> Sync for SagemakerClient<'a>
impl<'a> Unpin for SagemakerClient<'a>
impl<'a> UnsafeUnpin for SagemakerClient<'a>
impl<'a> !UnwindSafe for SagemakerClient<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more