Skip to content

Get Stored Query

configservice_get_stored_query R Documentation

Returns the details of a specific stored query

Description

Returns the details of a specific stored query.

Usage

configservice_get_stored_query(QueryName)

Arguments

QueryName

[required] The name of the query.

Value

A list with the following syntax:

list(
  StoredQuery = list(
    QueryId = "string",
    QueryArn = "string",
    QueryName = "string",
    Description = "string",
    Expression = "string"
  )
)

Request syntax

svc$get_stored_query(
  QueryName = "string"
)