#[non_exhaustive]pub struct ModifyDbClusterEndpointInput {
pub db_cluster_endpoint_identifier: Option<String>,
pub endpoint_type: Option<String>,
pub static_members: Option<Vec<String>>,
pub excluded_members: Option<Vec<String>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.db_cluster_endpoint_identifier: Option<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.
static_members: Option<Vec<String>>List of DB instance identifiers that are part of the custom endpoint group.
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.
Implementations§
source§impl ModifyDbClusterEndpointInput
impl ModifyDbClusterEndpointInput
sourcepub fn db_cluster_endpoint_identifier(&self) -> Option<&str>
pub fn db_cluster_endpoint_identifier(&self) -> Option<&str>
The identifier of the endpoint to modify. This parameter is stored as a lowercase string.
sourcepub fn endpoint_type(&self) -> Option<&str>
pub fn endpoint_type(&self) -> Option<&str>
The type of the endpoint. One of: READER, WRITER, ANY.
sourcepub fn static_members(&self) -> &[String]
pub fn static_members(&self) -> &[String]
List of DB instance identifiers that are part of the custom endpoint group.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .static_members.is_none().
sourcepub fn excluded_members(&self) -> &[String]
pub fn excluded_members(&self) -> &[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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .excluded_members.is_none().
source§impl ModifyDbClusterEndpointInput
impl ModifyDbClusterEndpointInput
sourcepub fn builder() -> ModifyDbClusterEndpointInputBuilder
pub fn builder() -> ModifyDbClusterEndpointInputBuilder
Creates a new builder-style object to manufacture ModifyDbClusterEndpointInput.
Trait Implementations§
source§impl Clone for ModifyDbClusterEndpointInput
impl Clone for ModifyDbClusterEndpointInput
source§fn clone(&self) -> ModifyDbClusterEndpointInput
fn clone(&self) -> ModifyDbClusterEndpointInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ModifyDbClusterEndpointInput
impl Debug for ModifyDbClusterEndpointInput
source§impl PartialEq for ModifyDbClusterEndpointInput
impl PartialEq for ModifyDbClusterEndpointInput
source§fn eq(&self, other: &ModifyDbClusterEndpointInput) -> bool
fn eq(&self, other: &ModifyDbClusterEndpointInput) -> bool
self and other values to be equal, and is used
by ==.