Learn R Programming

paws.database (version 0.1.12)

rds_describe_option_group_options: Describes all available options

Description

Describes all available options.

Usage

rds_describe_option_group_options(EngineName, MajorEngineVersion,
  Filters, MaxRecords, Marker)

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
        )
      )
    )
  ),
  Marker = "string"
)

Arguments

EngineName

[required] A required parameter. Options available for the given engine name are described.

MajorEngineVersion

If specified, filters the results to include only options for the specified major engine version.

Filters

This parameter isn't currently supported.

MaxRecords

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.

Marker

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.

Request syntax

svc$describe_option_group_options(
  EngineName = "string",
  MajorEngineVersion = "string",
  Filters = list(
    list(
      Name = "string",
      Values = list(
        "string"
      )
    )
  ),
  MaxRecords = 123,
  Marker = "string"
)