Module Values.TenantResourceSource

A structure that contains information about a resource associated with a tenant.

Sourcetype nonrec t = {
  1. resourceType : ResourceType.t option;
    (*

    The type of resource associated with the tenant. Valid values are EMAIL_IDENTITY, CONFIGURATION_SET, or EMAIL_TEMPLATE.

    *)
  2. resourceArn : AmazonResourceName.t option;
    (*

    The Amazon Resource Name (ARN) of the resource associated with the tenant.

    *)
}
Sourceval make : ?resourceType:??? -> ?resourceArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AmazonResourceName.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