Struct aws_sdk_rds::input::DescribeDbClusterEndpointsInput
source · [−]#[non_exhaustive]pub struct DescribeDbClusterEndpointsInput {
pub db_cluster_identifier: Option<String>,
pub db_cluster_endpoint_identifier: Option<String>,
pub filters: Option<Vec<Filter>>,
pub max_records: Option<i32>,
pub marker: Option<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_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 of the endpoint to describe. This parameter is stored as a lowercase string.
filters: Option<Vec<Filter>>A set of name-value pairs that define which endpoints to include in the output. The filters are specified as name-value pairs, in the format Name=endpoint_type,Values=endpoint_type1,endpoint_type2,.... Name can be one of: db-cluster-endpoint-type, db-cluster-endpoint-custom-type, db-cluster-endpoint-id, db-cluster-endpoint-status. Values for the db-cluster-endpoint-type filter can be one or more of: reader, writer, custom. Values for the db-cluster-endpoint-custom-type filter can be one or more of: reader, any. Values for the db-cluster-endpoint-status filter can be one or more of: available, creating, deleting, inactive, modifying.
max_records: Option<i32>The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so you can retrieve the remaining results.
Default: 100
Constraints: Minimum 20, maximum 100.
marker: Option<String> An optional pagination token provided by a previous DescribeDBClusterEndpoints request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
Implementations
sourceimpl DescribeDbClusterEndpointsInput
impl DescribeDbClusterEndpointsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeDBClusterEndpoints, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeDBClusterEndpoints, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeDBClusterEndpoints>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeDbClusterEndpointsInput
sourceimpl DescribeDbClusterEndpointsInput
impl DescribeDbClusterEndpointsInput
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 of the endpoint to describe. This parameter is stored as a lowercase string.
sourcepub fn filters(&self) -> Option<&[Filter]>
pub fn filters(&self) -> Option<&[Filter]>
A set of name-value pairs that define which endpoints to include in the output. The filters are specified as name-value pairs, in the format Name=endpoint_type,Values=endpoint_type1,endpoint_type2,.... Name can be one of: db-cluster-endpoint-type, db-cluster-endpoint-custom-type, db-cluster-endpoint-id, db-cluster-endpoint-status. Values for the db-cluster-endpoint-type filter can be one or more of: reader, writer, custom. Values for the db-cluster-endpoint-custom-type filter can be one or more of: reader, any. Values for the db-cluster-endpoint-status filter can be one or more of: available, creating, deleting, inactive, modifying.
sourcepub fn max_records(&self) -> Option<i32>
pub fn max_records(&self) -> Option<i32>
The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so you can retrieve the remaining results.
Default: 100
Constraints: Minimum 20, maximum 100.
Trait Implementations
sourceimpl Clone for DescribeDbClusterEndpointsInput
impl Clone for DescribeDbClusterEndpointsInput
sourcefn clone(&self) -> DescribeDbClusterEndpointsInput
fn clone(&self) -> DescribeDbClusterEndpointsInput
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 more
sourceimpl PartialEq<DescribeDbClusterEndpointsInput> for DescribeDbClusterEndpointsInput
impl PartialEq<DescribeDbClusterEndpointsInput> for DescribeDbClusterEndpointsInput
sourcefn eq(&self, other: &DescribeDbClusterEndpointsInput) -> bool
fn eq(&self, other: &DescribeDbClusterEndpointsInput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DescribeDbClusterEndpointsInput) -> bool
fn ne(&self, other: &DescribeDbClusterEndpointsInput) -> bool
This method tests for !=.
impl StructuralPartialEq for DescribeDbClusterEndpointsInput
Auto Trait Implementations
impl RefUnwindSafe for DescribeDbClusterEndpointsInput
impl Send for DescribeDbClusterEndpointsInput
impl Sync for DescribeDbClusterEndpointsInput
impl Unpin for DescribeDbClusterEndpointsInput
impl UnwindSafe for DescribeDbClusterEndpointsInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more