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 that contains SchemaArn and facet name. For more information, see arns.

Trait Implementations

impl Default for CreateObjectRequest
[src]

[src]

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

impl Debug for CreateObjectRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateObjectRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations