Struct rusoto_clouddirectory::ObjectReference [] [src]

pub struct ObjectReference {
    pub selector: Option<String>,
}

The reference that identifies an object.

Fields

A path selector supports easy selection of an object by the parent/child links leading to it from the directory root. Use the link names from each parent/child link to construct the path. Path selectors start with a slash (/) and link names are separated by slashes. For more information about paths, see Accessing Objects. You can identify an object in one of the following ways:

  • $ObjectIdentifier - An object identifier is an opaque string provided by Amazon Cloud Directory. When creating objects, the system will provide you with the identifier of the created object. An object’s identifier is immutable and no two objects will ever share the same object identifier

  • /some/path - Identifies the object based on path

  • #SomeBatchReference - Identifies the object in a batch call

Trait Implementations

impl Default for ObjectReference
[src]

[src]

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

impl Debug for ObjectReference
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ObjectReference
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations