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

Identity

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

Contains an identity that can access an IoT SiteWise Monitor resource.

Note: Currently, you can't use Amazon Web Services APIs to retrieve Amazon Web Services SSO identity IDs. You can find the Amazon Web Services SSO identity IDs in the URL of user and group pages in the Amazon Web Services SSO console.

interface Identity {
group?: GroupIdentity | null;
iamRole?: IAMRoleIdentity | null;
iamUser?: IAMUserIdentity | null;
user?: UserIdentity | null;
}

§Properties

§
group?: GroupIdentity | null
[src]

An Amazon Web Services SSO group identity.

§
iamRole?: IAMRoleIdentity | null
[src]

An IAM role identity.

§
iamUser?: IAMUserIdentity | null
[src]

An IAM user identity.

§
user?: UserIdentity | null
[src]

An Amazon Web Services SSO user identity.