[][src]Struct rusoto_rds::CreateOptionGroupMessage

pub struct CreateOptionGroupMessage {
    pub engine_name: String,
    pub major_engine_version: String,
    pub option_group_description: String,
    pub option_group_name: String,
    pub tags: Option<Vec<Tag>>,
}

Fields

engine_name: String

Specifies the name of the engine that this option group should be associated with.

major_engine_version: String

Specifies the major version of the engine that this option group should be associated with.

option_group_description: String

The description of the option group.

option_group_name: String

Specifies the name of the option group to be created.

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

Example: myoptiongroup

tags: Option<Vec<Tag>>

Tags to assign to the option group.

Trait Implementations

impl Clone for CreateOptionGroupMessage[src]

impl Default for CreateOptionGroupMessage[src]

impl PartialEq<CreateOptionGroupMessage> for CreateOptionGroupMessage[src]

impl Debug for CreateOptionGroupMessage[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,