Example usage for com.amazonaws.services.simplesystemsmanagement.model GetParametersByPathRequest GetParametersByPathRequest

List of usage examples for com.amazonaws.services.simplesystemsmanagement.model GetParametersByPathRequest GetParametersByPathRequest

Introduction

In this page you can find the example usage for com.amazonaws.services.simplesystemsmanagement.model GetParametersByPathRequest GetParametersByPathRequest.

Prototype

GetParametersByPathRequest

Source Link

Usage

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*/
}