Struct rusoto_elasticache::DescribeSnapshotsListMessage[][src]

pub struct DescribeSnapshotsListMessage {
    pub marker: Option<String>,
    pub snapshots: Option<Vec<Snapshot>>,
}

Represents the output of a DescribeSnapshots operation.

Fields

An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

A list of snapshots. Each item in the list contains detailed information about one snapshot.

Trait Implementations

impl Default for DescribeSnapshotsListMessage
[src]

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

impl Debug for DescribeSnapshotsListMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeSnapshotsListMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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