Class: Aws::Honeycode::Types::UpsertRowsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Honeycode::Types::UpsertRowsResult
- Includes:
- Structure
- Defined in:
- 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
-
#row_ids ⇒ Array<String>
The list of row ids that were changed as part of an upsert row operation.
-
#upsert_action ⇒ String
The result of the upsert action.
Instance Attribute Details
#row_ids ⇒ Array<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.
1683 1684 1685 1686 1687 1688 |
# File 'lib/aws-sdk-honeycode/types.rb', line 1683 class UpsertRowsResult < Struct.new( :row_ids, :upsert_action) SENSITIVE = [] include Aws::Structure end |
#upsert_action ⇒ String
The result of the upsert action.
1683 1684 1685 1686 1687 1688 |
# File 'lib/aws-sdk-honeycode/types.rb', line 1683 class UpsertRowsResult < Struct.new( :row_ids, :upsert_action) SENSITIVE = [] include Aws::Structure end |