Struct rusoto_rds::CreateDBSnapshotMessage [] [src]

pub struct CreateDBSnapshotMessage {
    pub db_instance_identifier: String,
    pub db_snapshot_identifier: String,
    pub tags: Option<Vec<Tag>>,
}

Fields

The identifier of the DB instance that you want to create the snapshot of.

Constraints:

  • Must match the identifier of an existing DBInstance.

The identifier for the DB snapshot.

Constraints:

  • Cannot be null, empty, or blank

  • Must contain from 1 to 255 letters, numbers, or hyphens

  • First character must be a letter

  • Cannot end with a hyphen or contain two consecutive hyphens

Example: my-snapshot-id

Trait Implementations

impl Default for CreateDBSnapshotMessage
[src]

[src]

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

impl Debug for CreateDBSnapshotMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateDBSnapshotMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations