pub struct BatchCreateObject {
pub batch_reference_name: Option<String>,
pub link_name: Option<String>,
pub object_attribute_list: Vec<AttributeKeyAndValue>,
pub parent_reference: Option<ObjectReference>,
pub schema_facet: Vec<SchemaFacet>,
}Expand description
Represents the output of a CreateObject operation.
Fields§
§batch_reference_name: Option<String>The batch reference name. See Transaction Support for more information.
link_name: Option<String>The name of the link.
object_attribute_list: Vec<AttributeKeyAndValue>An attribute map, which contains an attribute ARN as the key and attribute value as the map value.
parent_reference: Option<ObjectReference>If specified, the parent reference to which this object will be attached.
schema_facet: Vec<SchemaFacet>A list of FacetArns that will be associated with the object. For more information, see arns.
Trait Implementations§
Source§impl Clone for BatchCreateObject
impl Clone for BatchCreateObject
Source§fn clone(&self) -> BatchCreateObject
fn clone(&self) -> BatchCreateObject
Returns a duplicate 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 BatchCreateObject
impl Debug for BatchCreateObject
Source§impl Default for BatchCreateObject
impl Default for BatchCreateObject
Source§fn default() -> BatchCreateObject
fn default() -> BatchCreateObject
Returns the “default value” for a type. Read more
Source§impl PartialEq for BatchCreateObject
impl PartialEq for BatchCreateObject
Source§impl Serialize for BatchCreateObject
impl Serialize for BatchCreateObject
impl StructuralPartialEq for BatchCreateObject
Auto Trait Implementations§
impl Freeze for BatchCreateObject
impl RefUnwindSafe for BatchCreateObject
impl Send for BatchCreateObject
impl Sync for BatchCreateObject
impl Unpin for BatchCreateObject
impl UnwindSafe for BatchCreateObject
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