Struct rusoto_rds::DBClusterSnapshotAttribute[][src]

pub struct DBClusterSnapshotAttribute {
    pub attribute_name: Option<String>,
    pub attribute_values: Option<Vec<String>>,
}

Contains the name and values of a manual DB cluster snapshot attribute.

Manual DB cluster snapshot attributes are used to authorize other AWS accounts to restore a manual DB cluster snapshot. For more information, see the ModifyDBClusterSnapshotAttribute API action.

Fields

The name of the manual DB cluster snapshot attribute.

The attribute named restore refers to the list of AWS accounts that have permission to copy or restore the manual DB cluster snapshot. For more information, see the ModifyDBClusterSnapshotAttribute API action.

The value(s) for the manual DB cluster snapshot attribute.

If the AttributeName field is set to restore, then this element returns a list of IDs of the AWS accounts that are authorized to copy or restore the manual DB cluster snapshot. If a value of all is in the list, then the manual DB cluster snapshot is public and available for any AWS account to copy or restore.

Trait Implementations

impl Default for DBClusterSnapshotAttribute
[src]

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

impl Debug for DBClusterSnapshotAttribute
[src]

Formats the value using the given formatter. Read more

impl Clone for DBClusterSnapshotAttribute
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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