#[non_exhaustive]pub struct BatchStopJobRunInputBuilder { /* private fields */ }Expand description
A builder for BatchStopJobRunInput.
Implementations§
source§impl BatchStopJobRunInputBuilder
impl BatchStopJobRunInputBuilder
sourcepub fn job_name(self, input: impl Into<String>) -> Self
pub fn job_name(self, input: impl Into<String>) -> Self
The name of the job definition for which to stop job runs.
sourcepub fn set_job_name(self, input: Option<String>) -> Self
pub fn set_job_name(self, input: Option<String>) -> Self
The name of the job definition for which to stop job runs.
sourcepub fn get_job_name(&self) -> &Option<String>
pub fn get_job_name(&self) -> &Option<String>
The name of the job definition for which to stop job runs.
sourcepub fn job_run_ids(self, input: impl Into<String>) -> Self
pub fn job_run_ids(self, input: impl Into<String>) -> Self
Appends an item to job_run_ids.
To override the contents of this collection use set_job_run_ids.
A list of the JobRunIds that should be stopped for that job definition.
sourcepub fn set_job_run_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_job_run_ids(self, input: Option<Vec<String>>) -> Self
A list of the JobRunIds that should be stopped for that job definition.
sourcepub fn get_job_run_ids(&self) -> &Option<Vec<String>>
pub fn get_job_run_ids(&self) -> &Option<Vec<String>>
A list of the JobRunIds that should be stopped for that job definition.
sourcepub fn build(self) -> Result<BatchStopJobRunInput, BuildError>
pub fn build(self) -> Result<BatchStopJobRunInput, BuildError>
Consumes the builder and constructs a BatchStopJobRunInput.
source§impl BatchStopJobRunInputBuilder
impl BatchStopJobRunInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<BatchStopJobRunOutput, SdkError<BatchStopJobRunError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<BatchStopJobRunOutput, SdkError<BatchStopJobRunError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for BatchStopJobRunInputBuilder
impl Clone for BatchStopJobRunInputBuilder
source§fn clone(&self) -> BatchStopJobRunInputBuilder
fn clone(&self) -> BatchStopJobRunInputBuilder
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 BatchStopJobRunInputBuilder
impl Debug for BatchStopJobRunInputBuilder
source§impl Default for BatchStopJobRunInputBuilder
impl Default for BatchStopJobRunInputBuilder
source§fn default() -> BatchStopJobRunInputBuilder
fn default() -> BatchStopJobRunInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<BatchStopJobRunInputBuilder> for BatchStopJobRunInputBuilder
impl PartialEq<BatchStopJobRunInputBuilder> for BatchStopJobRunInputBuilder
source§fn eq(&self, other: &BatchStopJobRunInputBuilder) -> bool
fn eq(&self, other: &BatchStopJobRunInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchStopJobRunInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for BatchStopJobRunInputBuilder
impl Send for BatchStopJobRunInputBuilder
impl Sync for BatchStopJobRunInputBuilder
impl Unpin for BatchStopJobRunInputBuilder
impl UnwindSafe for BatchStopJobRunInputBuilder
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