| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.ServiceCatalog.ListLaunchPaths
Description
Lists the paths to the 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.
This operation returns paginated results.
Synopsis
- data ListLaunchPaths = ListLaunchPaths' {}
- newListLaunchPaths :: Text -> ListLaunchPaths
- listLaunchPaths_acceptLanguage :: Lens' ListLaunchPaths (Maybe Text)
- listLaunchPaths_pageSize :: Lens' ListLaunchPaths (Maybe Natural)
- listLaunchPaths_pageToken :: Lens' ListLaunchPaths (Maybe Text)
- listLaunchPaths_productId :: Lens' ListLaunchPaths Text
- data ListLaunchPathsResponse = ListLaunchPathsResponse' {}
- newListLaunchPathsResponse :: Int -> ListLaunchPathsResponse
- listLaunchPathsResponse_launchPathSummaries :: Lens' ListLaunchPathsResponse (Maybe [LaunchPathSummary])
- listLaunchPathsResponse_nextPageToken :: Lens' ListLaunchPathsResponse (Maybe Text)
- listLaunchPathsResponse_httpStatus :: Lens' ListLaunchPathsResponse Int
Creating a Request
data ListLaunchPaths Source #
See: newListLaunchPaths smart constructor.
Constructors
| ListLaunchPaths' | |
Fields
| |
Instances
Arguments
| :: Text | |
| -> ListLaunchPaths |
Create a value of ListLaunchPaths 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:acceptLanguage:ListLaunchPaths', listLaunchPaths_acceptLanguage - The language code.
en- English (default)jp- Japanesezh- Chinese
$sel:pageSize:ListLaunchPaths', listLaunchPaths_pageSize - The maximum number of items to return with this call.
$sel:pageToken:ListLaunchPaths', listLaunchPaths_pageToken - The page token for the next set of results. To retrieve the first set of
results, use null.
ListLaunchPaths, listLaunchPaths_productId - The product identifier.
Request Lenses
listLaunchPaths_acceptLanguage :: Lens' ListLaunchPaths (Maybe Text) Source #
The language code.
en- English (default)jp- Japanesezh- Chinese
listLaunchPaths_pageSize :: Lens' ListLaunchPaths (Maybe Natural) Source #
The maximum number of items to return with this call.
listLaunchPaths_pageToken :: Lens' ListLaunchPaths (Maybe Text) Source #
The page token for the next set of results. To retrieve the first set of results, use null.
listLaunchPaths_productId :: Lens' ListLaunchPaths Text Source #
The product identifier.
Destructuring the Response
data ListLaunchPathsResponse Source #
See: newListLaunchPathsResponse smart constructor.
Constructors
| ListLaunchPathsResponse' | |
Fields
| |
Instances
newListLaunchPathsResponse Source #
Create a value of ListLaunchPathsResponse 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:launchPathSummaries:ListLaunchPathsResponse', listLaunchPathsResponse_launchPathSummaries - Information about the launch path.
$sel:nextPageToken:ListLaunchPathsResponse', listLaunchPathsResponse_nextPageToken - The page token to use to retrieve the next set of results. If there are
no additional results, this value is null.
$sel:httpStatus:ListLaunchPathsResponse', listLaunchPathsResponse_httpStatus - The response's http status code.
Response Lenses
listLaunchPathsResponse_launchPathSummaries :: Lens' ListLaunchPathsResponse (Maybe [LaunchPathSummary]) Source #
Information about the launch path.
listLaunchPathsResponse_nextPageToken :: Lens' ListLaunchPathsResponse (Maybe Text) Source #
The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
listLaunchPathsResponse_httpStatus :: Lens' ListLaunchPathsResponse Int Source #
The response's http status code.