Struct rusoto_rds::DBSnapshotAttributesResult [] [src]

pub struct DBSnapshotAttributesResult {
    pub db_snapshot_attributes: Option<Vec<DBSnapshotAttribute>>,
    pub db_snapshot_identifier: Option<String>,
}

Contains the results of a successful call to the DescribeDBSnapshotAttributes API action.

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

Fields

The list of attributes and values for the manual DB snapshot.

The identifier of the manual DB snapshot that the attributes apply to.

Trait Implementations

impl Default for DBSnapshotAttributesResult
[src]

[src]

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

impl Debug for DBSnapshotAttributesResult
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DBSnapshotAttributesResult
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations