OptionGroupOption

data class OptionGroupOption(val dbSecurityGroupMemberships: List<String>? = null, val optionName: String, val optionSettings: List<OptionGroupOptionOptionSetting>? = null, val port: Int? = null, val version: String? = null, val vpcSecurityGroupMemberships: List<String>? = null)

Constructors

Link copied to clipboard
constructor(dbSecurityGroupMemberships: List<String>? = null, optionName: String, optionSettings: List<OptionGroupOptionOptionSetting>? = null, port: Int? = null, version: String? = null, vpcSecurityGroupMemberships: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

List of DB Security Groups for which the option is enabled.

Link copied to clipboard

Name of the option (e.g., MEMCACHED).

Link copied to clipboard

The option settings to apply. See option_settings Block below for more details.

Link copied to clipboard
val port: Int? = null

Port number when connecting to the option (e.g., 11211). Leaving out or removing port from your configuration does not remove or clear a port from the option in AWS. AWS may assign a default port. Not including port in your configuration means that the AWS provider will ignore a previously set value, a value set by AWS, and any port changes.

Link copied to clipboard
val version: String? = null

Version of the option (e.g., 13.1.0.0). Leaving out or removing version from your configuration does not remove or clear a version from the option in AWS. AWS may assign a default version. Not including version in your configuration means that the AWS provider will ignore a previously set value, a value set by AWS, and any version changes.

Link copied to clipboard

List of VPC Security Groups for which the option is enabled.