Types

Link copied to clipboard
data class ArrayValue(val value: ArrayValue) : Field

An array of values.

Link copied to clipboard
data class BlobValue(val value: ByteArray) : Field

A value of BLOB data type.

Link copied to clipboard
data class BooleanValue(val value: Boolean) : Field

A value of Boolean data type.

Link copied to clipboard
data class DoubleValue(val value: Double) : Field

A value of double data type.

Link copied to clipboard
data class IsNull(val value: Boolean) : Field

A NULL value.

Link copied to clipboard
data class LongValue(val value: Long) : Field

A value of long data type.

Link copied to clipboard
object SdkUnknown : Field
Link copied to clipboard
data class StringValue(val value: String) : Field

A value of string data type.

Functions

Link copied to clipboard

Casts this Field as a ArrayValue and retrieves its aws.sdk.kotlin.services.rdsdata.model.ArrayValue value. Throws an exception if the Field is not a ArrayValue.

Link copied to clipboard

Casts this Field as a ArrayValue and retrieves its aws.sdk.kotlin.services.rdsdata.model.ArrayValue value. Returns null if the Field is not a ArrayValue.

Link copied to clipboard

Casts this Field as a BlobValue and retrieves its kotlin.ByteArray value. Throws an exception if the Field is not a BlobValue.

Link copied to clipboard

Casts this Field as a BlobValue and retrieves its kotlin.ByteArray value. Returns null if the Field is not a BlobValue.

Link copied to clipboard

Casts this Field as a BooleanValue and retrieves its kotlin.Boolean value. Throws an exception if the Field is not a BooleanValue.

Link copied to clipboard

Casts this Field as a BooleanValue and retrieves its kotlin.Boolean value. Returns null if the Field is not a BooleanValue.

Link copied to clipboard

Casts this Field as a DoubleValue and retrieves its kotlin.Double value. Throws an exception if the Field is not a DoubleValue.

Link copied to clipboard

Casts this Field as a DoubleValue and retrieves its kotlin.Double value. Returns null if the Field is not a DoubleValue.

Link copied to clipboard

Casts this Field as a IsNull and retrieves its kotlin.Boolean value. Throws an exception if the Field is not a IsNull.

Link copied to clipboard

Casts this Field as a IsNull and retrieves its kotlin.Boolean value. Returns null if the Field is not a IsNull.

Link copied to clipboard

Casts this Field as a LongValue and retrieves its kotlin.Long value. Throws an exception if the Field is not a LongValue.

Link copied to clipboard

Casts this Field as a LongValue and retrieves its kotlin.Long value. Returns null if the Field is not a LongValue.

Link copied to clipboard

Casts this Field as a StringValue and retrieves its kotlin.String value. Throws an exception if the Field is not a StringValue.

Link copied to clipboard

Casts this Field as a StringValue and retrieves its kotlin.String value. Returns null if the Field is not a StringValue.