Module Values.SetupHistoryResourceSource

The Lightsail resource that SetupHistory was ran on.

Sourcetype nonrec t = {
  1. name : ResourceName.t option;
    (*

    The name of the Lightsail resource.

    *)
  2. arn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of the Lightsail resource.

    *)
  3. createdAt : IsoDate.t option;
    (*

    The timestamp for when the resource was created.

    *)
  4. location : ResourceLocation.t option;
  5. resourceType : ResourceType.t option;
    (*

    The Lightsail resource type. For example, Instance.

    *)
}
Sourceval make : ?name:??? -> ?arn:??? -> ?createdAt:??? -> ?location:??? -> ?resourceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceName.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list | `Timestamp of IsoDate.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