| Copyright | (c) 2013-2018 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | None |
| Language | Haskell2010 |
Network.AWS.SSM.GetParameters
Description
Get details of a parameter.
Synopsis
- getParameters :: NonEmpty Text -> GetParameters
- data GetParameters
- gpWithDecryption :: Lens' GetParameters (Maybe Bool)
- gpNames :: Lens' GetParameters (NonEmpty Text)
- getParametersResponse :: Int -> GetParametersResponse
- data GetParametersResponse
- grsParameters :: Lens' GetParametersResponse [Parameter]
- grsInvalidParameters :: Lens' GetParametersResponse [Text]
- grsResponseStatus :: Lens' GetParametersResponse Int
Creating a Request
Arguments
| :: NonEmpty Text | |
| -> GetParameters |
Creates a value of GetParameters with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
gpWithDecryption- Return decrypted secure string value. Return decrypted values for secure string parameters. This flag is ignored for String and StringList parameter types.gpNames- Names of the parameters for which you want to query information.
data GetParameters Source #
See: getParameters smart constructor.
Instances
Request Lenses
gpWithDecryption :: Lens' GetParameters (Maybe Bool) Source #
Return decrypted secure string value. Return decrypted values for secure string parameters. This flag is ignored for String and StringList parameter types.
gpNames :: Lens' GetParameters (NonEmpty Text) Source #
Names of the parameters for which you want to query information.
Destructuring the Response
getParametersResponse Source #
Arguments
| :: Int | |
| -> GetParametersResponse |
Creates a value of GetParametersResponse with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
grsParameters- A list of details for a parameter.grsInvalidParameters- A list of parameters that are not formatted correctly or do not run when executed.grsResponseStatus- -- | The response status code.
data GetParametersResponse Source #
See: getParametersResponse smart constructor.
Instances
Response Lenses
grsParameters :: Lens' GetParametersResponse [Parameter] Source #
A list of details for a parameter.
grsInvalidParameters :: Lens' GetParametersResponse [Text] Source #
A list of parameters that are not formatted correctly or do not run when executed.
grsResponseStatus :: Lens' GetParametersResponse Int Source #
- - | The response status code.