Skip to content

Get Service View

resourceexplorer_get_service_view R Documentation

Retrieves details about a specific Resource Explorer service view

Description

Retrieves details about a specific Resource Explorer service view. This operation returns the configuration and properties of the specified view.

Usage

resourceexplorer_get_service_view(ServiceViewArn)

Arguments

ServiceViewArn

[required] The Amazon Resource Name (ARN) of the service view to retrieve details for.

Value

A list with the following syntax:

list(
  View = list(
    ServiceViewArn = "string",
    ServiceViewName = "string",
    Filters = list(
      FilterString = "string"
    ),
    IncludedProperties = list(
      list(
        Name = "string"
      )
    ),
    StreamingAccessForService = "string",
    ScopeType = "string"
  )
)

Request syntax

svc$get_service_view(
  ServiceViewArn = "string"
)