Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,17 @@ awsParamStore.getParameter( '/project1/my-parameter', { region: 'us-east-1' } )
});
```

The `parameter` info object will have properties similiar to the following:

`{
Name: '/project1/my-parameter',
Type: 'String',
Value: 'your value',
Version: 1,
LastModifiedDate: 2020-02-18T18:17:08.229Z,
ARN: 'arn:aws:ssm:us-east-1:000000000000:parameter/project1/my-parameter'
}`

### `getParameterSync( name [, options] )`

Gets a parameter by name. This method will block until the operation completes.
Expand Down Expand Up @@ -212,7 +223,6 @@ that resolves the parameter results.
Executes the query based on path or name(s) that were selected. This operation
will block until complete.


## Feedback

We'd love to get feedback on how to make this tool better. Feel free to contact
Expand Down