OptionGroupOption
public struct OptionGroupOption : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
If the option requires a port, specifies the default port for the option.
Declaration
Swift
public let defaultPort: Int?
-
The description of the option.
Declaration
Swift
public let description: String?
-
The name of the engine that this option can be applied to.
Declaration
Swift
public let engineName: String?
-
Indicates the major engine version that the option is available for.
Declaration
Swift
public let majorEngineVersion: String?
-
The minimum required engine version for the option to be applied.
Declaration
Swift
public let minimumRequiredMinorEngineVersion: String?
-
The name of the option.
Declaration
Swift
public let name: String?
-
The option settings that are available (and the default value) for each option in an option group.
Declaration
Swift
public let optionGroupOptionSettings: [OptionGroupOptionSetting]?
-
The versions that are available for the option.
Declaration
Swift
public let optionGroupOptionVersions: [OptionVersion]?
-
The options that conflict with this option.
Declaration
Swift
public let optionsConflictsWith: [String]?
-
The options that are prerequisites for this option.
Declaration
Swift
public let optionsDependedOn: [String]?
-
Permanent options can never be removed from an option group. An option group containing a permanent option can’t be removed from a DB instance.
Declaration
Swift
public let permanent: Bool?
-
Persistent options can’t be removed from an option group while DB instances are associated with the option group. If you disassociate all DB instances from the option group, your can remove the persistent option from the option group.
Declaration
Swift
public let persistent: Bool?
-
Specifies whether the option requires a port.
Declaration
Swift
public let portRequired: Bool?
-
If true, you must enable the Auto Minor Version Upgrade setting for your DB instance before you can use this option. You can enable Auto Minor Version Upgrade when you first create your DB instance, or by modifying your DB instance later.
Declaration
Swift
public let requiresAutoMinorEngineVersionUpgrade: Bool?
-
If true, you can change the option to an earlier version of the option. This only applies to options that have different versions available.
Declaration
Swift
public let supportsOptionVersionDowngrade: Bool?
-
If true, you can only use this option with a DB instance that is in a VPC.
Declaration
Swift
public let vpcOnly: Bool?
-
init(defaultPort:description:engineName:majorEngineVersion:minimumRequiredMinorEngineVersion:name:optionGroupOptionSettings:optionGroupOptionVersions:optionsConflictsWith:optionsDependedOn:permanent:persistent:portRequired:requiresAutoMinorEngineVersionUpgrade:supportsOptionVersionDowngrade:vpcOnly:)
Undocumented
Declaration
Swift
public init(defaultPort: Int? = nil, description: String? = nil, engineName: String? = nil, majorEngineVersion: String? = nil, minimumRequiredMinorEngineVersion: String? = nil, name: String? = nil, optionGroupOptionSettings: [OptionGroupOptionSetting]? = nil, optionGroupOptionVersions: [OptionVersion]? = nil, optionsConflictsWith: [String]? = nil, optionsDependedOn: [String]? = nil, permanent: Bool? = nil, persistent: Bool? = nil, portRequired: Bool? = nil, requiresAutoMinorEngineVersionUpgrade: Bool? = nil, supportsOptionVersionDowngrade: Bool? = nil, vpcOnly: Bool? = nil)