Struct aws_sdk_codebuild::operation::batch_get_reports::builders::BatchGetReportsInputBuilder
source · #[non_exhaustive]pub struct BatchGetReportsInputBuilder { /* private fields */ }
Expand description
A builder for BatchGetReportsInput
.
Implementations§
source§impl BatchGetReportsInputBuilder
impl BatchGetReportsInputBuilder
sourcepub fn report_arns(self, input: impl Into<String>) -> Self
pub fn report_arns(self, input: impl Into<String>) -> Self
Appends an item to report_arns
.
To override the contents of this collection use set_report_arns
.
An array of ARNs that identify the Report
objects to return.
sourcepub fn set_report_arns(self, input: Option<Vec<String>>) -> Self
pub fn set_report_arns(self, input: Option<Vec<String>>) -> Self
An array of ARNs that identify the Report
objects to return.
sourcepub fn get_report_arns(&self) -> &Option<Vec<String>>
pub fn get_report_arns(&self) -> &Option<Vec<String>>
An array of ARNs that identify the Report
objects to return.
sourcepub fn build(self) -> Result<BatchGetReportsInput, BuildError>
pub fn build(self) -> Result<BatchGetReportsInput, BuildError>
Consumes the builder and constructs a BatchGetReportsInput
.
source§impl BatchGetReportsInputBuilder
impl BatchGetReportsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<BatchGetReportsOutput, SdkError<BatchGetReportsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<BatchGetReportsOutput, SdkError<BatchGetReportsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for BatchGetReportsInputBuilder
impl Clone for BatchGetReportsInputBuilder
source§fn clone(&self) -> BatchGetReportsInputBuilder
fn clone(&self) -> BatchGetReportsInputBuilder
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 BatchGetReportsInputBuilder
impl Debug for BatchGetReportsInputBuilder
source§impl Default for BatchGetReportsInputBuilder
impl Default for BatchGetReportsInputBuilder
source§fn default() -> BatchGetReportsInputBuilder
fn default() -> BatchGetReportsInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchGetReportsInputBuilder
impl PartialEq for BatchGetReportsInputBuilder
source§fn eq(&self, other: &BatchGetReportsInputBuilder) -> bool
fn eq(&self, other: &BatchGetReportsInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchGetReportsInputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetReportsInputBuilder
impl RefUnwindSafe for BatchGetReportsInputBuilder
impl Send for BatchGetReportsInputBuilder
impl Sync for BatchGetReportsInputBuilder
impl Unpin for BatchGetReportsInputBuilder
impl UnwindSafe for BatchGetReportsInputBuilder
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.