Get Facet
| clouddirectory_get_facet | R Documentation | 
Gets details of the Facet, such as facet name, attributes, Rules, or ObjectType¶
Description¶
Gets details of the Facet, such as facet name, attributes, Rules, or
ObjectType. You can call this on all kinds of schema facets –
published, development, or applied.
Usage¶
clouddirectory_get_facet(SchemaArn, Name)
Arguments¶
| SchemaArn | [required] The Amazon Resource Name (ARN) that is associated with the Facet. For more information, see arns. | 
| Name | [required] The name of the facet to retrieve. | 
Value¶
A list with the following syntax:
list(
  Facet = list(
    Name = "string",
    ObjectType = "NODE"|"LEAF_NODE"|"POLICY"|"INDEX",
    FacetStyle = "STATIC"|"DYNAMIC"
  )
)
Request syntax¶
svc$get_facet(
  SchemaArn = "string",
  Name = "string"
)