Skip to content

Get View

resourceexplorer_get_view R Documentation

Retrieves details of the specified view

Description

Retrieves details of the specified view.

Usage

resourceexplorer_get_view(ViewArn)

Arguments

ViewArn

[required] The Amazon resource name (ARN) of the view that you want information about.

Value

A list with the following syntax:

list(
  Tags = list(
    "string"
  ),
  View = list(
    Filters = list(
      FilterString = "string"
    ),
    IncludedProperties = list(
      list(
        Name = "string"
      )
    ),
    LastUpdatedAt = as.POSIXct(
      "2015-01-01"
    ),
    Owner = "string",
    Scope = "string",
    ViewArn = "string"
  )
)

Request syntax

svc$get_view(
  ViewArn = "string"
)