[][src]Struct rusoto_codebuild::UpdateReportGroupInput

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.

tags: Option<Vec<Tag>>

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

impl Clone for UpdateReportGroupInput[src]

impl Debug for UpdateReportGroupInput[src]

impl Default for UpdateReportGroupInput[src]

impl PartialEq<UpdateReportGroupInput> for UpdateReportGroupInput[src]

impl Serialize for UpdateReportGroupInput[src]

impl StructuralPartialEq for UpdateReportGroupInput[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> From<T> for T[src]

impl<T> Instrument 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> 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.