Class: Aws::Honeycode::Types::CellInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Honeycode::Types::CellInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-honeycode/types.rb
Overview
CellInput object contains the data needed to create or update cells in a table.
<note markdown=“1”> CellInput object has only a facts field or a fact field, but not both. A 400 bad request will be thrown if both fact and facts field are present.
</note>
Constant Summary collapse
- SENSITIVE =
[:fact]
Instance Attribute Summary collapse
-
#fact ⇒ String
Fact represents the data that is entered into a cell.
-
#facts ⇒ Array<String>
A list representing the values that are entered into a ROWSET cell.
Instance Attribute Details
#fact ⇒ String
Fact represents the data that is entered into a cell. This data can be free text or a formula. Formulas need to start with the equals (=) sign.
479 480 481 482 483 484 |
# File 'lib/aws-sdk-honeycode/types.rb', line 479 class CellInput < Struct.new( :fact, :facts) SENSITIVE = [:fact] include Aws::Structure end |
#facts ⇒ Array<String>
A list representing the values that are entered into a ROWSET cell. Facts list can have either only values or rowIDs, and rowIDs should from the same table.
479 480 481 482 483 484 |
# File 'lib/aws-sdk-honeycode/types.rb', line 479 class CellInput < Struct.new( :fact, :facts) SENSITIVE = [:fact] include Aws::Structure end |