pub struct CreateObjectRequest {
pub directory_arn: String,
pub link_name: Option<String>,
pub object_attribute_list: Option<Vec<AttributeKeyAndValue>>,
pub parent_reference: Option<ObjectReference>,
pub schema_facets: Vec<SchemaFacet>,
}Fields§
§directory_arn: StringThe Amazon Resource Name (ARN) that is associated with the Directory in which the object will be created. For more information, see arns.
link_name: Option<String>The name of link that is used to attach this object to a parent.
object_attribute_list: Option<Vec<AttributeKeyAndValue>>The attribute map whose attribute ARN contains 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_facets: Vec<SchemaFacet>A list of schema facets to be associated with the object. Do not provide minor version components. See SchemaFacet for details.
Trait Implementations§
Source§impl Clone for CreateObjectRequest
impl Clone for CreateObjectRequest
Source§fn clone(&self) -> CreateObjectRequest
fn clone(&self) -> CreateObjectRequest
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 CreateObjectRequest
impl Debug for CreateObjectRequest
Source§impl Default for CreateObjectRequest
impl Default for CreateObjectRequest
Source§fn default() -> CreateObjectRequest
fn default() -> CreateObjectRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateObjectRequest
impl PartialEq for CreateObjectRequest
Source§impl Serialize for CreateObjectRequest
impl Serialize for CreateObjectRequest
impl StructuralPartialEq for CreateObjectRequest
Auto Trait Implementations§
impl Freeze for CreateObjectRequest
impl RefUnwindSafe for CreateObjectRequest
impl Send for CreateObjectRequest
impl Sync for CreateObjectRequest
impl Unpin for CreateObjectRequest
impl UnwindSafe for CreateObjectRequest
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