pub struct ListEndpointsOutput {
pub endpoints: Vec<EndpointSummary>,
pub next_token: Option<String>,
}
Fields§
§endpoints: Vec<EndpointSummary>
An array or endpoint objects.
next_token: Option<String>
If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of training jobs, use it in the subsequent request.
Trait Implementations§
Source§impl Clone for ListEndpointsOutput
impl Clone for ListEndpointsOutput
Source§fn clone(&self) -> ListEndpointsOutput
fn clone(&self) -> ListEndpointsOutput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ListEndpointsOutput
impl Debug for ListEndpointsOutput
Source§impl Default for ListEndpointsOutput
impl Default for ListEndpointsOutput
Source§fn default() -> ListEndpointsOutput
fn default() -> ListEndpointsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListEndpointsOutput
impl<'de> Deserialize<'de> for ListEndpointsOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ListEndpointsOutput
impl PartialEq for ListEndpointsOutput
impl StructuralPartialEq for ListEndpointsOutput
Auto Trait Implementations§
impl Freeze for ListEndpointsOutput
impl RefUnwindSafe for ListEndpointsOutput
impl Send for ListEndpointsOutput
impl Sync for ListEndpointsOutput
impl Unpin for ListEndpointsOutput
impl UnwindSafe for ListEndpointsOutput
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