Class SystemsManager

A wrapper for AWS Systems Manager (SSM).

Constructors

Properties

cache: Map<string, string> = ...
client: SSMClient

Methods

  • Get a parameter by its name (path).

    Parameters

    • name: string
    • options: {
          noCache?: boolean;
          withDecryption?: boolean;
      } = {}
      • OptionalnoCache?: boolean
      • OptionalwithDecryption?: boolean

    Returns Promise<string>

  • Get a parameter (with decryption) by its name (path).

    Parameters

    • name: string
    • options: {
          noCache?: boolean;
      } = {}
      • OptionalnoCache?: boolean

    Returns Promise<string>