List of usage examples for com.amazonaws.services.simplesystemsmanagement.model GetParametersByPathRequest GetParametersByPathRequest
GetParametersByPathRequest
From source file:org.springframework.cloud.aws.paramstore.AwsParamStorePropertySource.java
License:Apache License
public void init() { GetParametersByPathRequest paramsRequest = new GetParametersByPathRequest().withPath(context) .withRecursive(true).withWithDecryption(true); getParameters(paramsRequest);/*www . j a v a 2s . co m*/ }