[][src]Struct rusoto_rds::CreateDBSecurityGroupMessage

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

Fields

db_security_group_description: String

The description for the DB security group.

db_security_group_name: String

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

  • Can't end with a hyphen or contain two consecutive hyphens

  • Must not be "Default"

Example: mysecuritygroup

tags: Option<Vec<Tag>>

Tags to assign to the DB security group.

Trait Implementations

impl Clone for CreateDBSecurityGroupMessage[src]

impl Debug for CreateDBSecurityGroupMessage[src]

impl Default for CreateDBSecurityGroupMessage[src]

impl PartialEq<CreateDBSecurityGroupMessage> for CreateDBSecurityGroupMessage[src]

impl StructuralPartialEq for CreateDBSecurityGroupMessage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.