Class: Aws::Honeycode::Types::CreateRowData

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

Overview

Data needed to create a single row in a table as part of the BatchCreateTableRows request.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#batch_item_idString

An external identifier that represents the single row that is being created as part of the BatchCreateTableRows request. This can be any string that you can use to identify the row in the request. The BatchCreateTableRows API puts the batch item id in the results to allow you to link data in the request to data in the results.

Returns:

  • (String)


524
525
526
527
528
529
# File 'gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb', line 524

class CreateRowData < Struct.new(
  :batch_item_id,
  :cells_to_create)
  SENSITIVE = []
  include Aws::Structure
end

#cells_to_createHash<String,Types::CellInput>

A map representing the cells to create in the new row. The key is the column id of the cell and the value is the CellInput object that represents the data to set in that cell.

Returns:



524
525
526
527
528
529
# File 'gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb', line 524

class CreateRowData < Struct.new(
  :batch_item_id,
  :cells_to_create)
  SENSITIVE = []
  include Aws::Structure
end