Class: Aws::Honeycode::Types::UpsertRowsResult

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

Overview

An object that represents the result of a single upsert row request.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#row_idsArray<String>

The list of row ids that were changed as part of an upsert row operation. If the upsert resulted in an update, this list could potentially contain multiple rows that matched the filter and hence got updated. If the upsert resulted in an append, this list would only have the single row that was appended.

Returns:

  • (Array<String>)


1683
1684
1685
1686
1687
1688
# File 'gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb', line 1683

class UpsertRowsResult < Struct.new(
  :row_ids,
  :upsert_action)
  SENSITIVE = []
  include Aws::Structure
end

#upsert_actionString

The result of the upsert action.

Returns:

  • (String)


1683
1684
1685
1686
1687
1688
# File 'gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb', line 1683

class UpsertRowsResult < Struct.new(
  :row_ids,
  :upsert_action)
  SENSITIVE = []
  include Aws::Structure
end