Struct aws_sdk_glue::operation::get_workflow_run_properties::builders::GetWorkflowRunPropertiesInputBuilder
source · #[non_exhaustive]pub struct GetWorkflowRunPropertiesInputBuilder { /* private fields */ }Expand description
A builder for GetWorkflowRunPropertiesInput.
Implementations§
source§impl GetWorkflowRunPropertiesInputBuilder
impl GetWorkflowRunPropertiesInputBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
Name of the workflow which was run.
This field is required.sourcepub fn run_id(self, input: impl Into<String>) -> Self
pub fn run_id(self, input: impl Into<String>) -> Self
The ID of the workflow run whose run properties should be returned.
This field is required.sourcepub fn set_run_id(self, input: Option<String>) -> Self
pub fn set_run_id(self, input: Option<String>) -> Self
The ID of the workflow run whose run properties should be returned.
sourcepub fn get_run_id(&self) -> &Option<String>
pub fn get_run_id(&self) -> &Option<String>
The ID of the workflow run whose run properties should be returned.
sourcepub fn build(self) -> Result<GetWorkflowRunPropertiesInput, BuildError>
pub fn build(self) -> Result<GetWorkflowRunPropertiesInput, BuildError>
Consumes the builder and constructs a GetWorkflowRunPropertiesInput.
source§impl GetWorkflowRunPropertiesInputBuilder
impl GetWorkflowRunPropertiesInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<GetWorkflowRunPropertiesOutput, SdkError<GetWorkflowRunPropertiesError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<GetWorkflowRunPropertiesOutput, SdkError<GetWorkflowRunPropertiesError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetWorkflowRunPropertiesInputBuilder
impl Clone for GetWorkflowRunPropertiesInputBuilder
source§fn clone(&self) -> GetWorkflowRunPropertiesInputBuilder
fn clone(&self) -> GetWorkflowRunPropertiesInputBuilder
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 Default for GetWorkflowRunPropertiesInputBuilder
impl Default for GetWorkflowRunPropertiesInputBuilder
source§fn default() -> GetWorkflowRunPropertiesInputBuilder
fn default() -> GetWorkflowRunPropertiesInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetWorkflowRunPropertiesInputBuilder
impl PartialEq for GetWorkflowRunPropertiesInputBuilder
source§fn eq(&self, other: &GetWorkflowRunPropertiesInputBuilder) -> bool
fn eq(&self, other: &GetWorkflowRunPropertiesInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetWorkflowRunPropertiesInputBuilder
Auto Trait Implementations§
impl Freeze for GetWorkflowRunPropertiesInputBuilder
impl RefUnwindSafe for GetWorkflowRunPropertiesInputBuilder
impl Send for GetWorkflowRunPropertiesInputBuilder
impl Sync for GetWorkflowRunPropertiesInputBuilder
impl Unpin for GetWorkflowRunPropertiesInputBuilder
impl UnwindSafe for GetWorkflowRunPropertiesInputBuilder
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.