/** *

The Amazon Chime account details. An AWS account can have multiple Amazon Chime accounts.

*/ export interface _Account { /** *

The AWS account ID.

*/ AwsAccountId: string; /** *

The Amazon Chime account ID.

*/ AccountId: string; /** *

The Amazon Chime account name.

*/ Name: string; /** *

The Amazon Chime account type. For more information about different account types, see Managing Your Amazon Chime Accounts in the Amazon Chime Administration Guide.

*/ AccountType?: "Team" | "EnterpriseDirectory" | "EnterpriseLWA" | "EnterpriseOIDC" | string; /** *

The Amazon Chime account creation timestamp, in ISO 8601 format.

*/ CreatedTimestamp?: Date | string | number; /** *

The default license for the Amazon Chime account.

*/ DefaultLicense?: "Basic" | "Plus" | "Pro" | "ProTrial" | string; /** *

Supported licenses for the Amazon Chime account.

*/ SupportedLicenses?: Array<"Basic" | "Plus" | "Pro" | "ProTrial" | string> | Iterable<"Basic" | "Plus" | "Pro" | "ProTrial" | string>; } export interface _UnmarshalledAccount extends _Account { /** *

The Amazon Chime account creation timestamp, in ISO 8601 format.

*/ CreatedTimestamp?: Date; /** *

Supported licenses for the Amazon Chime account.

*/ SupportedLicenses?: Array<"Basic" | "Plus" | "Pro" | "ProTrial" | string>; }