Struct rusoto_ds::DescribeSnapshotsResult[][src]

pub struct DescribeSnapshotsResult {
    pub next_token: Option<String>,
    pub snapshots: Option<Vec<Snapshot>>,
}

Contains the results of the DescribeSnapshots operation.

Fields

If not null, more results are available. Pass this value in the NextToken member of a subsequent call to DescribeSnapshots.

The list of Snapshot objects that were retrieved.

It is possible that this list contains less than the number of items specified in the Limit member of the request. This occurs if there are less than the requested number of items left to retrieve, or if the limitations of the operation have been exceeded.

Trait Implementations

impl Default for DescribeSnapshotsResult
[src]

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

impl Debug for DescribeSnapshotsResult
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeSnapshotsResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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