Class: AwsSsmEnv::PathFetcher
- Defined in:
- lib/aws-ssm-env/fetchers/path.rb
Overview
Parameter Storeのパス階層を利用したFetcherクラスの実装サブクラス。 ‘path`と`recursive`を指定してパス階層のパラメータ値をまとめて取得する。 `ssm:GetParametersByPath`の認可が必要。
Constant Summary collapse
- MAX_FETCH_SIZE =
10
Instance Method Summary collapse
-
#initialize(**args) ⇒ PathFetcher
constructor
A new instance of PathFetcher.
Methods inherited from Fetcher
Constructor Details
#initialize(**args) ⇒ PathFetcher
Returns a new instance of PathFetcher.
19 20 21 22 |
# File 'lib/aws-ssm-env/fetchers/path.rb', line 19 def initialize(**args) super @base_params = base_params(args) end |