Struct rusoto_redshift::RevokeSnapshotAccessMessage[][src]

pub struct RevokeSnapshotAccessMessage {
    pub account_with_restore_access: String,
    pub snapshot_cluster_identifier: Option<String>,
    pub snapshot_identifier: String,
}

Fields

The identifier of the AWS customer account that can no longer restore the specified snapshot.

The identifier of the cluster the snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.

The identifier of the snapshot that the account can no longer access.

Trait Implementations

impl Default for RevokeSnapshotAccessMessage
[src]

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

impl Debug for RevokeSnapshotAccessMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for RevokeSnapshotAccessMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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