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"|"BILLING_TRANSFER"|"BILLING_TRANSFER_SHOWBACK",
ownerAccountId = "string",
sourceAccountId = "string",
dataFilterExpression = list(
dimensions = list(
key = "LINKED_ACCOUNT",
values = list(
"string"
)
),
tags = list(
key = "string",
values = list(
"string"
)
),
costCategories = list(
key = "string",
values = list(
"string"
)
),
timeRange = list(
beginDateInclusive = as.POSIXct(
"2015-01-01"
),
endDateInclusive = as.POSIXct(
"2015-01-01"
)
)
),
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
derivedViewCount = 123,
sourceViewCount = 123,
viewDefinitionLastUpdatedAt = as.POSIXct(
"2015-01-01"
),
healthStatus = list(
statusCode = "HEALTHY"|"UNHEALTHY"|"CREATING"|"UPDATING",
statusReasons = list(
"SOURCE_VIEW_UNHEALTHY"|"SOURCE_VIEW_UPDATING"|"SOURCE_VIEW_ACCESS_DENIED"|"SOURCE_VIEW_NOT_FOUND"|"CYCLIC_DEPENDENCY"|"SOURCE_VIEW_DEPTH_EXCEEDED"|"AGGREGATE_SOURCE"|"VIEW_OWNER_NOT_MANAGEMENT_ACCOUNT"
)
)
)
)
Request syntax¶
svc$get_billing_view(
arn = "string"
)