Class: Aws::CloudDirectory::Types::Facet
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudDirectory::Types::Facet
- Defined in:
- gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb
Overview
A structure that contains Name, ARN, Attributes, Rules, and
ObjectTypes. See Facets for more information.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#facet_style ⇒ String
There are two different styles that you can define on any given facet,
StaticandDynamic. -
#name ⇒ String
The name of the Facet.
-
#object_type ⇒ String
The object type that is associated with the facet.
Instance Attribute Details
#facet_style ⇒ String
There are two different styles that you can define on any given
facet, Static and Dynamic. For static facets, all attributes
must be defined in the schema. For dynamic facets, attributes can be
defined during data plane operations.
2719 2720 2721 2722 2723 2724 2725 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 2719 class Facet < Struct.new( :name, :object_type, :facet_style) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the Facet.
2719 2720 2721 2722 2723 2724 2725 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 2719 class Facet < Struct.new( :name, :object_type, :facet_style) SENSITIVE = [] include Aws::Structure end |
#object_type ⇒ String
The object type that is associated with the facet. See CreateFacetRequest$ObjectType for more details.
2719 2720 2721 2722 2723 2724 2725 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 2719 class Facet < Struct.new( :name, :object_type, :facet_style) SENSITIVE = [] include Aws::Structure end |