Struct aws_sdk_codebuild::operation::batch_get_report_groups::builders::BatchGetReportGroupsOutputBuilder
source · #[non_exhaustive]pub struct BatchGetReportGroupsOutputBuilder { /* private fields */ }
Expand description
A builder for BatchGetReportGroupsOutput
.
Implementations§
source§impl BatchGetReportGroupsOutputBuilder
impl BatchGetReportGroupsOutputBuilder
sourcepub fn report_groups(self, input: ReportGroup) -> Self
pub fn report_groups(self, input: ReportGroup) -> Self
Appends an item to report_groups
.
To override the contents of this collection use set_report_groups
.
The array of report groups returned by BatchGetReportGroups
.
sourcepub fn set_report_groups(self, input: Option<Vec<ReportGroup>>) -> Self
pub fn set_report_groups(self, input: Option<Vec<ReportGroup>>) -> Self
The array of report groups returned by BatchGetReportGroups
.
sourcepub fn get_report_groups(&self) -> &Option<Vec<ReportGroup>>
pub fn get_report_groups(&self) -> &Option<Vec<ReportGroup>>
The array of report groups returned by BatchGetReportGroups
.
sourcepub fn report_groups_not_found(self, input: impl Into<String>) -> Self
pub fn report_groups_not_found(self, input: impl Into<String>) -> Self
Appends an item to report_groups_not_found
.
To override the contents of this collection use set_report_groups_not_found
.
An array of ARNs passed to BatchGetReportGroups
that are not associated with a ReportGroup
.
sourcepub fn set_report_groups_not_found(self, input: Option<Vec<String>>) -> Self
pub fn set_report_groups_not_found(self, input: Option<Vec<String>>) -> Self
An array of ARNs passed to BatchGetReportGroups
that are not associated with a ReportGroup
.
sourcepub fn get_report_groups_not_found(&self) -> &Option<Vec<String>>
pub fn get_report_groups_not_found(&self) -> &Option<Vec<String>>
An array of ARNs passed to BatchGetReportGroups
that are not associated with a ReportGroup
.
sourcepub fn build(self) -> BatchGetReportGroupsOutput
pub fn build(self) -> BatchGetReportGroupsOutput
Consumes the builder and constructs a BatchGetReportGroupsOutput
.
Trait Implementations§
source§impl Clone for BatchGetReportGroupsOutputBuilder
impl Clone for BatchGetReportGroupsOutputBuilder
source§fn clone(&self) -> BatchGetReportGroupsOutputBuilder
fn clone(&self) -> BatchGetReportGroupsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for BatchGetReportGroupsOutputBuilder
impl Default for BatchGetReportGroupsOutputBuilder
source§fn default() -> BatchGetReportGroupsOutputBuilder
fn default() -> BatchGetReportGroupsOutputBuilder
source§impl PartialEq for BatchGetReportGroupsOutputBuilder
impl PartialEq for BatchGetReportGroupsOutputBuilder
source§fn eq(&self, other: &BatchGetReportGroupsOutputBuilder) -> bool
fn eq(&self, other: &BatchGetReportGroupsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchGetReportGroupsOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetReportGroupsOutputBuilder
impl RefUnwindSafe for BatchGetReportGroupsOutputBuilder
impl Send for BatchGetReportGroupsOutputBuilder
impl Sync for BatchGetReportGroupsOutputBuilder
impl Unpin for BatchGetReportGroupsOutputBuilder
impl UnwindSafe for BatchGetReportGroupsOutputBuilder
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> 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