Module Values.CreateTenantResponseSource

Information about a newly created 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 email sending capability for the tenant.

    *)
}
Sourcetype nonrec error = [
  1. | `AlreadyExistsException of AlreadyExistsException.t
  2. | `BadRequestException of BadRequestException.t
  3. | `LimitExceededException of LimitExceededException.t
  4. | `TooManyRequestsException of TooManyRequestsException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?tenantName:??? -> ?tenantId:??? -> ?tenantArn:??? -> ?createdTimestamp:??? -> ?tags:??? -> ?sendingStatus:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AlreadyExistsException of unit | `BadRequestException of unit | `LimitExceededException of unit | `TooManyRequestsException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AlreadyExistsException of unit | `BadRequestException of unit | `LimitExceededException of unit | `TooManyRequestsException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.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