#[non_exhaustive]pub struct StartDbClusterInput {
pub db_cluster_identifier: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.db_cluster_identifier: Option<String>
The identifier of the cluster to restart. Example: docdb-2019-05-28-15-24-52
Implementations§
source§impl StartDbClusterInput
impl StartDbClusterInput
sourcepub fn db_cluster_identifier(&self) -> Option<&str>
pub fn db_cluster_identifier(&self) -> Option<&str>
The identifier of the cluster to restart. Example: docdb-2019-05-28-15-24-52
source§impl StartDbClusterInput
impl StartDbClusterInput
sourcepub fn builder() -> StartDbClusterInputBuilder
pub fn builder() -> StartDbClusterInputBuilder
Creates a new builder-style object to manufacture StartDbClusterInput
.
Trait Implementations§
source§impl Clone for StartDbClusterInput
impl Clone for StartDbClusterInput
source§fn clone(&self) -> StartDbClusterInput
fn clone(&self) -> StartDbClusterInput
Returns a copy 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 StartDbClusterInput
impl Debug for StartDbClusterInput
source§impl PartialEq for StartDbClusterInput
impl PartialEq for StartDbClusterInput
source§fn eq(&self, other: &StartDbClusterInput) -> bool
fn eq(&self, other: &StartDbClusterInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StartDbClusterInput
Auto Trait Implementations§
impl RefUnwindSafe for StartDbClusterInput
impl Send for StartDbClusterInput
impl Sync for StartDbClusterInput
impl Unpin for StartDbClusterInput
impl UnwindSafe for StartDbClusterInput
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