Copyright | (c) 2013-2021 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 |
Returns a list of parameter group descriptions. If a parameter group name is specified, the list contains only the descriptions for that group.
Synopsis
- data DescribeParameterGroups = DescribeParameterGroups' {}
- newDescribeParameterGroups :: DescribeParameterGroups
- describeParameterGroups_nextToken :: Lens' DescribeParameterGroups (Maybe Text)
- describeParameterGroups_maxResults :: Lens' DescribeParameterGroups (Maybe Int)
- describeParameterGroups_parameterGroupName :: Lens' DescribeParameterGroups (Maybe Text)
- data DescribeParameterGroupsResponse = DescribeParameterGroupsResponse' {}
- newDescribeParameterGroupsResponse :: Int -> DescribeParameterGroupsResponse
- describeParameterGroupsResponse_nextToken :: Lens' DescribeParameterGroupsResponse (Maybe Text)
- describeParameterGroupsResponse_parameterGroups :: Lens' DescribeParameterGroupsResponse (Maybe [ParameterGroup])
- describeParameterGroupsResponse_httpStatus :: Lens' DescribeParameterGroupsResponse Int
Creating a Request
data DescribeParameterGroups Source #
See: newDescribeParameterGroups
smart constructor.
DescribeParameterGroups' | |
|
Instances
newDescribeParameterGroups :: DescribeParameterGroups Source #
Create a value of DescribeParameterGroups
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:nextToken:DescribeParameterGroups'
, describeParameterGroups_nextToken
- An optional argument to pass in case the total number of records exceeds
the value of MaxResults. If nextToken is returned, there are more
results available. The value of nextToken is a unique pagination token
for each page. Make the call again using the returned token to retrieve
the next page. Keep all other arguments unchanged.
$sel:maxResults:DescribeParameterGroups'
, describeParameterGroups_maxResults
- The maximum number of records to include in the response. If more
records exist than the specified MaxResults value, a token is included
in the response so that the remaining results can be retrieved.
$sel:parameterGroupName:DescribeParameterGroups'
, describeParameterGroups_parameterGroupName
- The name of a specific parameter group to return details for.
Request Lenses
describeParameterGroups_nextToken :: Lens' DescribeParameterGroups (Maybe Text) Source #
An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
describeParameterGroups_maxResults :: Lens' DescribeParameterGroups (Maybe Int) Source #
The maximum number of records to include in the response. If more records exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
describeParameterGroups_parameterGroupName :: Lens' DescribeParameterGroups (Maybe Text) Source #
The name of a specific parameter group to return details for.
Destructuring the Response
data DescribeParameterGroupsResponse Source #
See: newDescribeParameterGroupsResponse
smart constructor.
DescribeParameterGroupsResponse' | |
|
Instances
newDescribeParameterGroupsResponse Source #
Create a value of DescribeParameterGroupsResponse
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:nextToken:DescribeParameterGroups'
, describeParameterGroupsResponse_nextToken
- An optional argument to pass in case the total number of records exceeds
the value of MaxResults. If nextToken is returned, there are more
results available. The value of nextToken is a unique pagination token
for each page. Make the call again using the returned token to retrieve
the next page. Keep all other arguments unchanged.
$sel:parameterGroups:DescribeParameterGroupsResponse'
, describeParameterGroupsResponse_parameterGroups
- A list of parameter groups. Each element in the list contains detailed
information about one parameter group.
$sel:httpStatus:DescribeParameterGroupsResponse'
, describeParameterGroupsResponse_httpStatus
- The response's http status code.
Response Lenses
describeParameterGroupsResponse_nextToken :: Lens' DescribeParameterGroupsResponse (Maybe Text) Source #
An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
describeParameterGroupsResponse_parameterGroups :: Lens' DescribeParameterGroupsResponse (Maybe [ParameterGroup]) Source #
A list of parameter groups. Each element in the list contains detailed information about one parameter group.
describeParameterGroupsResponse_httpStatus :: Lens' DescribeParameterGroupsResponse Int Source #
The response's http status code.