logo
pub struct OptionGroupOption {
Show 16 fields pub default_port: Option<i64>, pub description: Option<String>, pub engine_name: Option<String>, pub major_engine_version: Option<String>, pub minimum_required_minor_engine_version: Option<String>, pub name: Option<String>, pub option_group_option_settings: Option<Vec<OptionGroupOptionSetting>>, pub option_group_option_versions: Option<Vec<OptionVersion>>, pub options_conflicts_with: Option<Vec<String>>, pub options_depended_on: Option<Vec<String>>, pub permanent: Option<bool>, pub persistent: Option<bool>, pub port_required: Option<bool>, pub requires_auto_minor_engine_version_upgrade: Option<bool>, pub supports_option_version_downgrade: Option<bool>, pub vpc_only: Option<bool>,
}
Expand description

Available option.

Fields

default_port: Option<i64>

If the option requires a port, specifies the default port for the option.

description: Option<String>

The description of the option.

engine_name: Option<String>

The name of the engine that this option can be applied to.

major_engine_version: Option<String>

Indicates the major engine version that the option is available for.

minimum_required_minor_engine_version: Option<String>

The minimum required engine version for the option to be applied.

name: Option<String>

The name of the option.

option_group_option_settings: Option<Vec<OptionGroupOptionSetting>>

The option settings that are available (and the default value) for each option in an option group.

option_group_option_versions: Option<Vec<OptionVersion>>

The versions that are available for the option.

options_conflicts_with: Option<Vec<String>>

The options that conflict with this option.

options_depended_on: Option<Vec<String>>

The options that are prerequisites for this option.

permanent: Option<bool>

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.

persistent: Option<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.

port_required: Option<bool>

Specifies whether the option requires a port.

requires_auto_minor_engine_version_upgrade: Option<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.

supports_option_version_downgrade: Option<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.

vpc_only: Option<bool>

If true, you can only use this option with a DB instance that is in a VPC.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more