Struct rusoto_redshift::AuthorizeSnapshotAccessMessage [] [src]

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

Fields

The identifier of the AWS customer account authorized to restore the specified snapshot.

To share a snapshot with AWS support, specify amazon-redshift-support.

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 the account is authorized to restore.

Trait Implementations

impl Default for AuthorizeSnapshotAccessMessage
[src]

[src]

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

impl Debug for AuthorizeSnapshotAccessMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for AuthorizeSnapshotAccessMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations