import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * A billing view is a container of cost & usage metadata. */ export declare class BillingView extends pulumi.CustomResource { /** * Get an existing BillingView resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): BillingView; /** * Returns true if the given object is an instance of BillingView. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is BillingView; /** * The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view. */ readonly arn: pulumi.Output; /** * The type of billing group. */ readonly billingViewType: pulumi.Output; /** * The time when the billing view was created. */ readonly createdAt: pulumi.Output; /** * See [Expression](https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_billing_Expression.html) . Billing view only supports `LINKED_ACCOUNT` and `Tags` . */ readonly dataFilterExpression: pulumi.Output; /** * The description of the billing view. */ readonly description: pulumi.Output; /** * The name of the billing view. */ readonly name: pulumi.Output; /** * The account owner of the billing view. */ readonly ownerAccountId: pulumi.Output; /** * An array of strings that define the billing view's source. */ readonly sourceViews: pulumi.Output; /** * An array of key-value pairs associated to the billing view being created. */ readonly tags: pulumi.Output; /** * The time when the billing view was last updated. */ readonly updatedAt: pulumi.Output; /** * Create a BillingView resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: BillingViewArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a BillingView resource. */ export interface BillingViewArgs { /** * See [Expression](https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_billing_Expression.html) . Billing view only supports `LINKED_ACCOUNT` and `Tags` . */ dataFilterExpression?: pulumi.Input; /** * The description of the billing view. */ description?: pulumi.Input; /** * The name of the billing view. */ name?: pulumi.Input; /** * An array of strings that define the billing view's source. */ sourceViews: pulumi.Input[]>; /** * An array of key-value pairs associated to the billing view being created. */ tags?: pulumi.Input[]>; }