#[non_exhaustive]pub struct CreateDbClusterEndpointInput {
pub db_cluster_identifier: Option<String>,
pub db_cluster_endpoint_identifier: Option<String>,
pub endpoint_type: Option<String>,
pub static_members: Option<Vec<String>>,
pub excluded_members: Option<Vec<String>>,
pub tags: Option<Vec<Tag>>,
}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_identifier: Option<String>The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.
db_cluster_endpoint_identifier: Option<String>The identifier to use for the new endpoint. 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. This parameter is relevant only if the list of static members is empty.
The tags to be assigned to the Amazon RDS resource.
Implementations§
source§impl CreateDbClusterEndpointInput
impl CreateDbClusterEndpointInput
sourcepub fn db_cluster_identifier(&self) -> Option<&str>
pub fn db_cluster_identifier(&self) -> Option<&str>
The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.
sourcepub fn db_cluster_endpoint_identifier(&self) -> Option<&str>
pub fn db_cluster_endpoint_identifier(&self) -> Option<&str>
The identifier to use for the new endpoint. 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. This parameter is relevant only 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().
The tags to be assigned to the Amazon RDS resource.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().
source§impl CreateDbClusterEndpointInput
impl CreateDbClusterEndpointInput
sourcepub fn builder() -> CreateDbClusterEndpointInputBuilder
pub fn builder() -> CreateDbClusterEndpointInputBuilder
Creates a new builder-style object to manufacture CreateDbClusterEndpointInput.
Trait Implementations§
source§impl Clone for CreateDbClusterEndpointInput
impl Clone for CreateDbClusterEndpointInput
source§fn clone(&self) -> CreateDbClusterEndpointInput
fn clone(&self) -> CreateDbClusterEndpointInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateDbClusterEndpointInput
impl Debug for CreateDbClusterEndpointInput
source§impl PartialEq for CreateDbClusterEndpointInput
impl PartialEq for CreateDbClusterEndpointInput
source§fn eq(&self, other: &CreateDbClusterEndpointInput) -> bool
fn eq(&self, other: &CreateDbClusterEndpointInput) -> bool
self and other values to be equal, and is used
by ==.