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]

[src]

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

impl Debug for CreateFacetRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateFacetRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations