GetEngineVersionPlainArgs

data class GetEngineVersionPlainArgs(val engine: String? = null, val parameterGroupFamily: String? = null, val preferredVersions: List<String>? = null, val version: String? = null) : ConvertibleToJava<GetEngineVersionPlainArgs>

A collection of arguments for invoking getEngineVersion.

Constructors

Link copied to clipboard
constructor(engine: String? = null, parameterGroupFamily: String? = null, preferredVersions: List<String>? = null, version: String? = null)

Properties

Link copied to clipboard
val engine: String? = null

DB engine. (Default: neptune)

Link copied to clipboard

Name of a specific DB parameter group family. An example parameter group family is neptune1.

Link copied to clipboard

Ordered list of preferred engine versions. The first match in this list will be returned. If no preferred matches are found and the original search returned more than one result, an error is returned. If both the version and preferred_versions arguments are not configured, the data source will return the default version for the engine.

Link copied to clipboard
val version: String? = null

Version of the DB engine. For example, 1.0.1.0, 1.0.2.2, and 1.0.3.0. If both the version and preferred_versions arguments are not configured, the data source will return the default version for the engine.

Functions

Link copied to clipboard
open override fun toJava(): GetEngineVersionPlainArgs