Learn R Programming

paws.database (version 0.1.5)

rds_create_option_group: Creates a new option group

Description

Creates a new option group. You can create up to 20 option groups.

Usage

rds_create_option_group(OptionGroupName, EngineName, MajorEngineVersion,
  OptionGroupDescription, Tags)

Arguments

OptionGroupName

[required] Specifies the name of the option group to be created.

Constraints:

  • Must be 1 to 255 letters, numbers, or hyphens

  • First character must be a letter

  • Can't end with a hyphen or contain two consecutive hyphens

Example: myoptiongroup

EngineName

[required] Specifies the name of the engine that this option group should be associated with.

MajorEngineVersion

[required] Specifies the major version of the engine that this option group should be associated with.

OptionGroupDescription

[required] The description of the option group.

Tags

Tags to assign to the option group.

Request syntax

svc$create_option_group(
  OptionGroupName = "string",
  EngineName = "string",
  MajorEngineVersion = "string",
  OptionGroupDescription = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)