pub struct GetTableEntityResult {
pub entity: Output<HashMap<String, String>>,
pub id: Output<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 stored in the storage table.
id: Output<String>
The provider-assigned unique ID for this managed resource.
partition_key: Output<String>
§row_key: Output<String>
§storage_table_id: Output<String>
Auto Trait Implementations§
impl Freeze for GetTableEntityResult
impl RefUnwindSafe for GetTableEntityResult
impl Send for GetTableEntityResult
impl Sync for GetTableEntityResult
impl Unpin for GetTableEntityResult
impl UnwindSafe for GetTableEntityResult
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