Module Values.AccountSource

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

Sourcetype nonrec t = {
  1. awsAccountId : String_.t option;
    (*

    The AWS account ID.

    *)
  2. accountId : String_.t option;
    (*

    The Amazon Chime account ID.

    *)
  3. name : String_.t option;
    (*

    The Amazon Chime account name.

    *)
  4. accountType : AccountType.t option;
    (*

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

    *)
  5. createdTimestamp : Iso8601Timestamp.t option;
    (*

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

    *)
  6. defaultLicense : License.t option;
    (*

    The default license for the Amazon Chime account.

    *)
  7. supportedLicenses : LicenseList.t option;
    (*

    Supported licenses for the Amazon Chime account.

    *)
  8. accountStatus : AccountStatus.t option;
    (*

    The status of the account.

    *)
  9. signinDelegateGroups : SigninDelegateGroupList.t option;
    (*

    The sign-in delegate groups associated with the account.

    *)
}
Sourceval make : ?awsAccountId:??? -> ?accountId:??? -> ?name:??? -> ?accountType:??? -> ?createdTimestamp:??? -> ?defaultLicense:??? -> ?supportedLicenses:??? -> ?accountStatus:??? -> ?signinDelegateGroups:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of String_.t | `Timestamp of Iso8601Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t