Class: Aws::RDS::Types::CreateOptionGroupMessage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rds/types.rb

Overview

Note:

When making an API call, you may pass CreateOptionGroupMessage data as a hash:

{
  option_group_name: "String", # required
  engine_name: "String", # required
  major_engine_version: "String", # required
  option_group_description: "String", # required
  tags: [
    {
      key: "String",
      value: "String",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#engine_nameString

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

Returns:

  • (String)


3743
3744
3745
3746
3747
3748
3749
3750
# File 'lib/aws-sdk-rds/types.rb', line 3743

class CreateOptionGroupMessage < Struct.new(
  :option_group_name,
  :engine_name,
  :major_engine_version,
  :option_group_description,
  :tags)
  include Aws::Structure
end

#major_engine_versionString

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

Returns:

  • (String)


3743
3744
3745
3746
3747
3748
3749
3750
# File 'lib/aws-sdk-rds/types.rb', line 3743

class CreateOptionGroupMessage < Struct.new(
  :option_group_name,
  :engine_name,
  :major_engine_version,
  :option_group_description,
  :tags)
  include Aws::Structure
end

#option_group_descriptionString

The description of the option group.

Returns:

  • (String)


3743
3744
3745
3746
3747
3748
3749
3750
# File 'lib/aws-sdk-rds/types.rb', line 3743

class CreateOptionGroupMessage < Struct.new(
  :option_group_name,
  :engine_name,
  :major_engine_version,
  :option_group_description,
  :tags)
  include Aws::Structure
end

#option_group_nameString

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`

Returns:

  • (String)


3743
3744
3745
3746
3747
3748
3749
3750
# File 'lib/aws-sdk-rds/types.rb', line 3743

class CreateOptionGroupMessage < Struct.new(
  :option_group_name,
  :engine_name,
  :major_engine_version,
  :option_group_description,
  :tags)
  include Aws::Structure
end

#tagsArray<Types::Tag>

A list of tags. For more information, see [Tagging Amazon RDS Resources] in the *Amazon RDS User Guide.*

[1]: docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html

Returns:



3743
3744
3745
3746
3747
3748
3749
3750
# File 'lib/aws-sdk-rds/types.rb', line 3743

class CreateOptionGroupMessage < Struct.new(
  :option_group_name,
  :engine_name,
  :major_engine_version,
  :option_group_description,
  :tags)
  include Aws::Structure
end