Get information about a parameter by using the parameter name. Don't
confuse this API action with the get_parameters
API action.
ssm_get_parameter(Name, WithDecryption)
A list with the following syntax:
list(
Parameter = 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"
)
)
[required] The name of the parameter you want to query.
Return decrypted values for secure string parameters. This flag is ignored for String and StringList parameter types.
svc$get_parameter(
Name = "string",
WithDecryption = TRUE|FALSE
)