[][src]Struct rusoto_neptune::CopyDBParameterGroupMessage

pub struct CopyDBParameterGroupMessage {
    pub source_db_parameter_group_identifier: String,
    pub tags: Option<Vec<Tag>>,
    pub target_db_parameter_group_description: String,
    pub target_db_parameter_group_identifier: String,
}

Fields

source_db_parameter_group_identifier: String

The identifier or ARN for the source DB parameter group. For information about creating an ARN, see Constructing an Amazon Resource Name (ARN).

Constraints:

  • Must specify a valid DB parameter group.

  • Must specify a valid DB parameter group identifier, for example my-db-param-group, or a valid ARN.

tags: Option<Vec<Tag>>

The tags to be assigned to the copied DB parameter group.

target_db_parameter_group_description: String

A description for the copied DB parameter group.

target_db_parameter_group_identifier: String

The identifier for the copied DB parameter group.

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-db-parameter-group

Trait Implementations

impl Clone for CopyDBParameterGroupMessage[src]

impl Default for CopyDBParameterGroupMessage[src]

impl PartialEq<CopyDBParameterGroupMessage> for CopyDBParameterGroupMessage[src]

impl Debug for CopyDBParameterGroupMessage[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