Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FacetAttributeDefinition

import type { FacetAttributeDefinition } from "https://aws-api.deno.dev/v0.3/services/clouddirectory.ts?docs=full";

A facet attribute definition. See Attribute References for more information.

interface FacetAttributeDefinition {
DefaultValue?: TypedAttributeValue | null;
IsImmutable?: boolean | null;
Rules?: {
[key: string]: Rule | null | undefined;
}
| null;
}

§Properties

§
DefaultValue?: TypedAttributeValue | null
[src]

The default value of the attribute (if configured).

§
IsImmutable?: boolean | null
[src]

Whether the attribute is mutable or not.

§
Rules?: {
[key: string]: Rule | null | undefined;
}
| null
[src]

Validation rules attached to the attribute definition.

§

The type of the attribute.