Skip to content

Describe Folder

quicksight_describe_folder R Documentation

Describes a folder

Description

Describes a folder.

Usage

quicksight_describe_folder(AwsAccountId, FolderId)

Arguments

AwsAccountId

[required] The ID for the Amazon Web Services account that contains the folder.

FolderId

[required] The ID of the folder.

Value

A list with the following syntax:

list(
  Status = 123,
  Folder = list(
    FolderId = "string",
    Arn = "string",
    Name = "string",
    FolderType = "SHARED"|"RESTRICTED",
    FolderPath = list(
      "string"
    ),
    CreatedTime = as.POSIXct(
      "2015-01-01"
    ),
    LastUpdatedTime = as.POSIXct(
      "2015-01-01"
    ),
    SharingModel = "ACCOUNT"|"NAMESPACE"
  ),
  RequestId = "string"
)

Request syntax

svc$describe_folder(
  AwsAccountId = "string",
  FolderId = "string"
)