Describe Option Group Options
| rds_describe_option_group_options | R Documentation |
Describes all available options for the specified engine¶
Description¶
Describes all available options for the specified engine.
Usage¶
Arguments¶
EngineName[required] The name of the engine to describe options for.
Valid Values:
db2-aedb2-semariadbmysqloracle-eeoracle-ee-cdboracle-se2oracle-se2-cdbpostgressqlserver-eesqlserver-sesqlserver-exsqlserver-web
MajorEngineVersionIf specified, filters the results to include only options for the specified major engine version.
FiltersThis parameter isn't currently supported.
MaxRecordsThe maximum number of records to include in the response. If more records exist than the specified
MaxRecordsvalue, 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.
MarkerAn 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.
Value¶
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
)
),
CopyableCrossAccount = TRUE|FALSE
)
),
Marker = "string"
)