Class: Aws::RDSDataService::Types::ResultFrame
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDSDataService::Types::ResultFrame
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rdsdataservice/types.rb
Overview
The result set returned by a SQL statement.
<note markdown=“1”> This data structure is only used with the deprecated ‘ExecuteSql` operation. Use the `BatchExecuteStatement` or `ExecuteStatement` operation instead.
</note>
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#records ⇒ Array<Types::Record>
The records in the result set.
-
#result_set_metadata ⇒ Types::ResultSetMetadata
The result-set metadata in the result set.
Instance Attribute Details
#records ⇒ Array<Types::Record>
The records in the result set.
774 775 776 777 778 779 |
# File 'lib/aws-sdk-rdsdataservice/types.rb', line 774 class ResultFrame < Struct.new( :result_set_metadata, :records) SENSITIVE = [] include Aws::Structure end |
#result_set_metadata ⇒ Types::ResultSetMetadata
The result-set metadata in the result set.
774 775 776 777 778 779 |
# File 'lib/aws-sdk-rdsdataservice/types.rb', line 774 class ResultFrame < Struct.new( :result_set_metadata, :records) SENSITIVE = [] include Aws::Structure end |