Struct aws_sdk_sagemaker::operation::update_experiment::builders::UpdateExperimentInputBuilder
source · #[non_exhaustive]pub struct UpdateExperimentInputBuilder { /* private fields */ }
Expand description
A builder for UpdateExperimentInput
.
Implementations§
source§impl UpdateExperimentInputBuilder
impl UpdateExperimentInputBuilder
sourcepub fn experiment_name(self, input: impl Into<String>) -> Self
pub fn experiment_name(self, input: impl Into<String>) -> Self
The name of the experiment to update.
This field is required.sourcepub fn set_experiment_name(self, input: Option<String>) -> Self
pub fn set_experiment_name(self, input: Option<String>) -> Self
The name of the experiment to update.
sourcepub fn get_experiment_name(&self) -> &Option<String>
pub fn get_experiment_name(&self) -> &Option<String>
The name of the experiment to update.
sourcepub fn display_name(self, input: impl Into<String>) -> Self
pub fn display_name(self, input: impl Into<String>) -> Self
The name of the experiment as displayed. The name doesn't need to be unique. If DisplayName
isn't specified, ExperimentName
is displayed.
sourcepub fn set_display_name(self, input: Option<String>) -> Self
pub fn set_display_name(self, input: Option<String>) -> Self
The name of the experiment as displayed. The name doesn't need to be unique. If DisplayName
isn't specified, ExperimentName
is displayed.
sourcepub fn get_display_name(&self) -> &Option<String>
pub fn get_display_name(&self) -> &Option<String>
The name of the experiment as displayed. The name doesn't need to be unique. If DisplayName
isn't specified, ExperimentName
is displayed.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the experiment.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the experiment.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description of the experiment.
sourcepub fn build(self) -> Result<UpdateExperimentInput, BuildError>
pub fn build(self) -> Result<UpdateExperimentInput, BuildError>
Consumes the builder and constructs a UpdateExperimentInput
.
source§impl UpdateExperimentInputBuilder
impl UpdateExperimentInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<UpdateExperimentOutput, SdkError<UpdateExperimentError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<UpdateExperimentOutput, SdkError<UpdateExperimentError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateExperimentInputBuilder
impl Clone for UpdateExperimentInputBuilder
source§fn clone(&self) -> UpdateExperimentInputBuilder
fn clone(&self) -> UpdateExperimentInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateExperimentInputBuilder
impl Debug for UpdateExperimentInputBuilder
source§impl Default for UpdateExperimentInputBuilder
impl Default for UpdateExperimentInputBuilder
source§fn default() -> UpdateExperimentInputBuilder
fn default() -> UpdateExperimentInputBuilder
source§impl PartialEq for UpdateExperimentInputBuilder
impl PartialEq for UpdateExperimentInputBuilder
source§fn eq(&self, other: &UpdateExperimentInputBuilder) -> bool
fn eq(&self, other: &UpdateExperimentInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateExperimentInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateExperimentInputBuilder
impl RefUnwindSafe for UpdateExperimentInputBuilder
impl Send for UpdateExperimentInputBuilder
impl Sync for UpdateExperimentInputBuilder
impl Unpin for UpdateExperimentInputBuilder
impl UnwindSafe for UpdateExperimentInputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more