Struct rusoto_clouddirectory::CreateFacetRequest[][src]

pub struct CreateFacetRequest {
    pub attributes: Option<Vec<FacetAttribute>>,
    pub name: String,
    pub object_type: String,
    pub schema_arn: String,
}

Fields

The attributes that are associated with the Facet.

The name of the Facet, which is unique for a given schema.

Specifies whether a given object created from this facet is of type node, leaf node, policy or index.

  • Node: Can have multiple children but one parent.

  • Leaf node: Cannot have children but can have multiple parents.

  • Policy: Allows you to store a policy document and policy type. For more information, see Policies.

  • Index: Can be created with the Index API.

The schema ARN in which the new Facet will be created. For more information, see arns.

Trait Implementations

impl Default for CreateFacetRequest
[src]

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

impl Debug for CreateFacetRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateFacetRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateFacetRequest
[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