Class: Aws::CloudDirectory::Types::AttributeKey
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudDirectory::Types::AttributeKey
- Defined in:
- gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb
Overview
Note:
When making an API call, you may pass AttributeKey data as a hash:
{
schema_arn: "Arn", # required
facet_name: "FacetName", # required
name: "AttributeName", # required
}
A unique identifier for an attribute.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#facet_name ⇒ String
The name of the facet that the attribute exists within.
-
#name ⇒ String
The name of the attribute.
-
#schema_arn ⇒ String
The Amazon Resource Name (ARN) of the schema that contains the facet and attribute.
Instance Attribute Details
#facet_name ⇒ String
The name of the facet that the attribute exists within.
384 385 386 387 388 389 390 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 384 class AttributeKey < Struct.new( :schema_arn, :facet_name, :name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the attribute.
384 385 386 387 388 389 390 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 384 class AttributeKey < Struct.new( :schema_arn, :facet_name, :name) SENSITIVE = [] include Aws::Structure end |
#schema_arn ⇒ String
The Amazon Resource Name (ARN) of the schema that contains the facet and attribute.
384 385 386 387 388 389 390 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 384 class AttributeKey < Struct.new( :schema_arn, :facet_name, :name) SENSITIVE = [] include Aws::Structure end |