[][src]Struct rusoto_codebuild::ListReportsForReportGroupInput

pub struct ListReportsForReportGroupInput {
    pub filter: Option<ReportFilter>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub report_group_arn: String,
    pub sort_order: Option<String>,
}

Fields

filter: Option<ReportFilter>

A ReportFilter object used to filter the returned reports.

max_results: Option<i64>

The maximum number of paginated reports in this report group returned per response. Use nextToken to iterate pages in the list of returned Report objects. The default value is 100.

next_token: Option<String>

During a previous call, the maximum number of items that can be returned is the value specified in maxResults. If there more items in the list, then a unique string called a nextToken is returned. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.

report_group_arn: String

The ARN of the report group for which you want to return report ARNs.

sort_order: Option<String>

Use to specify whether the results are returned in ascending or descending order.

Trait Implementations

impl Clone for ListReportsForReportGroupInput[src]

impl Debug for ListReportsForReportGroupInput[src]

impl Default for ListReportsForReportGroupInput[src]

impl PartialEq<ListReportsForReportGroupInput> for ListReportsForReportGroupInput[src]

impl Serialize for ListReportsForReportGroupInput[src]

impl StructuralPartialEq for ListReportsForReportGroupInput[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.