You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Lightsail::Types::RelationalDatabaseParameter

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing RelationalDatabaseParameter as input to an Aws::Client method, you can use a vanilla Hash:

{
  allowed_values: "string",
  apply_method: "string",
  apply_type: "string",
  data_type: "string",
  description: "string",
  is_modifiable: false,
  parameter_name: "string",
  parameter_value: "string",
}

Describes the parameters of a database.

Instance Attribute Summary collapse

Instance Attribute Details

#allowed_valuesString

Specifies the valid range of values for the parameter.

Returns:

  • (String)

    Specifies the valid range of values for the parameter.

#apply_methodString

Indicates when parameter updates are applied.

Can be immediate or pending-reboot.

Returns:

  • (String)

    Indicates when parameter updates are applied.

#apply_typeString

Specifies the engine-specific parameter type.

Returns:

  • (String)

    Specifies the engine-specific parameter type.

#data_typeString

Specifies the valid data type for the parameter.

Returns:

  • (String)

    Specifies the valid data type for the parameter.

#descriptionString

Provides a description of the parameter.

Returns:

  • (String)

    Provides a description of the parameter.

#is_modifiableBoolean

A Boolean value indicating whether the parameter can be modified.

Returns:

  • (Boolean)

    A Boolean value indicating whether the parameter can be modified.

#parameter_nameString

Specifies the name of the parameter.

Returns:

  • (String)

    Specifies the name of the parameter.

#parameter_valueString

Specifies the value of the parameter.

Returns:

  • (String)

    Specifies the value of the parameter.