Struct rusoto_clouddirectory::CreateObjectRequest[][src]

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

The Amazon Resource Name (ARN) that is associated with the Directory in which the object will be created. For more information, see arns.

The name of link that is used to attach this object to a parent.

The attribute map whose attribute ARN contains the key and attribute value as the map value.

If specified, the parent reference to which this object will be attached.

A list of schema facets to be associated with the object. Do not provide minor version components. See SchemaFacet for details.

Trait Implementations

impl Default for CreateObjectRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for CreateObjectRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateObjectRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateObjectRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations