[][src]Struct rusoto_iam::GetCredentialReportResponse

pub struct GetCredentialReportResponse {
    pub content: Option<Bytes>,
    pub generated_time: Option<String>,
    pub report_format: Option<String>,
}

Contains the response to a successful GetCredentialReport request.

Fields

content: Option<Bytes>

Contains the credential report. The report is Base64-encoded.

generated_time: Option<String>

The date and time when the credential report was created, in ISO 8601 date-time format.

report_format: Option<String>

The format (MIME type) of the credential report.

Trait Implementations

impl Clone for GetCredentialReportResponse[src]

impl Debug for GetCredentialReportResponse[src]

impl Default for GetCredentialReportResponse[src]

impl PartialEq<GetCredentialReportResponse> for GetCredentialReportResponse[src]

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