Learn R Programming

paws.management (version 0.1.11)

ssm_get_parameters: Get details of a parameter

Description

Get details of a parameter. Don't confuse this API action with the get_parameter API action.

Usage

ssm_get_parameters(Names, WithDecryption)

Arguments

Names

[required] Names of the parameters for which you want to query information.

WithDecryption

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

Value

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

Request syntax

svc$get_parameters(
  Names = list(
    "string"
  ),
  WithDecryption = TRUE|FALSE
)