Module Values.UpdateBillingViewRequestSource

An API to update the attributes of the billing view.

Sourcetype nonrec t = {
  1. arn : BillingViewArn.t;
    (*

    The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view.

    *)
  2. name : BillingViewName.t option;
    (*

    The name of the billing view.

    *)
  3. description : BillingViewDescription.t option;
    (*

    The description of the billing view.

    *)
  4. dataFilterExpression : Expression.t option;
    (*

    See Expression. Billing view only supports LINKED_ACCOUNT, Tags, and CostCategories.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?dataFilterExpression:??? -> arn:BillingViewArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of BillingViewArn.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `String of Value.t ] list | `String of TagKey.t | `Timestamp of Timestamp.t ]) list ]) list ]) 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