#[non_exhaustive]pub struct CancelMlTaskRunInputBuilder { /* private fields */ }Expand description
A builder for CancelMlTaskRunInput.
Implementations§
source§impl CancelMlTaskRunInputBuilder
impl CancelMlTaskRunInputBuilder
sourcepub fn transform_id(self, input: impl Into<String>) -> Self
pub fn transform_id(self, input: impl Into<String>) -> Self
The unique identifier of the machine learning transform.
This field is required.sourcepub fn set_transform_id(self, input: Option<String>) -> Self
pub fn set_transform_id(self, input: Option<String>) -> Self
The unique identifier of the machine learning transform.
sourcepub fn get_transform_id(&self) -> &Option<String>
pub fn get_transform_id(&self) -> &Option<String>
The unique identifier of the machine learning transform.
sourcepub fn task_run_id(self, input: impl Into<String>) -> Self
pub fn task_run_id(self, input: impl Into<String>) -> Self
A unique identifier for the task run.
This field is required.sourcepub fn set_task_run_id(self, input: Option<String>) -> Self
pub fn set_task_run_id(self, input: Option<String>) -> Self
A unique identifier for the task run.
sourcepub fn get_task_run_id(&self) -> &Option<String>
pub fn get_task_run_id(&self) -> &Option<String>
A unique identifier for the task run.
sourcepub fn build(self) -> Result<CancelMlTaskRunInput, BuildError>
pub fn build(self) -> Result<CancelMlTaskRunInput, BuildError>
Consumes the builder and constructs a CancelMlTaskRunInput.
source§impl CancelMlTaskRunInputBuilder
impl CancelMlTaskRunInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CancelMlTaskRunOutput, SdkError<CancelMLTaskRunError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CancelMlTaskRunOutput, SdkError<CancelMLTaskRunError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CancelMlTaskRunInputBuilder
impl Clone for CancelMlTaskRunInputBuilder
source§fn clone(&self) -> CancelMlTaskRunInputBuilder
fn clone(&self) -> CancelMlTaskRunInputBuilder
Returns a copy 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 CancelMlTaskRunInputBuilder
impl Debug for CancelMlTaskRunInputBuilder
source§impl Default for CancelMlTaskRunInputBuilder
impl Default for CancelMlTaskRunInputBuilder
source§fn default() -> CancelMlTaskRunInputBuilder
fn default() -> CancelMlTaskRunInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CancelMlTaskRunInputBuilder
impl PartialEq for CancelMlTaskRunInputBuilder
source§fn eq(&self, other: &CancelMlTaskRunInputBuilder) -> bool
fn eq(&self, other: &CancelMlTaskRunInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CancelMlTaskRunInputBuilder
Auto Trait Implementations§
impl Freeze for CancelMlTaskRunInputBuilder
impl RefUnwindSafe for CancelMlTaskRunInputBuilder
impl Send for CancelMlTaskRunInputBuilder
impl Sync for CancelMlTaskRunInputBuilder
impl Unpin for CancelMlTaskRunInputBuilder
impl UnwindSafe for CancelMlTaskRunInputBuilder
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.