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¶
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"
)
)
)