Module Values.TenantSource

A structure that contains details about a tenant.

Sourcetype nonrec t = {
  1. tenantName : TenantName.t option;
    (*

    The name of the tenant.

    *)
  2. tenantId : TenantId.t option;
    (*

    A unique identifier for the tenant.

    *)
  3. tenantArn : AmazonResourceName.t option;
    (*

    The Amazon Resource Name (ARN) of the tenant.

    *)
  4. createdTimestamp : Timestamp.t option;
    (*

    The date and time when the tenant was created.

    *)
  5. tags : TagList.t option;
    (*

    An array of objects that define the tags (keys and values) associated with the tenant.

    *)
  6. sendingStatus : SendingStatus.t option;
    (*

    The status of sending capability for the tenant.

    *)
}
Sourceval make : ?tenantName:??? -> ?tenantId:??? -> ?tenantArn:??? -> ?createdTimestamp:??? -> ?tags:??? -> ?sendingStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of TenantName.t | `Timestamp of Timestamp.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