Skip to main content

option_group_options

Creates, updates, deletes, gets or lists an option_group_options resource.

Overview

Nameoption_group_options
TypeResource
Idaws.rds.option_group_options

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
copyable_cross_accountbooleanIndicates whether the option can be copied across Amazon Web Services accounts.
default_portintegerIf the option requires a port, specifies the default port for the option.
descriptionstringThe description of the option.
engine_namestringThe name of the engine that this option can be applied to.
major_engine_versionstringIndicates the major engine version that the option is available for.
minimum_required_minor_engine_versionstringThe minimum required engine version for the option to be applied.
namestringThe name of the option.
option_group_option_settingsstringThe option settings that are available (and the default value) for each option in an option group.
option_group_option_versionsstringThe versions that are available for the option.
options_conflicts_withstringThe options that conflict with this option.
options_depended_onstringThe options that are prerequisites for this option.
permanentbooleanPermanent options can never be removed from an option group. An option group containing a permanent option can't be removed from a DB instance.
persistentbooleanPersistent 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_requiredbooleanIndicates whether the option requires a port.
requires_auto_minor_engine_version_upgradebooleanIf 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_downgradebooleanIf true, you can change the option to an earlier version of the option. This only applies to options that have different versions available.
vpc_onlybooleanIf true, you can only use this option with a DB instance that is in a VPC.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_option_group_optionsselectEngineName, regionMajorEngineVersion, Filters, MaxRecords, MarkerDescribes all available options for the specified engine.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
EngineNamestringThe name of the engine to describe options for. Valid Values: db2-ae db2-ce db2-se mariadb mysql oracle-ee oracle-ee-cdb oracle-se2 oracle-se2-cdb postgres sqlserver-ee sqlserver-se sqlserver-ex sqlserver-web
regionstringAWS region (default: us-east-1)
FiltersarrayThis parameter isn't currently supported.
MajorEngineVersionstringIf specified, filters the results to include only options for the specified major engine version.
MarkerstringAn 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.
MaxRecordsintegerThe maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that you can retrieve the remaining results. Default: 100 Constraints: Minimum 20, maximum 100.

SELECT examples

Describes all available options for the specified engine.

SELECT
copyable_cross_account,
default_port,
description,
engine_name,
major_engine_version,
minimum_required_minor_engine_version,
name,
option_group_option_settings,
option_group_option_versions,
options_conflicts_with,
options_depended_on,
permanent,
persistent,
port_required,
requires_auto_minor_engine_version_upgrade,
supports_option_version_downgrade,
vpc_only
FROM aws.rds.option_group_options
WHERE EngineName = '{{ EngineName }}' -- required
AND region = '{{ region }}' -- required
AND MajorEngineVersion = '{{ MajorEngineVersion }}'
AND Filters = '{{ Filters }}'
AND MaxRecords = '{{ MaxRecords }}'
AND Marker = '{{ Marker }}'
;