Module Values.BillingViewElementSource

The metadata associated to the billing view.

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

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

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

    The account name of the billing view.

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

    The description of the billing view.

    *)
  4. billingViewType : BillingViewType.t option;
    (*

    The type of billing group.

    *)
  5. ownerAccountId : AccountId.t option;
    (*

    The account owner of the billing view.

    *)
  6. sourceAccountId : AccountId.t option;
    (*

    The Amazon Web Services account ID that owns the source billing view, if this is a derived billing view.

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

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

    *)
  8. createdAt : Timestamp.t option;
    (*

    The time when the billing view was created.

    *)
  9. updatedAt : Timestamp.t option;
    (*

    The time when the billing view was last updated.

    *)
  10. derivedViewCount : Integer.t option;
    (*

    The number of billing views that use this billing view as a source.

    *)
  11. sourceViewCount : Integer.t option;
    (*

    The number of source views associated with this billing view.

    *)
  12. viewDefinitionLastUpdatedAt : Timestamp.t option;
    (*

    The timestamp of when the billing view definition was last updated.

    *)
  13. healthStatus : BillingViewHealthStatus.t option;
    (*

    The current health status of the billing view.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?description:??? -> ?billingViewType:??? -> ?ownerAccountId:??? -> ?sourceAccountId:??? -> ?dataFilterExpression:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?derivedViewCount:??? -> ?sourceViewCount:??? -> ?viewDefinitionLastUpdatedAt:??? -> ?healthStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of BillingViewArn.t | `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `Structure of (string * [> `Enum of string | `List of [> `String of Value.t ] list | `String of TagKey.t | `Timestamp of Timestamp.t ]) list ]) list | `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