Module Values.AddonSubscriptionSource

A subscription for an Add On representing the acceptance of its terms of use and additional pricing.

Sourcetype nonrec t = {
  1. addonSubscriptionId : AddonSubscriptionId.t option;
    (*

    The unique ID of the Add On subscription.

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

    The name of the Add On.

    *)
  3. addonSubscriptionArn : AddonSubscriptionArn.t option;
    (*

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

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

    The timestamp of when the Add On subscription was created.

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