Struct rusoto_redshift::SnapshotCopyGrantMessage[][src]

pub struct SnapshotCopyGrantMessage {
    pub marker: Option<String>,
    pub snapshot_copy_grants: Option<Vec<SnapshotCopyGrant>>,
}

Fields

An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeSnapshotCopyGrant request exceed the value specified in MaxRecords, AWS returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

Constraints: You can specify either the SnapshotCopyGrantName parameter or the Marker parameter, but not both.

The list of SnapshotCopyGrant objects.

Trait Implementations

impl Default for SnapshotCopyGrantMessage
[src]

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

impl Debug for SnapshotCopyGrantMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for SnapshotCopyGrantMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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