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

CreateIndexRequest

import type { CreateIndexRequest } from "https://aws-api.deno.dev/v0.3/services/clouddirectory.ts?docs=full";
interface CreateIndexRequest {
DirectoryArn: string;
IsUnique: boolean;
LinkName?: string | null;
OrderedIndexedAttributeList: AttributeKey[];
ParentReference?: ObjectReference | null;
}

§Properties

§
DirectoryArn: string
[src]

The ARN of the directory where the index should be created.

§
IsUnique: boolean
[src]

Indicates whether the attribute that is being indexed has unique values or not.

§
LinkName?: string | null
[src]

The name of the link between the parent object and the index object.

§
OrderedIndexedAttributeList: AttributeKey[]
[src]

Specifies the attributes that should be indexed on. Currently only a single attribute is supported.

§
ParentReference?: ObjectReference | null
[src]

A reference to the parent object that contains the index object.