#[non_exhaustive]pub struct UpdateReportGroupInput {
pub arn: Option<String>,
pub export_config: Option<ReportExportConfig>,
pub tags: Option<Vec<Tag>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.arn: Option<String>
The ARN of the report group to update.
export_config: Option<ReportExportConfig>
Used to specify an updated export type. Valid values are:
-
S3
: The report results are exported to an S3 bucket. -
NO_EXPORT
: The report results are not exported.
An updated 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.
Implementations§
source§impl UpdateReportGroupInput
impl UpdateReportGroupInput
sourcepub fn export_config(&self) -> Option<&ReportExportConfig>
pub fn export_config(&self) -> Option<&ReportExportConfig>
Used to specify an updated export type. Valid values are:
-
S3
: The report results are exported to an S3 bucket. -
NO_EXPORT
: The report results are not exported.
An updated 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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl UpdateReportGroupInput
impl UpdateReportGroupInput
sourcepub fn builder() -> UpdateReportGroupInputBuilder
pub fn builder() -> UpdateReportGroupInputBuilder
Creates a new builder-style object to manufacture UpdateReportGroupInput
.
Trait Implementations§
source§impl Clone for UpdateReportGroupInput
impl Clone for UpdateReportGroupInput
source§fn clone(&self) -> UpdateReportGroupInput
fn clone(&self) -> UpdateReportGroupInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateReportGroupInput
impl Debug for UpdateReportGroupInput
source§impl PartialEq for UpdateReportGroupInput
impl PartialEq for UpdateReportGroupInput
source§fn eq(&self, other: &UpdateReportGroupInput) -> bool
fn eq(&self, other: &UpdateReportGroupInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateReportGroupInput
Auto Trait Implementations§
impl Freeze for UpdateReportGroupInput
impl RefUnwindSafe for UpdateReportGroupInput
impl Send for UpdateReportGroupInput
impl Sync for UpdateReportGroupInput
impl Unpin for UpdateReportGroupInput
impl UnwindSafe for UpdateReportGroupInput
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