Learn R Programming

paws.management (version 0.1.12)

ssm_get_parameter: Get information about a parameter by using the parameter name

Description

Get information about a parameter by using the parameter name. Don't confuse this API action with the get_parameters API action.

Usage

ssm_get_parameter(Name, WithDecryption)

Value

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"
  )
)

Arguments

Name

[required] The name of the parameter you want to query.

WithDecryption

Return decrypted values for secure string parameters. This flag is ignored for String and StringList parameter types.

Request syntax

svc$get_parameter(
  Name = "string",
  WithDecryption = TRUE|FALSE
)