Module Values.AddonInstanceSource

An Add On instance represents a specific configuration of an Add On.

Sourcetype nonrec t = {
  1. addonInstanceId : AddonInstanceId.t option;
    (*

    The unique ID of the Add On instance.

    *)
  2. addonSubscriptionId : AddonSubscriptionId.t option;
    (*

    The subscription ID for the instance.

    *)
  3. addonName : AddonName.t option;
    (*

    The name of the Add On for the instance.

    *)
  4. addonInstanceArn : AddonInstanceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the Add On instance.

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

    The timestamp of when the Add On instance was created.

    *)
}
Sourceval make : ?addonInstanceId:??? -> ?addonSubscriptionId:??? -> ?addonName:??? -> ?addonInstanceArn:??? -> ?createdTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AddonInstanceId.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