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]

[src]

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

impl Debug for DescribeSnapshotsResult
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeSnapshotsResult
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations