Class: Aws::CloudDirectory::Types::SchemaFacet
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudDirectory::Types::SchemaFacet
- Defined in:
- gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb
Overview
Note:
When making an API call, you may pass SchemaFacet data as a hash:
{
schema_arn: "Arn",
facet_name: "FacetName",
}
A facet.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#facet_name ⇒ String
The name of the facet.
-
#schema_arn ⇒ String
The ARN of the schema that contains the facet with no minor component.
Instance Attribute Details
#facet_name ⇒ String
The name of the facet. If this value is set, SchemaArn must also be set.
7518 7519 7520 7521 7522 7523 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 7518 class SchemaFacet < Struct.new( :schema_arn, :facet_name) SENSITIVE = [] include Aws::Structure end |
#schema_arn ⇒ String
The ARN of the schema that contains the facet with no minor component. See arns and In-Place Schema Upgrade for a description of when to provide minor versions. If this value is set, FacetName must also be set.
7518 7519 7520 7521 7522 7523 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 7518 class SchemaFacet < Struct.new( :schema_arn, :facet_name) SENSITIVE = [] include Aws::Structure end |