pub struct DescribeDBClusterParametersMessage {
pub db_cluster_parameter_group_name: String,
pub filters: Option<Vec<Filter>>,
pub marker: Option<String>,
pub max_records: Option<i64>,
pub source: Option<String>,
}
Expand description
Represents the input to DescribeDBClusterParameters.
Fields§
§db_cluster_parameter_group_name: String
The name of a specific cluster parameter group to return parameter 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.
source: Option<String>
A value that indicates to return only parameters for a specific source. Parameter sources can be engine
, service
, or customer
.
Trait Implementations§
Source§impl Clone for DescribeDBClusterParametersMessage
impl Clone for DescribeDBClusterParametersMessage
Source§fn clone(&self) -> DescribeDBClusterParametersMessage
fn clone(&self) -> DescribeDBClusterParametersMessage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for DescribeDBClusterParametersMessage
impl Default for DescribeDBClusterParametersMessage
Source§fn default() -> DescribeDBClusterParametersMessage
fn default() -> DescribeDBClusterParametersMessage
Source§impl PartialEq for DescribeDBClusterParametersMessage
impl PartialEq for DescribeDBClusterParametersMessage
Source§fn eq(&self, other: &DescribeDBClusterParametersMessage) -> bool
fn eq(&self, other: &DescribeDBClusterParametersMessage) -> bool
self
and other
values to be equal, and is used by ==
.