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

Parent

import type { Parent } from "https://aws-api.deno.dev/v0.4/services/organizations.ts?docs=full";

Contains information about either a root or an organizational unit (OU) that can contain OUs or accounts in an organization.

interface Parent {
Id?: string | null;
Type?: ParentType | null;
}

§Properties

§
Id?: string | null
[src]

The unique identifier (ID) of the parent entity.

The regex pattern for a parent ID string requires one of the following:

  • Root - A string that begins with "r-" followed by from 4 to 32 lowercase letters or digits.
  • Organizational unit (OU) - A string that begins with "ou-" followed by from 4 to 32 lowercase letters or digits (the ID of the root that the OU is in). This string is followed by a second "-" dash and from 8 to 32 additional lowercase letters or digits.
§
Type?: ParentType | null
[src]

The type of the parent entity.