| 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.ListLaunchPaths
Description
Returns a paginated list of all paths to a specified product. A path is how the user has access to a specified product, and is necessary when provisioning a product. A path also determines the constraints put on the product.
- listLaunchPaths :: Text -> ListLaunchPaths
- data ListLaunchPaths
- llpAcceptLanguage :: Lens' ListLaunchPaths (Maybe Text)
- llpPageToken :: Lens' ListLaunchPaths (Maybe Text)
- llpPageSize :: Lens' ListLaunchPaths (Maybe Natural)
- llpProductId :: Lens' ListLaunchPaths Text
- listLaunchPathsResponse :: Int -> ListLaunchPathsResponse
- data ListLaunchPathsResponse
- llprsNextPageToken :: Lens' ListLaunchPathsResponse (Maybe Text)
- llprsLaunchPathSummaries :: Lens' ListLaunchPathsResponse [LaunchPathSummary]
- llprsResponseStatus :: Lens' ListLaunchPathsResponse Int
Creating a Request
Arguments
| :: Text | |
| -> ListLaunchPaths |
Creates a value of ListLaunchPaths with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
llpAcceptLanguage- The language code. *en- English (default) *jp- Japanese *zh- ChinesellpPageToken- The page token of the first page retrieved. If null, this retrieves the first page of sizePageSize.llpPageSize- 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.llpProductId- The product identifier. Identifies the product for which to retrieveLaunchPathSummariesinformation.
data ListLaunchPaths Source #
See: listLaunchPaths smart constructor.
Instances
Request Lenses
llpAcceptLanguage :: Lens' ListLaunchPaths (Maybe Text) Source #
The language code. * en - English (default) * jp - Japanese * zh - Chinese
llpPageToken :: Lens' ListLaunchPaths (Maybe Text) Source #
The page token of the first page retrieved. If null, this retrieves the first page of size PageSize .
llpPageSize :: Lens' ListLaunchPaths (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.
llpProductId :: Lens' ListLaunchPaths Text Source #
The product identifier. Identifies the product for which to retrieve LaunchPathSummaries information.
Destructuring the Response
listLaunchPathsResponse Source #
Arguments
| :: Int | |
| -> ListLaunchPathsResponse |
Creates a value of ListLaunchPathsResponse with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
llprsNextPageToken- 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.llprsLaunchPathSummaries- List of launch path information summaries for the specifiedPageToken.llprsResponseStatus- -- | The response status code.
data ListLaunchPathsResponse Source #
See: listLaunchPathsResponse smart constructor.
Response Lenses
llprsNextPageToken :: Lens' ListLaunchPathsResponse (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.
llprsLaunchPathSummaries :: Lens' ListLaunchPathsResponse [LaunchPathSummary] Source #
List of launch path information summaries for the specified PageToken .
llprsResponseStatus :: Lens' ListLaunchPathsResponse Int Source #
- - | The response status code.