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

InstanceUserSummary

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

Describes users of an EC2 instance providing user-based subscriptions.

interface InstanceUserSummary {
AssociationDate?: string | null;
DisassociationDate?: string | null;
Domain?: string | null;
IdentityProvider: IdentityProvider;
InstanceId: string;
Status: string;
StatusMessage?: string | null;
Username: string;
}

§Properties

§
AssociationDate?: string | null
[src]

The date a user was associated with an EC2 instance.

§
DisassociationDate?: string | null
[src]

The date a user was disassociated from an EC2 instance.

§
Domain?: string | null
[src]

The domain name of the user.

§
IdentityProvider: IdentityProvider
[src]

An object that specifies details for the identity provider.

§
InstanceId: string
[src]

The ID of the EC2 instance, which provides user-based subscriptions.

§
Status: string
[src]

The status of a user associated with an EC2 instance.

§
StatusMessage?: string | null
[src]

The status message for users of an EC2 instance.

§
Username: string
[src]

The user name from the identity provider for the user.