Struct rusoto_iam::GetCredentialReportResponse[][src]

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

Contains the response to a successful GetCredentialReport request.

Fields

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

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

The format (MIME type) of the credential report.

Trait Implementations

impl Default for GetCredentialReportResponse
[src]

Returns the "default value" for a type. Read more

impl Debug for GetCredentialReportResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetCredentialReportResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetCredentialReportResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations