Skip to content

Get Billing View

billing_get_billing_view R Documentation

Returns the metadata associated to the specified billing view ARN

Description

Returns the metadata associated to the specified billing view ARN.

Usage

billing_get_billing_view(arn)

Arguments

arn

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

Value

A list with the following syntax:

list(
  billingView = list(
    arn = "string",
    name = "string",
    description = "string",
    billingViewType = "PRIMARY"|"BILLING_GROUP"|"CUSTOM",
    ownerAccountId = "string",
    dataFilterExpression = list(
      dimensions = list(
        key = "LINKED_ACCOUNT",
        values = list(
          "string"
        )
      ),
      tags = list(
        key = "string",
        values = list(
          "string"
        )
      )
    ),
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    updatedAt = as.POSIXct(
      "2015-01-01"
    )
  )
)

Request syntax

svc$get_billing_view(
  arn = "string"
)