Describe Engine Default Parameters
| rds_describe_engine_default_parameters | R Documentation |
Returns the default engine and system parameter information for the specified database engine¶
Description¶
Returns the default engine and system parameter information for the specified database engine.
Usage¶
Arguments¶
DBParameterGroupFamily[required] The name of the DB parameter group family.
Valid Values:
aurora-mysql5.7aurora-mysql8.0aurora-postgresql10aurora-postgresql11aurora-postgresql12aurora-postgresql13aurora-postgresql14custom-oracle-ee-19custom-oracle-ee-cdb-19db2-aedb2-semariadb10.2mariadb10.3mariadb10.4mariadb10.5mariadb10.6mysql5.7mysql8.0oracle-ee-19oracle-ee-cdb-19oracle-ee-cdb-21oracle-se2-19oracle-se2-cdb-19oracle-se2-cdb-21postgres10postgres11postgres12postgres13postgres14sqlserver-ee-11.0sqlserver-ee-12.0sqlserver-ee-13.0sqlserver-ee-14.0sqlserver-ee-15.0sqlserver-ex-11.0sqlserver-ex-12.0sqlserver-ex-13.0sqlserver-ex-14.0sqlserver-ex-15.0sqlserver-se-11.0sqlserver-se-12.0sqlserver-se-13.0sqlserver-se-14.0sqlserver-se-15.0sqlserver-web-11.0sqlserver-web-12.0sqlserver-web-13.0sqlserver-web-14.0sqlserver-web-15.0
FiltersThis parameter isn't currently supported.
MaxRecordsThe maximum number of records to include in the response. If more records exist than the specified
MaxRecordsvalue, 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.
MarkerAn optional pagination token provided by a previous
describe_engine_default_parametersrequest. If this parameter is specified, the response includes only records beyond the marker, up to the value specified byMaxRecords.
Value¶
A list with the following syntax:
list(
EngineDefaults = list(
DBParameterGroupFamily = "string",
Marker = "string",
Parameters = list(
list(
ParameterName = "string",
ParameterValue = "string",
Description = "string",
Source = "string",
ApplyType = "string",
DataType = "string",
AllowedValues = "string",
IsModifiable = TRUE|FALSE,
MinimumEngineVersion = "string",
ApplyMethod = "immediate"|"pending-reboot",
SupportedEngineModes = list(
"string"
)
)
)
)
)