Class: Aws::Honeycode::Types::CellInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb

Overview

CellInput object contains the data needed to create or update cells in a table.

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.

Constant Summary collapse

SENSITIVE =
[:fact]

Instance Attribute Summary collapse

Instance Attribute Details

#factString

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.

Returns:

  • (String)


479
480
481
482
483
484
# File 'gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb', line 479

class CellInput < Struct.new(
  :fact,
  :facts)
  SENSITIVE = [:fact]
  include Aws::Structure
end

#factsArray<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.

Returns:

  • (Array<String>)


479
480
481
482
483
484
# File 'gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb', line 479

class CellInput < Struct.new(
  :fact,
  :facts)
  SENSITIVE = [:fact]
  include Aws::Structure
end