pub struct ModifyDBClusterEndpointMessage {
pub db_cluster_endpoint_identifier: String,
pub endpoint_type: Option<String>,
pub excluded_members: Option<Vec<String>>,
pub static_members: Option<Vec<String>>,
}
Fields§
§db_cluster_endpoint_identifier: String
The identifier of the endpoint to modify. This parameter is stored as a lowercase string.
endpoint_type: Option<String>
The type of the endpoint. One of: READER
, WRITER
, ANY
.
excluded_members: Option<Vec<String>>
List of DB instance identifiers that aren't part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. Only relevant if the list of static members is empty.
static_members: Option<Vec<String>>
List of DB instance identifiers that are part of the custom endpoint group.
Trait Implementations§
Source§impl Clone for ModifyDBClusterEndpointMessage
impl Clone for ModifyDBClusterEndpointMessage
Source§fn clone(&self) -> ModifyDBClusterEndpointMessage
fn clone(&self) -> ModifyDBClusterEndpointMessage
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 Default for ModifyDBClusterEndpointMessage
impl Default for ModifyDBClusterEndpointMessage
Source§fn default() -> ModifyDBClusterEndpointMessage
fn default() -> ModifyDBClusterEndpointMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for ModifyDBClusterEndpointMessage
impl PartialEq for ModifyDBClusterEndpointMessage
Source§fn eq(&self, other: &ModifyDBClusterEndpointMessage) -> bool
fn eq(&self, other: &ModifyDBClusterEndpointMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyDBClusterEndpointMessage
Auto Trait Implementations§
impl Freeze for ModifyDBClusterEndpointMessage
impl RefUnwindSafe for ModifyDBClusterEndpointMessage
impl Send for ModifyDBClusterEndpointMessage
impl Sync for ModifyDBClusterEndpointMessage
impl Unpin for ModifyDBClusterEndpointMessage
impl UnwindSafe for ModifyDBClusterEndpointMessage
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