Get details of a parameter. Don't confuse this API action with the
get_parameter
API action.
ssm_get_parameters(Names, WithDecryption)
A list with the following syntax:
list(
Parameters = list(
list(
Name = "string",
Type = "String"|"StringList"|"SecureString",
Value = "string",
Version = 123,
Selector = "string",
SourceResult = "string",
LastModifiedDate = as.POSIXct(
"2015-01-01"
),
ARN = "string",
DataType = "string"
)
),
InvalidParameters = list(
"string"
)
)
[required] Names of the parameters for which you want to query information.
Return decrypted secure string value. Return decrypted values for secure string parameters. This flag is ignored for String and StringList parameter types.
svc$get_parameters(
Names = list(
"string"
),
WithDecryption = TRUE|FALSE
)