Struct aws_sdk_sagemaker::model::SearchRecord
source · [−]#[non_exhaustive]pub struct SearchRecord { /* private fields */ }
Expand description
A single resource returned as part of the Search
API response.
Implementations
sourceimpl SearchRecord
impl SearchRecord
sourcepub fn training_job(&self) -> Option<&TrainingJob>
pub fn training_job(&self) -> Option<&TrainingJob>
The properties of a training job.
sourcepub fn experiment(&self) -> Option<&Experiment>
pub fn experiment(&self) -> Option<&Experiment>
The properties of an experiment.
sourcepub fn trial_component(&self) -> Option<&TrialComponent>
pub fn trial_component(&self) -> Option<&TrialComponent>
The properties of a trial component.
sourcepub fn model_package(&self) -> Option<&ModelPackage>
pub fn model_package(&self) -> Option<&ModelPackage>
A versioned model that can be deployed for SageMaker inference.
sourcepub fn model_package_group(&self) -> Option<&ModelPackageGroup>
pub fn model_package_group(&self) -> Option<&ModelPackageGroup>
A group of versioned models in the model registry.
sourcepub fn pipeline_execution(&self) -> Option<&PipelineExecution>
pub fn pipeline_execution(&self) -> Option<&PipelineExecution>
An execution of a pipeline.
sourcepub fn feature_group(&self) -> Option<&FeatureGroup>
pub fn feature_group(&self) -> Option<&FeatureGroup>
Amazon SageMaker Feature Store stores features in a collection called Feature Group. A Feature Group can be visualized as a table which has rows, with a unique identifier for each row where each column in the table is a feature. In principle, a Feature Group is composed of features and values per features.
sourcepub fn feature_metadata(&self) -> Option<&FeatureMetadata>
pub fn feature_metadata(&self) -> Option<&FeatureMetadata>
The feature metadata used to search through the features.
sourceimpl SearchRecord
impl SearchRecord
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SearchRecord
.
Trait Implementations
sourceimpl Clone for SearchRecord
impl Clone for SearchRecord
sourcefn clone(&self) -> SearchRecord
fn clone(&self) -> SearchRecord
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SearchRecord
impl Debug for SearchRecord
sourceimpl PartialEq<SearchRecord> for SearchRecord
impl PartialEq<SearchRecord> for SearchRecord
sourcefn eq(&self, other: &SearchRecord) -> bool
fn eq(&self, other: &SearchRecord) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for SearchRecord
Auto Trait Implementations
impl RefUnwindSafe for SearchRecord
impl Send for SearchRecord
impl Sync for SearchRecord
impl Unpin for SearchRecord
impl UnwindSafe for SearchRecord
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more