| Copyright | (c) 2013-2016 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay <brendan.g.hay@gmail.com> |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | None |
| Language | Haskell2010 |
Network.AWS.SSM.GetParameters
Description
Get a list of parameters used by the AWS account.>
- getParameters :: NonEmpty Text -> GetParameters
- data GetParameters
- gpWithDecryption :: Lens' GetParameters (Maybe Bool)
- gpNames :: Lens' GetParameters (NonEmpty Text)
- getParametersResponse :: Int -> GetParametersResponse
- data GetParametersResponse
- gprsParameters :: Lens' GetParametersResponse [Parameter]
- gprsInvalidParameters :: Lens' GetParametersResponse (Maybe (NonEmpty Text))
- gprsResponseStatus :: 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:
gprsParameters- A list of parameters used by the AWS account.gprsInvalidParameters- A list of parameters that are not formatted correctly or do not run when executed.gprsResponseStatus- -- | The response status code.
data GetParametersResponse Source #
See: getParametersResponse smart constructor.
Response Lenses
gprsParameters :: Lens' GetParametersResponse [Parameter] Source #
A list of parameters used by the AWS account.
gprsInvalidParameters :: Lens' GetParametersResponse (Maybe (NonEmpty Text)) Source #
A list of parameters that are not formatted correctly or do not run when executed.
gprsResponseStatus :: Lens' GetParametersResponse Int Source #
- - | The response status code.