Skip to content

Get Flow Permissions

quicksight_get_flow_permissions R Documentation

Get permissions for a flow

Description

Get permissions for a flow.

Usage

quicksight_get_flow_permissions(AwsAccountId, FlowId)

Arguments

AwsAccountId

[required] The ID of the Amazon Web Services account that contains the flow that you are getting permissions for.

FlowId

[required] The unique identifier of the flow to get permissions from.

Value

A list with the following syntax:

list(
  Arn = "string",
  FlowId = "string",
  Permissions = list(
    list(
      Actions = list(
        "string"
      ),
      Principal = "string"
    )
  ),
  RequestId = "string",
  Status = 123
)

Request syntax

svc$get_flow_permissions(
  AwsAccountId = "string",
  FlowId = "string"
)