Struct aws_sdk_rds::input::ModifyDbClusterEndpointInput
source · [−]#[non_exhaustive]pub struct ModifyDbClusterEndpointInput { /* private fields */ }Implementations
sourceimpl ModifyDbClusterEndpointInput
impl ModifyDbClusterEndpointInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyDBClusterEndpoint, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyDBClusterEndpoint, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ModifyDBClusterEndpoint>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ModifyDbClusterEndpointInput.
sourceimpl 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) -> Option<&[String]>
pub fn static_members(&self) -> Option<&[String]>
List of DB instance identifiers that are part of the custom endpoint group.
sourcepub fn excluded_members(&self) -> Option<&[String]>
pub fn excluded_members(&self) -> Option<&[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.
Trait Implementations
sourceimpl Clone for ModifyDbClusterEndpointInput
impl Clone for ModifyDbClusterEndpointInput
sourcefn clone(&self) -> ModifyDbClusterEndpointInput
fn clone(&self) -> ModifyDbClusterEndpointInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ModifyDbClusterEndpointInput
impl Debug for ModifyDbClusterEndpointInput
sourceimpl PartialEq<ModifyDbClusterEndpointInput> for ModifyDbClusterEndpointInput
impl PartialEq<ModifyDbClusterEndpointInput> for ModifyDbClusterEndpointInput
sourcefn eq(&self, other: &ModifyDbClusterEndpointInput) -> bool
fn eq(&self, other: &ModifyDbClusterEndpointInput) -> bool
impl StructuralPartialEq for ModifyDbClusterEndpointInput
Auto Trait Implementations
impl RefUnwindSafe for ModifyDbClusterEndpointInput
impl Send for ModifyDbClusterEndpointInput
impl Sync for ModifyDbClusterEndpointInput
impl Unpin for ModifyDbClusterEndpointInput
impl UnwindSafe for ModifyDbClusterEndpointInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more