AWS Fundamentals Logo
AWS Fundamentals
AWS::Billing::BillingView

Billing BillingView

A billing view is a container of cost & usage metadata.

Properties

5 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
Name
string
RequiredCreate-only
SourceViews
Array<string>
Required
DataFilterExpression
object
Description
string
Create-only
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
Arnstring-
BillingViewTypestring-
CreatedAtnumberThe time when the billing view was created.
OwnerAccountIdstring-
UpdatedAtnumberThe time when the billing view was last updated.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Billing::BillingView

Resources:
  MyResource:
    Type: AWS::Billing::BillingView
    Properties:
      Name: "my-name"
      SourceViews: []
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

billing:CreateBillingViewbilling:AssociateSourceViewsbilling:TagResourcebilling:ListTagsForResourcebilling:GetBillingViewbilling:ListSourceViewsForBillingViewbilling:UseSourceView

read

billing:GetBillingViewbilling:ListTagsForResourcebilling:ListSourceViewsForBillingView

update

billing:UpdateBillingViewbilling:DisassociateSourceViewsbilling:AssociateSourceViewsbilling:GetBillingViewbilling:ListTagsForResourcebilling:TagResourcebilling:UntagResourcebilling:UseSourceView

delete

billing:GetBillingViewbilling:DeleteBillingView

list

billing:ListBillingViews

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceBilling
Properties10
Required2
TaggingSupported
Primary IDArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

DescriptionName

External Links