Manages an AWS Billing View.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.billing.View("example", {
name: "example",
description: "example description",
sourceViews: ["arn:aws:billing::123456789012:billingview/example"],
});
import pulumi
import pulumi_aws as aws
example = aws.billing.View("example",
name="example",
description="example description",
source_views=["arn:aws:billing::123456789012:billingview/example"])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/billing"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := billing.NewView(ctx, "example", &billing.ViewArgs{
Name: pulumi.String("example"),
Description: pulumi.String("example description"),
SourceViews: pulumi.StringArray{
pulumi.String("arn:aws:billing::123456789012:billingview/example"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Billing.View("example", new()
{
Name = "example",
Description = "example description",
SourceViews = new[]
{
"arn:aws:billing::123456789012:billingview/example",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.billing.View;
import com.pulumi.aws.billing.ViewArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new View("example", ViewArgs.builder()
.name("example")
.description("example description")
.sourceViews("arn:aws:billing::123456789012:billingview/example")
.build());
}
}
resources:
example:
type: aws:billing:View
properties:
name: example
description: example description
sourceViews:
- arn:aws:billing::123456789012:billingview/example
Create View Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new View(name: string, args?: ViewArgs, opts?: CustomResourceOptions);@overload
def View(resource_name: str,
args: Optional[ViewArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def View(resource_name: str,
opts: Optional[ResourceOptions] = None,
data_filter_expression: Optional[ViewDataFilterExpressionArgs] = None,
description: Optional[str] = None,
name: Optional[str] = None,
source_views: Optional[Sequence[str]] = None,
tags: Optional[Mapping[str, str]] = None,
timeouts: Optional[ViewTimeoutsArgs] = None)func NewView(ctx *Context, name string, args *ViewArgs, opts ...ResourceOption) (*View, error)public View(string name, ViewArgs? args = null, CustomResourceOptions? opts = null)type: aws:billing:View
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ViewArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ViewArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ViewArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ViewArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ViewArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var viewResource = new Aws.Billing.View("viewResource", new()
{
DataFilterExpression = new Aws.Billing.Inputs.ViewDataFilterExpressionArgs
{
Dimensions = new Aws.Billing.Inputs.ViewDataFilterExpressionDimensionsArgs
{
Key = "string",
Values = new[]
{
"string",
},
},
Tags = new[]
{
new Aws.Billing.Inputs.ViewDataFilterExpressionTagArgs
{
Key = "string",
Values = new[]
{
"string",
},
},
},
TimeRange = new Aws.Billing.Inputs.ViewDataFilterExpressionTimeRangeArgs
{
BeginDateInclusive = "string",
EndDateInclusive = "string",
},
},
Description = "string",
Name = "string",
SourceViews = new[]
{
"string",
},
Tags =
{
{ "string", "string" },
},
Timeouts = new Aws.Billing.Inputs.ViewTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
});
example, err := billing.NewView(ctx, "viewResource", &billing.ViewArgs{
DataFilterExpression: &billing.ViewDataFilterExpressionArgs{
Dimensions: &billing.ViewDataFilterExpressionDimensionsArgs{
Key: pulumi.String("string"),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
Tags: billing.ViewDataFilterExpressionTagArray{
&billing.ViewDataFilterExpressionTagArgs{
Key: pulumi.String("string"),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
TimeRange: &billing.ViewDataFilterExpressionTimeRangeArgs{
BeginDateInclusive: pulumi.String("string"),
EndDateInclusive: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
Name: pulumi.String("string"),
SourceViews: pulumi.StringArray{
pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Timeouts: &billing.ViewTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var viewResource = new com.pulumi.aws.billing.View("viewResource", com.pulumi.aws.billing.ViewArgs.builder()
.dataFilterExpression(ViewDataFilterExpressionArgs.builder()
.dimensions(ViewDataFilterExpressionDimensionsArgs.builder()
.key("string")
.values("string")
.build())
.tags(ViewDataFilterExpressionTagArgs.builder()
.key("string")
.values("string")
.build())
.timeRange(ViewDataFilterExpressionTimeRangeArgs.builder()
.beginDateInclusive("string")
.endDateInclusive("string")
.build())
.build())
.description("string")
.name("string")
.sourceViews("string")
.tags(Map.of("string", "string"))
.timeouts(ViewTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.build());
view_resource = aws.billing.View("viewResource",
data_filter_expression={
"dimensions": {
"key": "string",
"values": ["string"],
},
"tags": [{
"key": "string",
"values": ["string"],
}],
"time_range": {
"begin_date_inclusive": "string",
"end_date_inclusive": "string",
},
},
description="string",
name="string",
source_views=["string"],
tags={
"string": "string",
},
timeouts={
"create": "string",
"delete": "string",
"update": "string",
})
const viewResource = new aws.billing.View("viewResource", {
dataFilterExpression: {
dimensions: {
key: "string",
values: ["string"],
},
tags: [{
key: "string",
values: ["string"],
}],
timeRange: {
beginDateInclusive: "string",
endDateInclusive: "string",
},
},
description: "string",
name: "string",
sourceViews: ["string"],
tags: {
string: "string",
},
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
});
type: aws:billing:View
properties:
dataFilterExpression:
dimensions:
key: string
values:
- string
tags:
- key: string
values:
- string
timeRange:
beginDateInclusive: string
endDateInclusive: string
description: string
name: string
sourceViews:
- string
tags:
string: string
timeouts:
create: string
delete: string
update: string
View Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The View resource accepts the following input properties:
- Data
Filter ViewExpression Data Filter Expression - Filter Cost Explorer APIs using the expression. Refer to the data-filter-expression block documentation for more details.
- Description string
- Description of the custom billing view.
- Name string
- Name of the custom billing view to be created.
- Source
Views List<string> List of ARNs of the source data views for the custom billing view.
The following arguments are optional:
- Dictionary<string, string>
- List of key value map specifying tags associated to the billing view being created.
- Timeouts
View
Timeouts
- Data
Filter ViewExpression Data Filter Expression Args - Filter Cost Explorer APIs using the expression. Refer to the data-filter-expression block documentation for more details.
- Description string
- Description of the custom billing view.
- Name string
- Name of the custom billing view to be created.
- Source
Views []string List of ARNs of the source data views for the custom billing view.
The following arguments are optional:
- map[string]string
- List of key value map specifying tags associated to the billing view being created.
- Timeouts
View
Timeouts Args
- data
Filter ViewExpression Data Filter Expression - Filter Cost Explorer APIs using the expression. Refer to the data-filter-expression block documentation for more details.
- description String
- Description of the custom billing view.
- name String
- Name of the custom billing view to be created.
- source
Views List<String> List of ARNs of the source data views for the custom billing view.
The following arguments are optional:
- Map<String,String>
- List of key value map specifying tags associated to the billing view being created.
- timeouts
View
Timeouts
- data
Filter ViewExpression Data Filter Expression - Filter Cost Explorer APIs using the expression. Refer to the data-filter-expression block documentation for more details.
- description string
- Description of the custom billing view.
- name string
- Name of the custom billing view to be created.
- source
Views string[] List of ARNs of the source data views for the custom billing view.
The following arguments are optional:
- {[key: string]: string}
- List of key value map specifying tags associated to the billing view being created.
- timeouts
View
Timeouts
- data_
filter_ Viewexpression Data Filter Expression Args - Filter Cost Explorer APIs using the expression. Refer to the data-filter-expression block documentation for more details.
- description str
- Description of the custom billing view.
- name str
- Name of the custom billing view to be created.
- source_
views Sequence[str] List of ARNs of the source data views for the custom billing view.
The following arguments are optional:
- Mapping[str, str]
- List of key value map specifying tags associated to the billing view being created.
- timeouts
View
Timeouts Args
- data
Filter Property MapExpression - Filter Cost Explorer APIs using the expression. Refer to the data-filter-expression block documentation for more details.
- description String
- Description of the custom billing view.
- name String
- Name of the custom billing view to be created.
- source
Views List<String> List of ARNs of the source data views for the custom billing view.
The following arguments are optional:
- Map<String>
- List of key value map specifying tags associated to the billing view being created.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the View resource produces the following output properties:
- Arn string
- ARN of the View.
- Billing
View stringType - Type of billing group. Valid values are PRIMARY|BILLING_GROUP|CUSTOM.
- Created
At string - Timestamp when the billing view was created.
- Derived
View intCount - Number of billing views that use this billing view as a source.
- Id string
- The provider-assigned unique ID for this managed resource.
- Owner
Account stringId - Account owner of the billing view.
- Source
Account stringId - AWS account ID that owns the source billing view, if this is a derived billing view.
- Source
View intCount - Number of source views associated with this billing view.
- Dictionary<string, string>
- List of key value map specifying tags associated to the billing view.
- Updated
At string - Time when the billing view was last updated.
- View
Definition stringLast Updated At - Timestamp of when the billing view definition was last updated.
- Arn string
- ARN of the View.
- Billing
View stringType - Type of billing group. Valid values are PRIMARY|BILLING_GROUP|CUSTOM.
- Created
At string - Timestamp when the billing view was created.
- Derived
View intCount - Number of billing views that use this billing view as a source.
- Id string
- The provider-assigned unique ID for this managed resource.
- Owner
Account stringId - Account owner of the billing view.
- Source
Account stringId - AWS account ID that owns the source billing view, if this is a derived billing view.
- Source
View intCount - Number of source views associated with this billing view.
- map[string]string
- List of key value map specifying tags associated to the billing view.
- Updated
At string - Time when the billing view was last updated.
- View
Definition stringLast Updated At - Timestamp of when the billing view definition was last updated.
- arn String
- ARN of the View.
- billing
View StringType - Type of billing group. Valid values are PRIMARY|BILLING_GROUP|CUSTOM.
- created
At String - Timestamp when the billing view was created.
- derived
View IntegerCount - Number of billing views that use this billing view as a source.
- id String
- The provider-assigned unique ID for this managed resource.
- owner
Account StringId - Account owner of the billing view.
- source
Account StringId - AWS account ID that owns the source billing view, if this is a derived billing view.
- source
View IntegerCount - Number of source views associated with this billing view.
- Map<String,String>
- List of key value map specifying tags associated to the billing view.
- updated
At String - Time when the billing view was last updated.
- view
Definition StringLast Updated At - Timestamp of when the billing view definition was last updated.
- arn string
- ARN of the View.
- billing
View stringType - Type of billing group. Valid values are PRIMARY|BILLING_GROUP|CUSTOM.
- created
At string - Timestamp when the billing view was created.
- derived
View numberCount - Number of billing views that use this billing view as a source.
- id string
- The provider-assigned unique ID for this managed resource.
- owner
Account stringId - Account owner of the billing view.
- source
Account stringId - AWS account ID that owns the source billing view, if this is a derived billing view.
- source
View numberCount - Number of source views associated with this billing view.
- {[key: string]: string}
- List of key value map specifying tags associated to the billing view.
- updated
At string - Time when the billing view was last updated.
- view
Definition stringLast Updated At - Timestamp of when the billing view definition was last updated.
- arn str
- ARN of the View.
- billing_
view_ strtype - Type of billing group. Valid values are PRIMARY|BILLING_GROUP|CUSTOM.
- created_
at str - Timestamp when the billing view was created.
- derived_
view_ intcount - Number of billing views that use this billing view as a source.
- id str
- The provider-assigned unique ID for this managed resource.
- owner_
account_ strid - Account owner of the billing view.
- source_
account_ strid - AWS account ID that owns the source billing view, if this is a derived billing view.
- source_
view_ intcount - Number of source views associated with this billing view.
- Mapping[str, str]
- List of key value map specifying tags associated to the billing view.
- updated_
at str - Time when the billing view was last updated.
- view_
definition_ strlast_ updated_ at - Timestamp of when the billing view definition was last updated.
- arn String
- ARN of the View.
- billing
View StringType - Type of billing group. Valid values are PRIMARY|BILLING_GROUP|CUSTOM.
- created
At String - Timestamp when the billing view was created.
- derived
View NumberCount - Number of billing views that use this billing view as a source.
- id String
- The provider-assigned unique ID for this managed resource.
- owner
Account StringId - Account owner of the billing view.
- source
Account StringId - AWS account ID that owns the source billing view, if this is a derived billing view.
- source
View NumberCount - Number of source views associated with this billing view.
- Map<String>
- List of key value map specifying tags associated to the billing view.
- updated
At String - Time when the billing view was last updated.
- view
Definition StringLast Updated At - Timestamp of when the billing view definition was last updated.
Look up Existing View Resource
Get an existing View resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ViewState, opts?: CustomResourceOptions): View@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
billing_view_type: Optional[str] = None,
created_at: Optional[str] = None,
data_filter_expression: Optional[ViewDataFilterExpressionArgs] = None,
derived_view_count: Optional[int] = None,
description: Optional[str] = None,
name: Optional[str] = None,
owner_account_id: Optional[str] = None,
source_account_id: Optional[str] = None,
source_view_count: Optional[int] = None,
source_views: Optional[Sequence[str]] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
timeouts: Optional[ViewTimeoutsArgs] = None,
updated_at: Optional[str] = None,
view_definition_last_updated_at: Optional[str] = None) -> Viewfunc GetView(ctx *Context, name string, id IDInput, state *ViewState, opts ...ResourceOption) (*View, error)public static View Get(string name, Input<string> id, ViewState? state, CustomResourceOptions? opts = null)public static View get(String name, Output<String> id, ViewState state, CustomResourceOptions options)resources: _: type: aws:billing:View get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- ARN of the View.
- Billing
View stringType - Type of billing group. Valid values are PRIMARY|BILLING_GROUP|CUSTOM.
- Created
At string - Timestamp when the billing view was created.
- Data
Filter ViewExpression Data Filter Expression - Filter Cost Explorer APIs using the expression. Refer to the data-filter-expression block documentation for more details.
- Derived
View intCount - Number of billing views that use this billing view as a source.
- Description string
- Description of the custom billing view.
- Name string
- Name of the custom billing view to be created.
- Owner
Account stringId - Account owner of the billing view.
- Source
Account stringId - AWS account ID that owns the source billing view, if this is a derived billing view.
- Source
View intCount - Number of source views associated with this billing view.
- Source
Views List<string> List of ARNs of the source data views for the custom billing view.
The following arguments are optional:
- Dictionary<string, string>
- List of key value map specifying tags associated to the billing view being created.
- Dictionary<string, string>
- List of key value map specifying tags associated to the billing view.
- Timeouts
View
Timeouts - Updated
At string - Time when the billing view was last updated.
- View
Definition stringLast Updated At - Timestamp of when the billing view definition was last updated.
- Arn string
- ARN of the View.
- Billing
View stringType - Type of billing group. Valid values are PRIMARY|BILLING_GROUP|CUSTOM.
- Created
At string - Timestamp when the billing view was created.
- Data
Filter ViewExpression Data Filter Expression Args - Filter Cost Explorer APIs using the expression. Refer to the data-filter-expression block documentation for more details.
- Derived
View intCount - Number of billing views that use this billing view as a source.
- Description string
- Description of the custom billing view.
- Name string
- Name of the custom billing view to be created.
- Owner
Account stringId - Account owner of the billing view.
- Source
Account stringId - AWS account ID that owns the source billing view, if this is a derived billing view.
- Source
View intCount - Number of source views associated with this billing view.
- Source
Views []string List of ARNs of the source data views for the custom billing view.
The following arguments are optional:
- map[string]string
- List of key value map specifying tags associated to the billing view being created.
- map[string]string
- List of key value map specifying tags associated to the billing view.
- Timeouts
View
Timeouts Args - Updated
At string - Time when the billing view was last updated.
- View
Definition stringLast Updated At - Timestamp of when the billing view definition was last updated.
- arn String
- ARN of the View.
- billing
View StringType - Type of billing group. Valid values are PRIMARY|BILLING_GROUP|CUSTOM.
- created
At String - Timestamp when the billing view was created.
- data
Filter ViewExpression Data Filter Expression - Filter Cost Explorer APIs using the expression. Refer to the data-filter-expression block documentation for more details.
- derived
View IntegerCount - Number of billing views that use this billing view as a source.
- description String
- Description of the custom billing view.
- name String
- Name of the custom billing view to be created.
- owner
Account StringId - Account owner of the billing view.
- source
Account StringId - AWS account ID that owns the source billing view, if this is a derived billing view.
- source
View IntegerCount - Number of source views associated with this billing view.
- source
Views List<String> List of ARNs of the source data views for the custom billing view.
The following arguments are optional:
- Map<String,String>
- List of key value map specifying tags associated to the billing view being created.
- Map<String,String>
- List of key value map specifying tags associated to the billing view.
- timeouts
View
Timeouts - updated
At String - Time when the billing view was last updated.
- view
Definition StringLast Updated At - Timestamp of when the billing view definition was last updated.
- arn string
- ARN of the View.
- billing
View stringType - Type of billing group. Valid values are PRIMARY|BILLING_GROUP|CUSTOM.
- created
At string - Timestamp when the billing view was created.
- data
Filter ViewExpression Data Filter Expression - Filter Cost Explorer APIs using the expression. Refer to the data-filter-expression block documentation for more details.
- derived
View numberCount - Number of billing views that use this billing view as a source.
- description string
- Description of the custom billing view.
- name string
- Name of the custom billing view to be created.
- owner
Account stringId - Account owner of the billing view.
- source
Account stringId - AWS account ID that owns the source billing view, if this is a derived billing view.
- source
View numberCount - Number of source views associated with this billing view.
- source
Views string[] List of ARNs of the source data views for the custom billing view.
The following arguments are optional:
- {[key: string]: string}
- List of key value map specifying tags associated to the billing view being created.
- {[key: string]: string}
- List of key value map specifying tags associated to the billing view.
- timeouts
View
Timeouts - updated
At string - Time when the billing view was last updated.
- view
Definition stringLast Updated At - Timestamp of when the billing view definition was last updated.
- arn str
- ARN of the View.
- billing_
view_ strtype - Type of billing group. Valid values are PRIMARY|BILLING_GROUP|CUSTOM.
- created_
at str - Timestamp when the billing view was created.
- data_
filter_ Viewexpression Data Filter Expression Args - Filter Cost Explorer APIs using the expression. Refer to the data-filter-expression block documentation for more details.
- derived_
view_ intcount - Number of billing views that use this billing view as a source.
- description str
- Description of the custom billing view.
- name str
- Name of the custom billing view to be created.
- owner_
account_ strid - Account owner of the billing view.
- source_
account_ strid - AWS account ID that owns the source billing view, if this is a derived billing view.
- source_
view_ intcount - Number of source views associated with this billing view.
- source_
views Sequence[str] List of ARNs of the source data views for the custom billing view.
The following arguments are optional:
- Mapping[str, str]
- List of key value map specifying tags associated to the billing view being created.
- Mapping[str, str]
- List of key value map specifying tags associated to the billing view.
- timeouts
View
Timeouts Args - updated_
at str - Time when the billing view was last updated.
- view_
definition_ strlast_ updated_ at - Timestamp of when the billing view definition was last updated.
- arn String
- ARN of the View.
- billing
View StringType - Type of billing group. Valid values are PRIMARY|BILLING_GROUP|CUSTOM.
- created
At String - Timestamp when the billing view was created.
- data
Filter Property MapExpression - Filter Cost Explorer APIs using the expression. Refer to the data-filter-expression block documentation for more details.
- derived
View NumberCount - Number of billing views that use this billing view as a source.
- description String
- Description of the custom billing view.
- name String
- Name of the custom billing view to be created.
- owner
Account StringId - Account owner of the billing view.
- source
Account StringId - AWS account ID that owns the source billing view, if this is a derived billing view.
- source
View NumberCount - Number of source views associated with this billing view.
- source
Views List<String> List of ARNs of the source data views for the custom billing view.
The following arguments are optional:
- Map<String>
- List of key value map specifying tags associated to the billing view being created.
- Map<String>
- List of key value map specifying tags associated to the billing view.
- timeouts Property Map
- updated
At String - Time when the billing view was last updated.
- view
Definition StringLast Updated At - Timestamp of when the billing view definition was last updated.
Supporting Types
ViewDataFilterExpression, ViewDataFilterExpressionArgs
- Dimensions
View
Data Filter Expression Dimensions - Dimension to use for
expression. Refer to #dimensions for more details. -
List<View
Data Filter Expression Tag> - List of key value map specifying tags associated to the billing view being created.
- Time
Range ViewData Filter Expression Time Range - Time range to use for
expression. Refer to #time-range for more details.
- Dimensions
View
Data Filter Expression Dimensions - Dimension to use for
expression. Refer to #dimensions for more details. -
[]View
Data Filter Expression Tag - List of key value map specifying tags associated to the billing view being created.
- Time
Range ViewData Filter Expression Time Range - Time range to use for
expression. Refer to #time-range for more details.
- dimensions
View
Data Filter Expression Dimensions - Dimension to use for
expression. Refer to #dimensions for more details. -
List<View
Data Filter Expression Tag> - List of key value map specifying tags associated to the billing view being created.
- time
Range ViewData Filter Expression Time Range - Time range to use for
expression. Refer to #time-range for more details.
- dimensions
View
Data Filter Expression Dimensions - Dimension to use for
expression. Refer to #dimensions for more details. -
View
Data Filter Expression Tag[] - List of key value map specifying tags associated to the billing view being created.
- time
Range ViewData Filter Expression Time Range - Time range to use for
expression. Refer to #time-range for more details.
- dimensions
View
Data Filter Expression Dimensions - Dimension to use for
expression. Refer to #dimensions for more details. -
Sequence[View
Data Filter Expression Tag] - List of key value map specifying tags associated to the billing view being created.
- time_
range ViewData Filter Expression Time Range - Time range to use for
expression. Refer to #time-range for more details.
- dimensions Property Map
- Dimension to use for
expression. Refer to #dimensions for more details. - List<Property Map>
- List of key value map specifying tags associated to the billing view being created.
- time
Range Property Map - Time range to use for
expression. Refer to #time-range for more details.
ViewDataFilterExpressionDimensions, ViewDataFilterExpressionDimensionsArgs
ViewDataFilterExpressionTag, ViewDataFilterExpressionTagArgs
ViewDataFilterExpressionTimeRange, ViewDataFilterExpressionTimeRangeArgs
- Begin
Date stringInclusive - Inclusive end date of the time range.
- End
Date stringInclusive
- Begin
Date stringInclusive - Inclusive end date of the time range.
- End
Date stringInclusive
- begin
Date StringInclusive - Inclusive end date of the time range.
- end
Date StringInclusive
- begin
Date stringInclusive - Inclusive end date of the time range.
- end
Date stringInclusive
- begin_
date_ strinclusive - Inclusive end date of the time range.
- end_
date_ strinclusive
- begin
Date StringInclusive - Inclusive end date of the time range.
- end
Date StringInclusive
ViewTimeouts, ViewTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Import
Using pulumi import, import Billing View using the arn. For example:
$ pulumi import aws:billing/view:View example arn:aws:billing::123456789012:billing-view/example
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.
