pub struct CreateReportGroupInput {
pub export_config: ReportExportConfig,
pub name: String,
pub tags: Option<Vec<Tag>>,
pub type_: String,
}
Fields§
§export_config: ReportExportConfig
A ReportExportConfig
object that contains information about where the report group test results are exported.
name: String
The name of the report group.
A 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.
type_: String
The type of report group.
Trait Implementations§
Source§impl Clone for CreateReportGroupInput
impl Clone for CreateReportGroupInput
Source§fn clone(&self) -> CreateReportGroupInput
fn clone(&self) -> CreateReportGroupInput
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 CreateReportGroupInput
impl Debug for CreateReportGroupInput
Source§impl Default for CreateReportGroupInput
impl Default for CreateReportGroupInput
Source§fn default() -> CreateReportGroupInput
fn default() -> CreateReportGroupInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateReportGroupInput
impl PartialEq for CreateReportGroupInput
Source§impl Serialize for CreateReportGroupInput
impl Serialize for CreateReportGroupInput
impl StructuralPartialEq for CreateReportGroupInput
Auto Trait Implementations§
impl Freeze for CreateReportGroupInput
impl RefUnwindSafe for CreateReportGroupInput
impl Send for CreateReportGroupInput
impl Sync for CreateReportGroupInput
impl Unpin for CreateReportGroupInput
impl UnwindSafe for CreateReportGroupInput
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