| Copyright | (c) 2013-2017 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.ServiceCatalog.DescribeRecord
Description
Retrieves a paginated list of the full details of a specific request. Use this operation after calling a request operation (ProvisionProduct , TerminateProvisionedProduct , or UpdateProvisionedProduct ).
- describeRecord :: Text -> DescribeRecord
- data DescribeRecord
- drAcceptLanguage :: Lens' DescribeRecord (Maybe Text)
- drPageToken :: Lens' DescribeRecord (Maybe Text)
- drPageSize :: Lens' DescribeRecord (Maybe Natural)
- drId :: Lens' DescribeRecord Text
- describeRecordResponse :: Int -> DescribeRecordResponse
- data DescribeRecordResponse
- drrsRecordDetail :: Lens' DescribeRecordResponse (Maybe RecordDetail)
- drrsNextPageToken :: Lens' DescribeRecordResponse (Maybe Text)
- drrsRecordOutputs :: Lens' DescribeRecordResponse [RecordOutput]
- drrsResponseStatus :: Lens' DescribeRecordResponse Int
Creating a Request
Arguments
| :: Text | |
| -> DescribeRecord |
Creates a value of DescribeRecord with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
drAcceptLanguage- The language code. *en- English (default) *jp- Japanese *zh- ChinesedrPageToken- The page token of the first page retrieved. If null, this retrieves the first page of sizePageSize.drPageSize- The maximum number of items to return in the results. If more results exist than fit in the specifiedPageSize, the value ofNextPageTokenin the response is non-null.drId- The record identifier of the ProvisionedProduct object for which to retrieve output information. This is theRecordDetail.RecordIdobtained from the request operation's response.
data DescribeRecord Source #
See: describeRecord smart constructor.
Instances
Request Lenses
drAcceptLanguage :: Lens' DescribeRecord (Maybe Text) Source #
The language code. * en - English (default) * jp - Japanese * zh - Chinese
drPageToken :: Lens' DescribeRecord (Maybe Text) Source #
The page token of the first page retrieved. If null, this retrieves the first page of size PageSize .
drPageSize :: Lens' DescribeRecord (Maybe Natural) Source #
The maximum number of items to return in the results. If more results exist than fit in the specified PageSize , the value of NextPageToken in the response is non-null.
drId :: Lens' DescribeRecord Text Source #
The record identifier of the ProvisionedProduct object for which to retrieve output information. This is the RecordDetail.RecordId obtained from the request operation's response.
Destructuring the Response
describeRecordResponse Source #
Arguments
| :: Int | |
| -> DescribeRecordResponse |
Creates a value of DescribeRecordResponse with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
drrsRecordDetail- Detailed record information for the specified product.drrsNextPageToken- The page token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.drrsRecordOutputs- A list of outputs for the specified Product object created as the result of a request. For example, a CloudFormation-backed product that creates an S3 bucket would have an output for the S3 bucket URL.drrsResponseStatus- -- | The response status code.
data DescribeRecordResponse Source #
See: describeRecordResponse smart constructor.
Response Lenses
drrsRecordDetail :: Lens' DescribeRecordResponse (Maybe RecordDetail) Source #
Detailed record information for the specified product.
drrsNextPageToken :: Lens' DescribeRecordResponse (Maybe Text) Source #
The page token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.
drrsRecordOutputs :: Lens' DescribeRecordResponse [RecordOutput] Source #
A list of outputs for the specified Product object created as the result of a request. For example, a CloudFormation-backed product that creates an S3 bucket would have an output for the S3 bucket URL.
drrsResponseStatus :: Lens' DescribeRecordResponse Int Source #
- - | The response status code.