Struct rusoto_redshift::CreateSnapshotCopyGrantMessage [] [src]

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

The result of the CreateSnapshotCopyGrant action.

Fields

The unique identifier of the customer master key (CMK) to which to grant Amazon Redshift permission. If no key is specified, the default key is used.

The name of the snapshot copy grant. This name must be unique in the region for the AWS account.

Constraints:

  • Must contain from 1 to 63 alphanumeric characters or hyphens.

  • Alphabetic characters must be lowercase.

  • First character must be a letter.

  • Cannot end with a hyphen or contain two consecutive hyphens.

  • Must be unique for all clusters within an AWS account.

A list of tag instances.

Trait Implementations

impl Default for CreateSnapshotCopyGrantMessage
[src]

[src]

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

impl Debug for CreateSnapshotCopyGrantMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateSnapshotCopyGrantMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations