Struct aws_sdk_honeycode::model::CreateRowData [−][src]
#[non_exhaustive]pub struct CreateRowData {
pub batch_item_id: Option<String>,
pub cells_to_create: Option<HashMap<String, CellInput>>,
}
Expand description
Data needed to create a single row in a table as part of the BatchCreateTableRows request.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.batch_item_id: Option<String>
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.
cells_to_create: Option<HashMap<String, 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.
Implementations
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.
Creates a new builder-style object to manufacture CreateRowData
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateRowData
impl Send for CreateRowData
impl Sync for CreateRowData
impl Unpin for CreateRowData
impl UnwindSafe for CreateRowData
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more