pub struct DescribeDBClusterParameterGroupsMessage {
pub db_cluster_parameter_group_name: Option<String>,
pub filters: Option<Vec<Filter>>,
pub marker: Option<String>,
pub max_records: Option<i64>,
}
Expand description
Represents the input to DescribeDBClusterParameterGroups.
Fields§
§db_cluster_parameter_group_name: Option<String>
The name of a specific cluster parameter group to return details for.
Constraints:
-
If provided, must match the name of an existing
DBClusterParameterGroup
.
filters: Option<Vec<Filter>>
This parameter is not currently supported.
marker: Option<String>
An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords
.
max_records: Option<i64>
The maximum number of records to include in the response. If more records exist than the specified MaxRecords
value, a pagination token (marker) is included in the response so that the remaining results can be retrieved.
Default: 100
Constraints: Minimum 20, maximum 100.
Trait Implementations§
Source§impl Clone for DescribeDBClusterParameterGroupsMessage
impl Clone for DescribeDBClusterParameterGroupsMessage
Source§fn clone(&self) -> DescribeDBClusterParameterGroupsMessage
fn clone(&self) -> DescribeDBClusterParameterGroupsMessage
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 DescribeDBClusterParameterGroupsMessage
impl Default for DescribeDBClusterParameterGroupsMessage
Source§fn default() -> DescribeDBClusterParameterGroupsMessage
fn default() -> DescribeDBClusterParameterGroupsMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeDBClusterParameterGroupsMessage
impl PartialEq for DescribeDBClusterParameterGroupsMessage
Source§fn eq(&self, other: &DescribeDBClusterParameterGroupsMessage) -> bool
fn eq(&self, other: &DescribeDBClusterParameterGroupsMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeDBClusterParameterGroupsMessage
Auto Trait Implementations§
impl Freeze for DescribeDBClusterParameterGroupsMessage
impl RefUnwindSafe for DescribeDBClusterParameterGroupsMessage
impl Send for DescribeDBClusterParameterGroupsMessage
impl Sync for DescribeDBClusterParameterGroupsMessage
impl Unpin for DescribeDBClusterParameterGroupsMessage
impl UnwindSafe for DescribeDBClusterParameterGroupsMessage
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