#[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 ==
.