Learn R Programming

paws.management (version 0.1.12)

configservice_get_stored_query: Returns the details of a specific stored query

Description

Returns the details of a specific stored query.

Usage

configservice_get_stored_query(QueryName)

Value

A list with the following syntax:

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

Arguments

QueryName

[required] The name of the query.

Request syntax

svc$get_stored_query(
  QueryName = "string"
)