Select Resource Config
configservice_select_resource_config | R Documentation |
Accepts a structured query language (SQL) SELECT command, performs the corresponding search, and returns resource configurations matching the properties¶
Description¶
Accepts a structured query language (SQL) SELECT
command, performs the
corresponding search, and returns resource configurations matching the
properties.
For more information about query components, see the Query Components section in the Config Developer Guide.
Usage¶
configservice_select_resource_config(Expression, Limit, NextToken)
Arguments¶
Expression |
[required] The SQL query |
Limit |
The maximum number of query results returned on each page. |
NextToken |
The |
Value¶
A list with the following syntax:
list(
Results = list(
"string"
),
QueryInfo = list(
SelectFields = list(
list(
Name = "string"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$select_resource_config(
Expression = "string",
Limit = 123,
NextToken = "string"
)