Class: Aws::Honeycode::Types::ResultRow
- Inherits:
-
Struct
- Object
- Struct
- Aws::Honeycode::Types::ResultRow
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-honeycode/types.rb
Overview
A single row in the ResultSet.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_items ⇒ Array<Types::DataItem>
List of all the data cells in a row.
-
#row_id ⇒ String
The ID for a particular row.
Instance Attribute Details
#data_items ⇒ Array<Types::DataItem>
List of all the data cells in a row.
1293 1294 1295 1296 1297 1298 |
# File 'lib/aws-sdk-honeycode/types.rb', line 1293 class ResultRow < Struct.new( :row_id, :data_items) SENSITIVE = [] include Aws::Structure end |