[][src]Struct rusoto_rds::ModifyGlobalClusterMessage

pub struct ModifyGlobalClusterMessage {
    pub deletion_protection: Option<bool>,
    pub global_cluster_identifier: Option<String>,
    pub new_global_cluster_identifier: Option<String>,
}

Fields

deletion_protection: Option<bool>

Indicates if the global database cluster has deletion protection enabled. The global database cluster can't be deleted when deletion protection is enabled.

global_cluster_identifier: Option<String>

The DB cluster identifier for the global cluster being modified. This parameter is not case-sensitive.

Constraints:

  • Must match the identifier of an existing global database cluster.

new_global_cluster_identifier: Option<String>

The new cluster identifier for the global database cluster when modifying a global database cluster. This value is stored as a lowercase string.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens

  • The first character must be a letter

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

Example: my-cluster2

Trait Implementations

impl Clone for ModifyGlobalClusterMessage[src]

impl Default for ModifyGlobalClusterMessage[src]

impl PartialEq<ModifyGlobalClusterMessage> for ModifyGlobalClusterMessage[src]

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