[][src]Struct rusoto_redshift::SnapshotCopyGrant

pub struct SnapshotCopyGrant {
    pub kms_key_id: Option<String>,
    pub snapshot_copy_grant_name: Option<String>,
    pub tags: Option<Vec<Tag>>,
}

The snapshot copy grant that grants Amazon Redshift permission to encrypt copied snapshots with the specified customer master key (CMK) from AWS KMS in the destination region.

For more information about managing snapshot copy grants, go to Amazon Redshift Database Encryption in the Amazon Redshift Cluster Management Guide.

Fields

kms_key_id: Option<String>

The unique identifier of the customer master key (CMK) in AWS KMS to which Amazon Redshift is granted permission.

snapshot_copy_grant_name: Option<String>

The name of the snapshot copy grant.

tags: Option<Vec<Tag>>

A list of tag instances.

Trait Implementations

impl Clone for SnapshotCopyGrant[src]

impl Debug for SnapshotCopyGrant[src]

impl Default for SnapshotCopyGrant[src]

impl PartialEq<SnapshotCopyGrant> for SnapshotCopyGrant[src]

impl StructuralPartialEq for SnapshotCopyGrant[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.