Struct aws_sdk_sagemaker::model::search_record::Builder
source · [−]#[non_exhaustive]pub struct Builder { /* private fields */ }
Expand description
A builder for SearchRecord
Implementations
sourceimpl Builder
impl Builder
sourcepub fn training_job(self, input: TrainingJob) -> Self
pub fn training_job(self, input: TrainingJob) -> Self
The properties of a training job.
sourcepub fn set_training_job(self, input: Option<TrainingJob>) -> Self
pub fn set_training_job(self, input: Option<TrainingJob>) -> Self
The properties of a training job.
sourcepub fn experiment(self, input: Experiment) -> Self
pub fn experiment(self, input: Experiment) -> Self
The properties of an experiment.
sourcepub fn set_experiment(self, input: Option<Experiment>) -> Self
pub fn set_experiment(self, input: Option<Experiment>) -> Self
The properties of an experiment.
sourcepub fn trial_component(self, input: TrialComponent) -> Self
pub fn trial_component(self, input: TrialComponent) -> Self
The properties of a trial component.
sourcepub fn set_trial_component(self, input: Option<TrialComponent>) -> Self
pub fn set_trial_component(self, input: Option<TrialComponent>) -> Self
The properties of a trial component.
sourcepub fn set_endpoint(self, input: Option<Endpoint>) -> Self
pub fn set_endpoint(self, input: Option<Endpoint>) -> Self
A hosted endpoint for real-time inference.
sourcepub fn model_package(self, input: ModelPackage) -> Self
pub fn model_package(self, input: ModelPackage) -> Self
A versioned model that can be deployed for SageMaker inference.
sourcepub fn set_model_package(self, input: Option<ModelPackage>) -> Self
pub fn set_model_package(self, input: Option<ModelPackage>) -> Self
A versioned model that can be deployed for SageMaker inference.
sourcepub fn model_package_group(self, input: ModelPackageGroup) -> Self
pub fn model_package_group(self, input: ModelPackageGroup) -> Self
A group of versioned models in the model registry.
sourcepub fn set_model_package_group(self, input: Option<ModelPackageGroup>) -> Self
pub fn set_model_package_group(self, input: Option<ModelPackageGroup>) -> Self
A group of versioned models in the model registry.
sourcepub fn set_pipeline(self, input: Option<Pipeline>) -> Self
pub fn set_pipeline(self, input: Option<Pipeline>) -> Self
A SageMaker Model Building Pipeline instance.
sourcepub fn pipeline_execution(self, input: PipelineExecution) -> Self
pub fn pipeline_execution(self, input: PipelineExecution) -> Self
An execution of a pipeline.
sourcepub fn set_pipeline_execution(self, input: Option<PipelineExecution>) -> Self
pub fn set_pipeline_execution(self, input: Option<PipelineExecution>) -> Self
An execution of a pipeline.
sourcepub fn feature_group(self, input: FeatureGroup) -> Self
pub fn feature_group(self, input: FeatureGroup) -> Self
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 set_feature_group(self, input: Option<FeatureGroup>) -> Self
pub fn set_feature_group(self, input: Option<FeatureGroup>) -> Self
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 set_project(self, input: Option<Project>) -> Self
pub fn set_project(self, input: Option<Project>) -> Self
The properties of a project.
sourcepub fn build(self) -> SearchRecord
pub fn build(self) -> SearchRecord
Consumes the builder and constructs a SearchRecord
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub 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> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
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