Skip to content

Describe View

connectparticipant_describe_view R Documentation

Retrieves the view for the specified view token

Description

Retrieves the view for the specified view token.

Usage

connectparticipant_describe_view(ViewToken, ConnectionToken)

Arguments

ViewToken

[required] An encrypted token originating from the interactive message of a ShowView block operation. Represents the desired view.

ConnectionToken

[required] The connection token.

Value

A list with the following syntax:

list(
  View = list(
    Id = "string",
    Arn = "string",
    Name = "string",
    Version = 123,
    Content = list(
      InputSchema = "string",
      Template = "string",
      Actions = list(
        "string"
      )
    )
  )
)

Request syntax

svc$describe_view(
  ViewToken = "string",
  ConnectionToken = "string"
)