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

AWSAccount

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

The wrapper of Amazon Web Services account details, such as account ID or email address.

interface AWSAccount {
emailAddress?: string | null;
id?: string | null;
name?: string | null;
}

§Properties

§
emailAddress?: string | null
[src]

The email address that's associated with the Amazon Web Services account.

§
id?: string | null
[src]

The identifier for the Amazon Web Services account.

§
name?: string | null
[src]

The name of the Amazon Web Services account.