pub struct TableEntityArgs {
pub entity: Output<HashMap<String, String>>,
pub partition_key: Output<String>,
pub row_key: Output<String>,
pub storage_table_id: Output<String>,
}
Fields§
§entity: Output<HashMap<String, String>>
A map of key/value pairs that describe the entity to be inserted/merged in to the storage table.
partition_key: Output<String>
The key for the partition where the entity will be inserted/merged. Changing this forces a new resource to be created.
row_key: Output<String>
The key for the row where the entity will be inserted/merged. Changing this forces a new resource to be created.
storage_table_id: Output<String>
The Storage Share ID in which this file will be placed into. Changing this forces a new resource to be created.
Implementations§
source§impl TableEntityArgs
impl TableEntityArgs
sourcepub fn builder() -> TableEntityArgsBuilder
pub fn builder() -> TableEntityArgsBuilder
Create an instance of TableEntityArgs
using the builder syntax
Trait Implementations§
source§impl Clone for TableEntityArgs
impl Clone for TableEntityArgs
source§fn clone(&self) -> TableEntityArgs
fn clone(&self) -> TableEntityArgs
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 moreAuto Trait Implementations§
impl Freeze for TableEntityArgs
impl RefUnwindSafe for TableEntityArgs
impl Send for TableEntityArgs
impl Sync for TableEntityArgs
impl Unpin for TableEntityArgs
impl UnwindSafe for TableEntityArgs
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)