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 |
Returns a list of parameter group descriptions. If a parameter group name is specified, the list will contain only the descriptions for that group.
Synopsis
- describeParameterGroups :: DescribeParameterGroups
- data DescribeParameterGroups
- dpgNextToken :: Lens' DescribeParameterGroups (Maybe Text)
- dpgParameterGroupNames :: Lens' DescribeParameterGroups [Text]
- dpgMaxResults :: Lens' DescribeParameterGroups (Maybe Int)
- describeParameterGroupsResponse :: Int -> DescribeParameterGroupsResponse
- data DescribeParameterGroupsResponse
- dpgsrsNextToken :: Lens' DescribeParameterGroupsResponse (Maybe Text)
- dpgsrsParameterGroups :: Lens' DescribeParameterGroupsResponse [ParameterGroup]
- dpgsrsResponseStatus :: Lens' DescribeParameterGroupsResponse Int
Creating a Request
describeParameterGroups :: DescribeParameterGroups Source #
Creates a value of DescribeParameterGroups
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
dpgNextToken
- An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified byMaxResults
.dpgParameterGroupNames
- The names of the parameter groups.dpgMaxResults
- The maximum number of results to include in the response. If more results exist than the specifiedMaxResults
value, a token is included in the response so that the remaining results can be retrieved. The value forMaxResults
must be between 20 and 100.
data DescribeParameterGroups Source #
See: describeParameterGroups
smart constructor.
Instances
Request Lenses
dpgNextToken :: Lens' DescribeParameterGroups (Maybe Text) Source #
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults
.
dpgParameterGroupNames :: Lens' DescribeParameterGroups [Text] Source #
The names of the parameter groups.
dpgMaxResults :: Lens' DescribeParameterGroups (Maybe Int) Source #
The maximum number of results to include in the response. If more results exist than the specified MaxResults
value, a token is included in the response so that the remaining results can be retrieved. The value for MaxResults
must be between 20 and 100.
Destructuring the Response
describeParameterGroupsResponse Source #
Creates a value of DescribeParameterGroupsResponse
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
dpgsrsNextToken
- Provides an identifier to allow retrieval of paginated results.dpgsrsParameterGroups
- An array of parameter groups. Each element in the array represents one parameter group.dpgsrsResponseStatus
- -- | The response status code.
data DescribeParameterGroupsResponse Source #
See: describeParameterGroupsResponse
smart constructor.
Instances
Response Lenses
dpgsrsNextToken :: Lens' DescribeParameterGroupsResponse (Maybe Text) Source #
Provides an identifier to allow retrieval of paginated results.
dpgsrsParameterGroups :: Lens' DescribeParameterGroupsResponse [ParameterGroup] Source #
An array of parameter groups. Each element in the array represents one parameter group.
dpgsrsResponseStatus :: Lens' DescribeParameterGroupsResponse Int Source #
- - | The response status code.