Get Flow Metadata
| quicksight_get_flow_metadata | R Documentation |
Retrieves the metadata of a flow, not including its definition specifying the steps¶
Description¶
Retrieves the metadata of a flow, not including its definition specifying the steps.
Usage¶
quicksight_get_flow_metadata(AwsAccountId, FlowId)
Arguments¶
AwsAccountId |
[required] The ID of the Amazon Web Services account that contains the flow that you are getting metadata for. |
FlowId |
[required] The unique identifier of the flow. |
Value¶
A list with the following syntax:
list(
Arn = "string",
FlowId = "string",
Name = "string",
Description = "string",
PublishState = "PUBLISHED"|"DRAFT"|"PENDING_APPROVAL",
UserCount = 123,
RunCount = 123,
CreatedTime = as.POSIXct(
"2015-01-01"
),
LastUpdatedTime = as.POSIXct(
"2015-01-01"
),
RequestId = "string",
Status = 123
)
Request syntax¶
svc$get_flow_metadata(
AwsAccountId = "string",
FlowId = "string"
)