Struct aws_sdk_honeycode::types::builders::UpdateRowDataBuilder
source · #[non_exhaustive]pub struct UpdateRowDataBuilder { /* private fields */ }
Expand description
A builder for UpdateRowData
.
Implementations§
source§impl UpdateRowDataBuilder
impl UpdateRowDataBuilder
sourcepub fn row_id(self, input: impl Into<String>) -> Self
pub fn row_id(self, input: impl Into<String>) -> Self
The id of the row that needs to be updated.
sourcepub fn set_row_id(self, input: Option<String>) -> Self
pub fn set_row_id(self, input: Option<String>) -> Self
The id of the row that needs to be updated.
sourcepub fn cells_to_update(self, k: impl Into<String>, v: CellInput) -> Self
pub fn cells_to_update(self, k: impl Into<String>, v: CellInput) -> Self
Adds a key-value pair to cells_to_update
.
To override the contents of this collection use set_cells_to_update
.
A map representing the cells to update in the given 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.
sourcepub fn set_cells_to_update(
self,
input: Option<HashMap<String, CellInput>>
) -> Self
pub fn set_cells_to_update( self, input: Option<HashMap<String, CellInput>> ) -> Self
A map representing the cells to update in the given 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.
sourcepub fn build(self) -> UpdateRowData
pub fn build(self) -> UpdateRowData
Consumes the builder and constructs a UpdateRowData
.
Trait Implementations§
source§impl Clone for UpdateRowDataBuilder
impl Clone for UpdateRowDataBuilder
source§fn clone(&self) -> UpdateRowDataBuilder
fn clone(&self) -> UpdateRowDataBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UpdateRowDataBuilder
impl Debug for UpdateRowDataBuilder
source§impl Default for UpdateRowDataBuilder
impl Default for UpdateRowDataBuilder
source§fn default() -> UpdateRowDataBuilder
fn default() -> UpdateRowDataBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<UpdateRowDataBuilder> for UpdateRowDataBuilder
impl PartialEq<UpdateRowDataBuilder> for UpdateRowDataBuilder
source§fn eq(&self, other: &UpdateRowDataBuilder) -> bool
fn eq(&self, other: &UpdateRowDataBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.