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 the detailed parameter list for a particular parameter group.
Synopsis
- data DescribeParameters = DescribeParameters' {}
- newDescribeParameters :: Text -> DescribeParameters
- describeParameters_nextToken :: Lens' DescribeParameters (Maybe Text)
- describeParameters_maxResults :: Lens' DescribeParameters (Maybe Int)
- describeParameters_parameterGroupName :: Lens' DescribeParameters Text
- data DescribeParametersResponse = DescribeParametersResponse' {
- nextToken :: Maybe Text
- parameters :: Maybe [Parameter]
- httpStatus :: Int
- newDescribeParametersResponse :: Int -> DescribeParametersResponse
- describeParametersResponse_nextToken :: Lens' DescribeParametersResponse (Maybe Text)
- describeParametersResponse_parameters :: Lens' DescribeParametersResponse (Maybe [Parameter])
- describeParametersResponse_httpStatus :: Lens' DescribeParametersResponse Int
Creating a Request
data DescribeParameters Source #
See: newDescribeParameters
smart constructor.
DescribeParameters' | |
|
Instances
newDescribeParameters Source #
Create a value of DescribeParameters
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:DescribeParameters'
, describeParameters_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:DescribeParameters'
, describeParameters_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:DescribeParameters'
, describeParameters_parameterGroupName
- he name of a specific parameter group to return details for.
Request Lenses
describeParameters_nextToken :: Lens' DescribeParameters (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.
describeParameters_maxResults :: Lens' DescribeParameters (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.
describeParameters_parameterGroupName :: Lens' DescribeParameters Text Source #
he name of a specific parameter group to return details for.
Destructuring the Response
data DescribeParametersResponse Source #
See: newDescribeParametersResponse
smart constructor.
DescribeParametersResponse' | |
|
Instances
newDescribeParametersResponse Source #
Create a value of DescribeParametersResponse
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:DescribeParameters'
, describeParametersResponse_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:parameters:DescribeParametersResponse'
, describeParametersResponse_parameters
- A list of parameters specific to a particular parameter group. Each
element in the list contains detailed information about one parameter.
$sel:httpStatus:DescribeParametersResponse'
, describeParametersResponse_httpStatus
- The response's http status code.
Response Lenses
describeParametersResponse_nextToken :: Lens' DescribeParametersResponse (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.
describeParametersResponse_parameters :: Lens' DescribeParametersResponse (Maybe [Parameter]) Source #
A list of parameters specific to a particular parameter group. Each element in the list contains detailed information about one parameter.
describeParametersResponse_httpStatus :: Lens' DescribeParametersResponse Int Source #
The response's http status code.