pub struct UpdateReportGroupInput {
pub arn: String,
pub export_config: Option<ReportExportConfig>,
pub tags: Option<Vec<Tag>>,
}
Fields§
§arn: 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 AWS services that support AWS CodeBuild report group tags.
Trait Implementations§
Source§impl Clone for UpdateReportGroupInput
impl Clone for UpdateReportGroupInput
Source§fn clone(&self) -> UpdateReportGroupInput
fn clone(&self) -> UpdateReportGroupInput
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 UpdateReportGroupInput
impl Debug for UpdateReportGroupInput
Source§impl Default for UpdateReportGroupInput
impl Default for UpdateReportGroupInput
Source§fn default() -> UpdateReportGroupInput
fn default() -> UpdateReportGroupInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateReportGroupInput
impl PartialEq for UpdateReportGroupInput
Source§impl Serialize for UpdateReportGroupInput
impl Serialize for UpdateReportGroupInput
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
Mutably borrows from an owned value. Read more