pub struct ListModelExplainabilityJobDefinitionsResponse {
pub job_definition_summaries: Vec<MonitoringJobDefinitionSummary>,
pub next_token: Option<String>,
}
Fields§
§job_definition_summaries: Vec<MonitoringJobDefinitionSummary>
A JSON array in which each element is a summary for a explainability bias jobs.
next_token: Option<String>
If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of jobs, use it in the subsequent request.
Trait Implementations§
Source§impl Clone for ListModelExplainabilityJobDefinitionsResponse
impl Clone for ListModelExplainabilityJobDefinitionsResponse
Source§fn clone(&self) -> ListModelExplainabilityJobDefinitionsResponse
fn clone(&self) -> ListModelExplainabilityJobDefinitionsResponse
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 Default for ListModelExplainabilityJobDefinitionsResponse
impl Default for ListModelExplainabilityJobDefinitionsResponse
Source§fn default() -> ListModelExplainabilityJobDefinitionsResponse
fn default() -> ListModelExplainabilityJobDefinitionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListModelExplainabilityJobDefinitionsResponse
impl<'de> Deserialize<'de> for ListModelExplainabilityJobDefinitionsResponse
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 ListModelExplainabilityJobDefinitionsResponse
impl PartialEq for ListModelExplainabilityJobDefinitionsResponse
Source§fn eq(&self, other: &ListModelExplainabilityJobDefinitionsResponse) -> bool
fn eq(&self, other: &ListModelExplainabilityJobDefinitionsResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListModelExplainabilityJobDefinitionsResponse
Auto Trait Implementations§
impl Freeze for ListModelExplainabilityJobDefinitionsResponse
impl RefUnwindSafe for ListModelExplainabilityJobDefinitionsResponse
impl Send for ListModelExplainabilityJobDefinitionsResponse
impl Sync for ListModelExplainabilityJobDefinitionsResponse
impl Unpin for ListModelExplainabilityJobDefinitionsResponse
impl UnwindSafe for ListModelExplainabilityJobDefinitionsResponse
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