Struct rusoto_cloudtrail::ListPublicKeysRequest[][src]

pub struct ListPublicKeysRequest {
    pub end_time: Option<f64>,
    pub next_token: Option<String>,
    pub start_time: Option<f64>,
}

Requests the public keys for a specified time range.

Fields

Optionally specifies, in UTC, the end of the time range to look up public keys for CloudTrail digest files. If not specified, the current time is used.

Reserved for future use.

Optionally specifies, in UTC, the start of the time range to look up public keys for CloudTrail digest files. If not specified, the current time is used, and the current public key is returned.

Trait Implementations

impl Default for ListPublicKeysRequest
[src]

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

impl Debug for ListPublicKeysRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListPublicKeysRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListPublicKeysRequest
[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