Module Values.SubscriptionSource

Provides information about your Amazon Web Services Outposts subscriptions.

Sourcetype nonrec t = {
  1. subscriptionId : String_.t option;
    (*

    The ID of the subscription that appears on the Amazon Web Services Billing Center console.

    *)
  2. subscriptionType : SubscriptionType.t option;
    (*

    The type of subscription which can be one of the following: ORIGINAL - The first order on the Amazon Web Services Outposts. RENEWAL - Renewal requests, both month to month and longer term. CAPACITY_INCREASE - Capacity scaling orders.

    *)
  3. subscriptionStatus : SubscriptionStatus.t option;
    (*

    The status of subscription which can be one of the following: INACTIVE - Subscription requests that are inactive. ACTIVE - Subscription requests that are in progress and have an end date in the future. PENDING - Subscription has been created but billing has not yet commenced because the subscription begin date has not been reached. CANCELLED - Subscription requests that are cancelled.

    *)
  4. orderIds : OrderIdList.t option;
    (*

    The order ID for your subscription.

    *)
  5. beginDate : ISO8601Timestamp.t option;
    (*

    The date your subscription starts.

    *)
  6. endDate : ISO8601Timestamp.t option;
    (*

    The date your subscription ends.

    *)
  7. monthlyRecurringPrice : NullableDouble.t option;
    (*

    The amount you are billed each month in the subscription period.

    *)
  8. upfrontPrice : NullableDouble.t option;
    (*

    The amount billed when the subscription is created. This is a one-time charge.

    *)
}
Sourceval make : ?subscriptionId:??? -> ?subscriptionType:??? -> ?subscriptionStatus:??? -> ?orderIds:??? -> ?beginDate:??? -> ?endDate:??? -> ?monthlyRecurringPrice:??? -> ?upfrontPrice:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of NullableDouble.t | `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t | `Timestamp of ISO8601Timestamp.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