[][src]Struct rusoto_codebuild::ReportGroup

pub struct ReportGroup {
    pub arn: Option<String>,
    pub created: Option<f64>,
    pub export_config: Option<ReportExportConfig>,
    pub last_modified: Option<f64>,
    pub name: Option<String>,
    pub tags: Option<Vec<Tag>>,
    pub type_: Option<String>,
}

A series of reports. Each report contains information about the results from running a series of test cases. You specify the test cases for a report group in the buildspec for a build project using one or more paths to the test case files.

Fields

arn: Option<String>

The ARN of a ReportGroup.

created: Option<f64>

The date and time this ReportGroup was created.

export_config: Option<ReportExportConfig>

Information about the destination where the raw data of this ReportGroup is exported.

last_modified: Option<f64>

The date and time this ReportGroup was last modified.

name: Option<String>

The name of a ReportGroup.

tags: Option<Vec<Tag>>

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_: Option<String>

The type of the ReportGroup. The one valid value is TEST.

Trait Implementations

impl Clone for ReportGroup[src]

impl Debug for ReportGroup[src]

impl Default for ReportGroup[src]

impl<'de> Deserialize<'de> for ReportGroup[src]

impl PartialEq<ReportGroup> for ReportGroup[src]

impl StructuralPartialEq for ReportGroup[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.