Struct aws_sdk_codebuild::operation::create_report_group::builders::CreateReportGroupInputBuilder
source · #[non_exhaustive]pub struct CreateReportGroupInputBuilder { /* private fields */ }
Expand description
A builder for CreateReportGroupInput
.
Implementations§
source§impl CreateReportGroupInputBuilder
impl CreateReportGroupInputBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the report group.
This field is required.sourcepub fn type(self, input: ReportType) -> Self
pub fn type(self, input: ReportType) -> Self
The type of report group.
This field is required.sourcepub fn set_type(self, input: Option<ReportType>) -> Self
pub fn set_type(self, input: Option<ReportType>) -> Self
The type of report group.
sourcepub fn get_type(&self) -> &Option<ReportType>
pub fn get_type(&self) -> &Option<ReportType>
The type of report group.
sourcepub fn export_config(self, input: ReportExportConfig) -> Self
pub fn export_config(self, input: ReportExportConfig) -> Self
A ReportExportConfig
object that contains information about where the report group test results are exported.
sourcepub fn set_export_config(self, input: Option<ReportExportConfig>) -> Self
pub fn set_export_config(self, input: Option<ReportExportConfig>) -> Self
A ReportExportConfig
object that contains information about where the report group test results are exported.
sourcepub fn get_export_config(&self) -> &Option<ReportExportConfig>
pub fn get_export_config(&self) -> &Option<ReportExportConfig>
A ReportExportConfig
object that contains information about where the report group test results are exported.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
A list of tag key and value pairs associated with this report group.
These tags are available for use by Amazon Web Services services that support CodeBuild report group tags.
A list of tag key and value pairs associated with this report group.
These tags are available for use by Amazon Web Services services that support CodeBuild report group tags.
A list of tag key and value pairs associated with this report group.
These tags are available for use by Amazon Web Services services that support CodeBuild report group tags.
sourcepub fn build(self) -> Result<CreateReportGroupInput, BuildError>
pub fn build(self) -> Result<CreateReportGroupInput, BuildError>
Consumes the builder and constructs a CreateReportGroupInput
.
source§impl CreateReportGroupInputBuilder
impl CreateReportGroupInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<CreateReportGroupOutput, SdkError<CreateReportGroupError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<CreateReportGroupOutput, SdkError<CreateReportGroupError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateReportGroupInputBuilder
impl Clone for CreateReportGroupInputBuilder
source§fn clone(&self) -> CreateReportGroupInputBuilder
fn clone(&self) -> CreateReportGroupInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreateReportGroupInputBuilder
impl Default for CreateReportGroupInputBuilder
source§fn default() -> CreateReportGroupInputBuilder
fn default() -> CreateReportGroupInputBuilder
source§impl PartialEq for CreateReportGroupInputBuilder
impl PartialEq for CreateReportGroupInputBuilder
source§fn eq(&self, other: &CreateReportGroupInputBuilder) -> bool
fn eq(&self, other: &CreateReportGroupInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateReportGroupInputBuilder
Auto Trait Implementations§
impl Freeze for CreateReportGroupInputBuilder
impl RefUnwindSafe for CreateReportGroupInputBuilder
impl Send for CreateReportGroupInputBuilder
impl Sync for CreateReportGroupInputBuilder
impl Unpin for CreateReportGroupInputBuilder
impl UnwindSafe for CreateReportGroupInputBuilder
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