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

Class: Aws::RDSDataService::Types::Field

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

Overview

Note:

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

{
  array_value: {
    array_values: [
      {
        # recursive ArrayValue
      },
    ],
    boolean_values: [false],
    double_values: [1.0],
    long_values: [1],
    string_values: ["String"],
  },
  blob_value: "data",
  boolean_value: false,
  double_value: 1.0,
  is_null: false,
  long_value: 1,
  string_value: "String",
}

Contains a value.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#array_valueTypes::ArrayValue

An array of values.

Returns:

#blob_valueString

A value of BLOB data type.

Returns:

  • (String)

    A value of BLOB data type.

#boolean_valueBoolean

A value of Boolean data type.

Returns:

  • (Boolean)

    A value of Boolean data type.

#double_valueFloat

A value of double data type.

Returns:

  • (Float)

    A value of double data type.

#is_nullBoolean

A NULL value.

Returns:

  • (Boolean)

    A NULL value.

#long_valueInteger

A value of long data type.

Returns:

  • (Integer)

    A value of long data type.

#string_valueString

A value of string data type.

Returns:

  • (String)

    A value of string data type.