Update Billing View
billing_update_billing_view | R Documentation |
An API to update the attributes of the billing view¶
Description¶
An API to update the attributes of the billing view.
Usage¶
billing_update_billing_view(arn, name, description,
dataFilterExpression)
Arguments¶
arn |
[required] The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view. |
name |
The name of the billing view. |
description |
The description of the billing view. |
dataFilterExpression |
See Expression.
Billing view only supports |
Value¶
A list with the following syntax:
list(
arn = "string",
updatedAt = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$update_billing_view(
arn = "string",
name = "string",
description = "string",
dataFilterExpression = list(
dimensions = list(
key = "LINKED_ACCOUNT",
values = list(
"string"
)
),
tags = list(
key = "string",
values = list(
"string"
)
)
)
)