[][src]Module germinate::awsssm

Provides the ability to asynchronously load values from the AWS Systems Manager Parameter Store

Examples

// assuming something like this: `aws ssm put-parameter --name my.param --value "ssm value"`
let input = String::from("SSM template: %awsssm:my.param%");
let output = germinate::process(input);
assert_eq!(String::from("SSM template: ssm value"), output);

Structs

AwsSsmLoader

This type provides functionality for loading values from AWS Systems Manager Parameter Store