CreateFacetRequest

public struct CreateFacetRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The attributes that are associated with the Facet.

    Declaration

    Swift

    public let attributes: [FacetAttribute]?
  • 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.

    Declaration

    Swift

    public let facetStyle: FacetStyle?
  • The name of the Facet, which is unique for a given schema.

    Declaration

    Swift

    public let name: String
  • 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.

    Declaration

    Swift

    public let objectType: ObjectType?
  • The schema ARN in which the new Facet will be created. For more information, see arns.

    Declaration

    Swift

    public let schemaArn: String
  • Undocumented

    Declaration

    Swift

    public init(attributes: [FacetAttribute]? = nil, facetStyle: FacetStyle? = nil, name: String, objectType: ObjectType? = nil, schemaArn: String)
  • Declaration

    Swift

    public func validate(name: String) throws