Module Values_3.SubscriptionSource

Describes an Infrastructure Performance subscription.

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

    The Region or Availability Zone that's the source for the subscription. For example, us-east-1.

    *)
  2. destination : Values_0.String_.t option;
    (*

    The Region or Availability Zone that's the target for the subscription. For example, eu-west-1.

    *)
  3. metric : Values_1.MetricType.t option;
    (*

    The metric used for the subscription.

    *)
  4. statistic : Values_1.StatisticType.t option;
    (*

    The statistic used for the subscription.

    *)
  5. period : Values_1.PeriodType.t option;
    (*

    The data aggregation time for the subscription.

    *)
}
Sourceval make : ?source:??? -> ?destination:??? -> ?metric:??? -> ?statistic:??? -> ?period:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.String_.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