Class: Aws::RDSDataService::Types::ResultFrame
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDSDataService::Types::ResultFrame
- Defined in:
- gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb
Overview
The result set returned by a SQL statement.
ExecuteSql
operation. Use the BatchExecuteStatement
or ExecuteStatement
operation instead.
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 'gems/aws-sdk-rdsdataservice/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 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 774 class ResultFrame < Struct.new( :result_set_metadata, :records) SENSITIVE = [] include Aws::Structure end |