Module: Aws::RDSDataService::Types

Defined in:
gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb

Defined Under Namespace

Classes: AccessDeniedException, ArrayValue, BadRequestException, BatchExecuteStatementRequest, BatchExecuteStatementResponse, BeginTransactionRequest, BeginTransactionResponse, ColumnMetadata, CommitTransactionRequest, CommitTransactionResponse, DatabaseErrorException, DatabaseNotFoundException, DatabaseUnavailableException, ExecuteSqlRequest, ExecuteSqlResponse, ExecuteStatementRequest, ExecuteStatementResponse, Field, ForbiddenException, HttpEndpointNotEnabledException, InternalServerErrorException, InvalidSecretException, NotFoundException, Record, ResultFrame, ResultSetMetadata, ResultSetOptions, RollbackTransactionRequest, RollbackTransactionResponse, SecretsErrorException, ServiceUnavailableError, SqlParameter, SqlStatementResult, StatementTimeoutException, StructValue, TransactionNotFoundException, UnsupportedResultException, UpdateResult, Value

Instance Attribute Summary collapse

Instance Attribute Details

#array_valueTypes::ArrayValue

An array of values.

Returns:



636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 636

class Field < Struct.new(
  :is_null,
  :boolean_value,
  :long_value,
  :double_value,
  :string_value,
  :blob_value,
  :array_value,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class IsNull < Field; end
  class BooleanValue < Field; end
  class LongValue < Field; end
  class DoubleValue < Field; end
  class StringValue < Field; end
  class BlobValue < Field; end
  class ArrayValue < Field; end
  class Unknown < Field; end
end

#array_valuesArray<Types::Value>

An array of column values.

Returns:



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 54

class ArrayValue < Struct.new(
  :boolean_values,
  :long_values,
  :double_values,
  :string_values,
  :array_values,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class BooleanValues < ArrayValue; end
  class LongValues < ArrayValue; end
  class DoubleValues < ArrayValue; end
  class StringValues < ArrayValue; end
  class ArrayValues < ArrayValue; end
  class Unknown < ArrayValue; end
end

#big_int_valueInteger

A value for a column of big integer data type.

Returns:

  • (Integer)


1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 1093

class Value < Struct.new(
  :is_null,
  :bit_value,
  :big_int_value,
  :int_value,
  :double_value,
  :real_value,
  :string_value,
  :blob_value,
  :array_values,
  :struct_value,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class IsNull < Value; end
  class BitValue < Value; end
  class BigIntValue < Value; end
  class IntValue < Value; end
  class DoubleValue < Value; end
  class RealValue < Value; end
  class StringValue < Value; end
  class BlobValue < Value; end
  class ArrayValues < Value; end
  class StructValue < Value; end
  class Unknown < Value; end
end

#bit_valueBoolean

A value for a column of BIT data type.

Returns:

  • (Boolean)


1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 1093

class Value < Struct.new(
  :is_null,
  :bit_value,
  :big_int_value,
  :int_value,
  :double_value,
  :real_value,
  :string_value,
  :blob_value,
  :array_values,
  :struct_value,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class IsNull < Value; end
  class BitValue < Value; end
  class BigIntValue < Value; end
  class IntValue < Value; end
  class DoubleValue < Value; end
  class RealValue < Value; end
  class StringValue < Value; end
  class BlobValue < Value; end
  class ArrayValues < Value; end
  class StructValue < Value; end
  class Unknown < Value; end
end

#blob_valueString

A value for a column of BLOB data type.

Returns:

  • (String)


636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 636

class Field < Struct.new(
  :is_null,
  :boolean_value,
  :long_value,
  :double_value,
  :string_value,
  :blob_value,
  :array_value,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class IsNull < Field; end
  class BooleanValue < Field; end
  class LongValue < Field; end
  class DoubleValue < Field; end
  class StringValue < Field; end
  class BlobValue < Field; end
  class ArrayValue < Field; end
  class Unknown < Field; end
end

#boolean_valueBoolean

A value of Boolean data type.

Returns:

  • (Boolean)


636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 636

class Field < Struct.new(
  :is_null,
  :boolean_value,
  :long_value,
  :double_value,
  :string_value,
  :blob_value,
  :array_value,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class IsNull < Field; end
  class BooleanValue < Field; end
  class LongValue < Field; end
  class DoubleValue < Field; end
  class StringValue < Field; end
  class BlobValue < Field; end
  class ArrayValue < Field; end
  class Unknown < Field; end
end

#boolean_valuesArray<Boolean>

An array of Boolean values.

Returns:

  • (Array<Boolean>)


54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 54

class ArrayValue < Struct.new(
  :boolean_values,
  :long_values,
  :double_values,
  :string_values,
  :array_values,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class BooleanValues < ArrayValue; end
  class LongValues < ArrayValue; end
  class DoubleValues < ArrayValue; end
  class StringValues < ArrayValue; end
  class ArrayValues < ArrayValue; end
  class Unknown < ArrayValue; end
end

#double_valueFloat

A value for a column of double data type.

Returns:

  • (Float)


636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 636

class Field < Struct.new(
  :is_null,
  :boolean_value,
  :long_value,
  :double_value,
  :string_value,
  :blob_value,
  :array_value,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class IsNull < Field; end
  class BooleanValue < Field; end
  class LongValue < Field; end
  class DoubleValue < Field; end
  class StringValue < Field; end
  class BlobValue < Field; end
  class ArrayValue < Field; end
  class Unknown < Field; end
end

#double_valuesArray<Float>

An array of floating-point numbers.

Returns:

  • (Array<Float>)


54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 54

class ArrayValue < Struct.new(
  :boolean_values,
  :long_values,
  :double_values,
  :string_values,
  :array_values,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class BooleanValues < ArrayValue; end
  class LongValues < ArrayValue; end
  class DoubleValues < ArrayValue; end
  class StringValues < ArrayValue; end
  class ArrayValues < ArrayValue; end
  class Unknown < ArrayValue; end
end

#int_valueInteger

A value for a column of integer data type.

Returns:

  • (Integer)


1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 1093

class Value < Struct.new(
  :is_null,
  :bit_value,
  :big_int_value,
  :int_value,
  :double_value,
  :real_value,
  :string_value,
  :blob_value,
  :array_values,
  :struct_value,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class IsNull < Value; end
  class BitValue < Value; end
  class BigIntValue < Value; end
  class IntValue < Value; end
  class DoubleValue < Value; end
  class RealValue < Value; end
  class StringValue < Value; end
  class BlobValue < Value; end
  class ArrayValues < Value; end
  class StructValue < Value; end
  class Unknown < Value; end
end

#is_nullBoolean

A NULL value.

Returns:

  • (Boolean)


636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 636

class Field < Struct.new(
  :is_null,
  :boolean_value,
  :long_value,
  :double_value,
  :string_value,
  :blob_value,
  :array_value,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class IsNull < Field; end
  class BooleanValue < Field; end
  class LongValue < Field; end
  class DoubleValue < Field; end
  class StringValue < Field; end
  class BlobValue < Field; end
  class ArrayValue < Field; end
  class Unknown < Field; end
end

#long_valueInteger

A value of long data type.

Returns:

  • (Integer)


636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 636

class Field < Struct.new(
  :is_null,
  :boolean_value,
  :long_value,
  :double_value,
  :string_value,
  :blob_value,
  :array_value,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class IsNull < Field; end
  class BooleanValue < Field; end
  class LongValue < Field; end
  class DoubleValue < Field; end
  class StringValue < Field; end
  class BlobValue < Field; end
  class ArrayValue < Field; end
  class Unknown < Field; end
end

#long_valuesArray<Integer>

An array of integers.

Returns:

  • (Array<Integer>)


54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 54

class ArrayValue < Struct.new(
  :boolean_values,
  :long_values,
  :double_values,
  :string_values,
  :array_values,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class BooleanValues < ArrayValue; end
  class LongValues < ArrayValue; end
  class DoubleValues < ArrayValue; end
  class StringValues < ArrayValue; end
  class ArrayValues < ArrayValue; end
  class Unknown < ArrayValue; end
end

#real_valueFloat

A value for a column of real data type.

Returns:

  • (Float)


1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 1093

class Value < Struct.new(
  :is_null,
  :bit_value,
  :big_int_value,
  :int_value,
  :double_value,
  :real_value,
  :string_value,
  :blob_value,
  :array_values,
  :struct_value,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class IsNull < Value; end
  class BitValue < Value; end
  class BigIntValue < Value; end
  class IntValue < Value; end
  class DoubleValue < Value; end
  class RealValue < Value; end
  class StringValue < Value; end
  class BlobValue < Value; end
  class ArrayValues < Value; end
  class StructValue < Value; end
  class Unknown < Value; end
end

#string_valueString

A value for a column of string data type.

Returns:

  • (String)


636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 636

class Field < Struct.new(
  :is_null,
  :boolean_value,
  :long_value,
  :double_value,
  :string_value,
  :blob_value,
  :array_value,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class IsNull < Field; end
  class BooleanValue < Field; end
  class LongValue < Field; end
  class DoubleValue < Field; end
  class StringValue < Field; end
  class BlobValue < Field; end
  class ArrayValue < Field; end
  class Unknown < Field; end
end

#string_valuesArray<String>

An array of strings.

Returns:

  • (Array<String>)


54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 54

class ArrayValue < Struct.new(
  :boolean_values,
  :long_values,
  :double_values,
  :string_values,
  :array_values,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class BooleanValues < ArrayValue; end
  class LongValues < ArrayValue; end
  class DoubleValues < ArrayValue; end
  class StringValues < ArrayValue; end
  class ArrayValues < ArrayValue; end
  class Unknown < ArrayValue; end
end

#struct_valueTypes::StructValue

A value for a column of STRUCT data type.

Returns:



1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 1093

class Value < Struct.new(
  :is_null,
  :bit_value,
  :big_int_value,
  :int_value,
  :double_value,
  :real_value,
  :string_value,
  :blob_value,
  :array_values,
  :struct_value,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class IsNull < Value; end
  class BitValue < Value; end
  class BigIntValue < Value; end
  class IntValue < Value; end
  class DoubleValue < Value; end
  class RealValue < Value; end
  class StringValue < Value; end
  class BlobValue < Value; end
  class ArrayValues < Value; end
  class StructValue < Value; end
  class Unknown < Value; end
end