Describe Db Major Engine Versions
| rds_describe_db_major_engine_versions | R Documentation |
Describes the properties of specific major versions of DB engines¶
Description¶
Describes the properties of specific major versions of DB engines.
Usage¶
rds_describe_db_major_engine_versions(Engine, MajorEngineVersion,
Marker, MaxRecords)
Arguments¶
Engine |
The database engine to return major version details for. Valid Values:
|
MajorEngineVersion |
A specific database major engine version to return details for. Example: |
Marker |
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 |
The maximum number of records to include in the response. If more
than the Default: 100 |
Value¶
A list with the following syntax:
list(
DBMajorEngineVersions = list(
list(
Engine = "string",
MajorEngineVersion = "string",
SupportedEngineLifecycles = list(
list(
LifecycleSupportName = "open-source-rds-standard-support"|"open-source-rds-extended-support",
LifecycleSupportStartDate = as.POSIXct(
"2015-01-01"
),
LifecycleSupportEndDate = as.POSIXct(
"2015-01-01"
)
)
)
)
),
Marker = "string"
)
Request syntax¶
svc$describe_db_major_engine_versions(
Engine = "string",
MajorEngineVersion = "string",
Marker = "string",
MaxRecords = 123
)