Skip to content

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:

  • aurora-mysql

  • aurora-postgresql

  • custom-sqlserver-ee

  • custom-sqlserver-se

  • custom-sqlserver-web

  • db2-ae

  • db2-se

  • mariadb

  • mysql

  • oracle-ee

  • oracle-ee-cdb

  • oracle-se2

  • oracle-se2-cdb

  • postgres

  • sqlserver-ee

  • sqlserver-se

  • sqlserver-ex

  • sqlserver-web

MajorEngineVersion

A specific database major engine version to return details for.

Example: 8.4

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.

MaxRecords

The maximum number of records to include in the response. If more than the MaxRecords value is available, a pagination token called a marker is included in the response so you can retrieve the remaining results.

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
)