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 isn't 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§
Source§impl Clone for ModifyGlobalClusterMessage
impl Clone for ModifyGlobalClusterMessage
Source§fn clone(&self) -> ModifyGlobalClusterMessage
fn clone(&self) -> ModifyGlobalClusterMessage
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ModifyGlobalClusterMessage
impl Debug for ModifyGlobalClusterMessage
Source§impl Default for ModifyGlobalClusterMessage
impl Default for ModifyGlobalClusterMessage
Source§fn default() -> ModifyGlobalClusterMessage
fn default() -> ModifyGlobalClusterMessage
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ModifyGlobalClusterMessage
Auto Trait Implementations§
impl Freeze for ModifyGlobalClusterMessage
impl RefUnwindSafe for ModifyGlobalClusterMessage
impl Send for ModifyGlobalClusterMessage
impl Sync for ModifyGlobalClusterMessage
impl Unpin for ModifyGlobalClusterMessage
impl UnwindSafe for ModifyGlobalClusterMessage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more