Struct aws_sdk_rds::operation::describe_engine_default_parameters::DescribeEngineDefaultParametersInput
source · #[non_exhaustive]pub struct DescribeEngineDefaultParametersInput {
pub db_parameter_group_family: Option<String>,
pub filters: Option<Vec<Filter>>,
pub max_records: Option<i32>,
pub marker: Option<String>,
}Expand description
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_parameter_group_family: Option<String>The name of the DB parameter group family.
Valid Values:
-
aurora-mysql5.7 -
aurora-mysql8.0 -
aurora-postgresql10 -
aurora-postgresql11 -
aurora-postgresql12 -
aurora-postgresql13 -
aurora-postgresql14 -
custom-oracle-ee-19 -
db2-ae -
db2-se -
mariadb10.2 -
mariadb10.3 -
mariadb10.4 -
mariadb10.5 -
mariadb10.6 -
mysql5.7 -
mysql8.0 -
oracle-ee-19 -
oracle-ee-cdb-19 -
oracle-ee-cdb-21 -
oracle-se2-19 -
oracle-se2-cdb-19 -
oracle-se2-cdb-21 -
postgres10 -
postgres11 -
postgres12 -
postgres13 -
postgres14 -
sqlserver-ee-11.0 -
sqlserver-ee-12.0 -
sqlserver-ee-13.0 -
sqlserver-ee-14.0 -
sqlserver-ee-15.0 -
sqlserver-ex-11.0 -
sqlserver-ex-12.0 -
sqlserver-ex-13.0 -
sqlserver-ex-14.0 -
sqlserver-ex-15.0 -
sqlserver-se-11.0 -
sqlserver-se-12.0 -
sqlserver-se-13.0 -
sqlserver-se-14.0 -
sqlserver-se-15.0 -
sqlserver-web-11.0 -
sqlserver-web-12.0 -
sqlserver-web-13.0 -
sqlserver-web-14.0 -
sqlserver-web-15.0
filters: Option<Vec<Filter>>This parameter isn't currently supported.
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 DescribeEngineDefaultParameters request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
Implementations§
source§impl DescribeEngineDefaultParametersInput
impl DescribeEngineDefaultParametersInput
sourcepub fn db_parameter_group_family(&self) -> Option<&str>
pub fn db_parameter_group_family(&self) -> Option<&str>
The name of the DB parameter group family.
Valid Values:
-
aurora-mysql5.7 -
aurora-mysql8.0 -
aurora-postgresql10 -
aurora-postgresql11 -
aurora-postgresql12 -
aurora-postgresql13 -
aurora-postgresql14 -
custom-oracle-ee-19 -
db2-ae -
db2-se -
mariadb10.2 -
mariadb10.3 -
mariadb10.4 -
mariadb10.5 -
mariadb10.6 -
mysql5.7 -
mysql8.0 -
oracle-ee-19 -
oracle-ee-cdb-19 -
oracle-ee-cdb-21 -
oracle-se2-19 -
oracle-se2-cdb-19 -
oracle-se2-cdb-21 -
postgres10 -
postgres11 -
postgres12 -
postgres13 -
postgres14 -
sqlserver-ee-11.0 -
sqlserver-ee-12.0 -
sqlserver-ee-13.0 -
sqlserver-ee-14.0 -
sqlserver-ee-15.0 -
sqlserver-ex-11.0 -
sqlserver-ex-12.0 -
sqlserver-ex-13.0 -
sqlserver-ex-14.0 -
sqlserver-ex-15.0 -
sqlserver-se-11.0 -
sqlserver-se-12.0 -
sqlserver-se-13.0 -
sqlserver-se-14.0 -
sqlserver-se-15.0 -
sqlserver-web-11.0 -
sqlserver-web-12.0 -
sqlserver-web-13.0 -
sqlserver-web-14.0 -
sqlserver-web-15.0
sourcepub fn filters(&self) -> &[Filter]
pub fn filters(&self) -> &[Filter]
This parameter isn't currently supported.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .filters.is_none().
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.
source§impl DescribeEngineDefaultParametersInput
impl DescribeEngineDefaultParametersInput
sourcepub fn builder() -> DescribeEngineDefaultParametersInputBuilder
pub fn builder() -> DescribeEngineDefaultParametersInputBuilder
Creates a new builder-style object to manufacture DescribeEngineDefaultParametersInput.
Trait Implementations§
source§impl Clone for DescribeEngineDefaultParametersInput
impl Clone for DescribeEngineDefaultParametersInput
source§fn clone(&self) -> DescribeEngineDefaultParametersInput
fn clone(&self) -> DescribeEngineDefaultParametersInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for DescribeEngineDefaultParametersInput
impl PartialEq for DescribeEngineDefaultParametersInput
source§fn eq(&self, other: &DescribeEngineDefaultParametersInput) -> bool
fn eq(&self, other: &DescribeEngineDefaultParametersInput) -> bool
self and other values to be equal, and is used
by ==.