Struct rusoto_rds::CreateDBSecurityGroupMessage [] [src]

pub struct CreateDBSecurityGroupMessage {
    pub db_security_group_description: String,
    pub db_security_group_name: String,
    pub tags: Option<Vec<Tag>>,
}

Fields

The description for the DB security group.

The name for the DB security group. This value is stored as a lowercase string.

Constraints:

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter

  • Cannot end with a hyphen or contain two consecutive hyphens

  • Must not be "Default"

Example: mysecuritygroup

Trait Implementations

impl Default for CreateDBSecurityGroupMessage
[src]

[src]

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

impl Debug for CreateDBSecurityGroupMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateDBSecurityGroupMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations