Describes all available options.
rds_describe_option_group_options(EngineName, MajorEngineVersion,
Filters, MaxRecords, Marker)
A list with the following syntax:
list(
OptionGroupOptions = list(
list(
Name = "string",
Description = "string",
EngineName = "string",
MajorEngineVersion = "string",
MinimumRequiredMinorEngineVersion = "string",
PortRequired = TRUE|FALSE,
DefaultPort = 123,
OptionsDependedOn = list(
"string"
),
OptionsConflictsWith = list(
"string"
),
Persistent = TRUE|FALSE,
Permanent = TRUE|FALSE,
RequiresAutoMinorEngineVersionUpgrade = TRUE|FALSE,
VpcOnly = TRUE|FALSE,
SupportsOptionVersionDowngrade = TRUE|FALSE,
OptionGroupOptionSettings = list(
list(
SettingName = "string",
SettingDescription = "string",
DefaultValue = "string",
ApplyType = "string",
AllowedValues = "string",
IsModifiable = TRUE|FALSE,
IsRequired = TRUE|FALSE,
MinimumEngineVersionPerAllowedValue = list(
list(
AllowedValue = "string",
MinimumEngineVersion = "string"
)
)
)
),
OptionGroupOptionVersions = list(
list(
Version = "string",
IsDefault = TRUE|FALSE
)
)
)
),
Marker = "string"
)
[required] A required parameter. Options available for the given engine name are described.
If specified, filters the results to include only options for the specified major engine version.
This parameter isn't currently supported.
The 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.
An 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
.
svc$describe_option_group_options(
EngineName = "string",
MajorEngineVersion = "string",
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
MaxRecords = 123,
Marker = "string"
)