Module Values.ResourceTenantMetadataSource

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

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

    The name of the tenant associated with the resource.

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

    A unique identifier for the tenant associated with the resource.

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

    The Amazon Resource Name (ARN) of the resource.

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

    The date and time when the resource was associated with the tenant.

    *)
}
Sourceval make : ?tenantName:??? -> ?tenantId:??? -> ?resourceArn:??? -> ?associatedTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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