[][src]Struct rusoto_rds::CopyOptionGroupMessage

pub struct CopyOptionGroupMessage {
    pub source_option_group_identifier: String,
    pub tags: Option<Vec<Tag>>,
    pub target_option_group_description: String,
    pub target_option_group_identifier: String,
}

Fields

source_option_group_identifier: String

The identifier for the source option group.

Constraints:

  • Must specify a valid option group.

tags: Option<Vec<Tag>>target_option_group_description: String

The description for the copied option group.

target_option_group_identifier: String

The identifier for the copied option group.

Constraints:

  • Can't be null, empty, or blank

  • Must contain from 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: my-option-group

Trait Implementations

impl Clone for CopyOptionGroupMessage[src]

impl Debug for CopyOptionGroupMessage[src]

impl Default for CopyOptionGroupMessage[src]

impl PartialEq<CopyOptionGroupMessage> for CopyOptionGroupMessage[src]

impl StructuralPartialEq for CopyOptionGroupMessage[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.