{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.EC2.DescribeFpgaImages -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Describes the Amazon FPGA Images (AFIs) available to you. These include -- public AFIs, private AFIs that you own, and AFIs owned by other Amazon -- Web Services accounts for which you have load permissions. -- -- This operation returns paginated results. module Amazonka.EC2.DescribeFpgaImages ( -- * Creating a Request DescribeFpgaImages (..), newDescribeFpgaImages, -- * Request Lenses describeFpgaImages_dryRun, describeFpgaImages_filters, describeFpgaImages_fpgaImageIds, describeFpgaImages_maxResults, describeFpgaImages_nextToken, describeFpgaImages_owners, -- * Destructuring the Response DescribeFpgaImagesResponse (..), newDescribeFpgaImagesResponse, -- * Response Lenses describeFpgaImagesResponse_fpgaImages, describeFpgaImagesResponse_nextToken, describeFpgaImagesResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.EC2.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newDescribeFpgaImages' smart constructor. data DescribeFpgaImages = DescribeFpgaImages' { -- | Checks whether you have the required permissions for the action, without -- actually making the request, and provides an error response. If you have -- the required permissions, the error response is @DryRunOperation@. -- Otherwise, it is @UnauthorizedOperation@. dryRun :: Prelude.Maybe Prelude.Bool, -- | The filters. -- -- - @create-time@ - The creation time of the AFI. -- -- - @fpga-image-id@ - The FPGA image identifier (AFI ID). -- -- - @fpga-image-global-id@ - The global FPGA image identifier (AGFI ID). -- -- - @name@ - The name of the AFI. -- -- - @owner-id@ - The Amazon Web Services account ID of the AFI owner. -- -- - @product-code@ - The product code. -- -- - @shell-version@ - The version of the Amazon Web Services Shell that -- was used to create the bitstream. -- -- - @state@ - The state of the AFI (@pending@ | @failed@ | @available@ | -- @unavailable@). -- -- - @tag@:\ - The key\/value combination of a tag assigned to the -- resource. Use the tag key in the filter name and the tag value as -- the filter value. For example, to find all resources that have a tag -- with the key @Owner@ and the value @TeamA@, specify @tag:Owner@ for -- the filter name and @TeamA@ for the filter value. -- -- - @tag-key@ - The key of a tag assigned to the resource. Use this -- filter to find all resources assigned a tag with a specific key, -- regardless of the tag value. -- -- - @update-time@ - The time of the most recent update. filters :: Prelude.Maybe [Filter], -- | The AFI IDs. fpgaImageIds :: Prelude.Maybe [Prelude.Text], -- | The maximum number of results to return in a single call. maxResults :: Prelude.Maybe Prelude.Natural, -- | The token to retrieve the next page of results. nextToken :: Prelude.Maybe Prelude.Text, -- | Filters the AFI by owner. Specify an Amazon Web Services account ID, -- @self@ (owner is the sender of the request), or an Amazon Web Services -- owner alias (valid values are @amazon@ | @aws-marketplace@). owners :: Prelude.Maybe [Prelude.Text] } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DescribeFpgaImages' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'dryRun', 'describeFpgaImages_dryRun' - Checks whether you have the required permissions for the action, without -- actually making the request, and provides an error response. If you have -- the required permissions, the error response is @DryRunOperation@. -- Otherwise, it is @UnauthorizedOperation@. -- -- 'filters', 'describeFpgaImages_filters' - The filters. -- -- - @create-time@ - The creation time of the AFI. -- -- - @fpga-image-id@ - The FPGA image identifier (AFI ID). -- -- - @fpga-image-global-id@ - The global FPGA image identifier (AGFI ID). -- -- - @name@ - The name of the AFI. -- -- - @owner-id@ - The Amazon Web Services account ID of the AFI owner. -- -- - @product-code@ - The product code. -- -- - @shell-version@ - The version of the Amazon Web Services Shell that -- was used to create the bitstream. -- -- - @state@ - The state of the AFI (@pending@ | @failed@ | @available@ | -- @unavailable@). -- -- - @tag@:\ - The key\/value combination of a tag assigned to the -- resource. Use the tag key in the filter name and the tag value as -- the filter value. For example, to find all resources that have a tag -- with the key @Owner@ and the value @TeamA@, specify @tag:Owner@ for -- the filter name and @TeamA@ for the filter value. -- -- - @tag-key@ - The key of a tag assigned to the resource. Use this -- filter to find all resources assigned a tag with a specific key, -- regardless of the tag value. -- -- - @update-time@ - The time of the most recent update. -- -- 'fpgaImageIds', 'describeFpgaImages_fpgaImageIds' - The AFI IDs. -- -- 'maxResults', 'describeFpgaImages_maxResults' - The maximum number of results to return in a single call. -- -- 'nextToken', 'describeFpgaImages_nextToken' - The token to retrieve the next page of results. -- -- 'owners', 'describeFpgaImages_owners' - Filters the AFI by owner. Specify an Amazon Web Services account ID, -- @self@ (owner is the sender of the request), or an Amazon Web Services -- owner alias (valid values are @amazon@ | @aws-marketplace@). newDescribeFpgaImages :: DescribeFpgaImages newDescribeFpgaImages = DescribeFpgaImages' { dryRun = Prelude.Nothing, filters = Prelude.Nothing, fpgaImageIds = Prelude.Nothing, maxResults = Prelude.Nothing, nextToken = Prelude.Nothing, owners = Prelude.Nothing } -- | Checks whether you have the required permissions for the action, without -- actually making the request, and provides an error response. If you have -- the required permissions, the error response is @DryRunOperation@. -- Otherwise, it is @UnauthorizedOperation@. describeFpgaImages_dryRun :: Lens.Lens' DescribeFpgaImages (Prelude.Maybe Prelude.Bool) describeFpgaImages_dryRun = Lens.lens (\DescribeFpgaImages' {dryRun} -> dryRun) (\s@DescribeFpgaImages' {} a -> s {dryRun = a} :: DescribeFpgaImages) -- | The filters. -- -- - @create-time@ - The creation time of the AFI. -- -- - @fpga-image-id@ - The FPGA image identifier (AFI ID). -- -- - @fpga-image-global-id@ - The global FPGA image identifier (AGFI ID). -- -- - @name@ - The name of the AFI. -- -- - @owner-id@ - The Amazon Web Services account ID of the AFI owner. -- -- - @product-code@ - The product code. -- -- - @shell-version@ - The version of the Amazon Web Services Shell that -- was used to create the bitstream. -- -- - @state@ - The state of the AFI (@pending@ | @failed@ | @available@ | -- @unavailable@). -- -- - @tag@:\ - The key\/value combination of a tag assigned to the -- resource. Use the tag key in the filter name and the tag value as -- the filter value. For example, to find all resources that have a tag -- with the key @Owner@ and the value @TeamA@, specify @tag:Owner@ for -- the filter name and @TeamA@ for the filter value. -- -- - @tag-key@ - The key of a tag assigned to the resource. Use this -- filter to find all resources assigned a tag with a specific key, -- regardless of the tag value. -- -- - @update-time@ - The time of the most recent update. describeFpgaImages_filters :: Lens.Lens' DescribeFpgaImages (Prelude.Maybe [Filter]) describeFpgaImages_filters = Lens.lens (\DescribeFpgaImages' {filters} -> filters) (\s@DescribeFpgaImages' {} a -> s {filters = a} :: DescribeFpgaImages) Prelude.. Lens.mapping Lens.coerced -- | The AFI IDs. describeFpgaImages_fpgaImageIds :: Lens.Lens' DescribeFpgaImages (Prelude.Maybe [Prelude.Text]) describeFpgaImages_fpgaImageIds = Lens.lens (\DescribeFpgaImages' {fpgaImageIds} -> fpgaImageIds) (\s@DescribeFpgaImages' {} a -> s {fpgaImageIds = a} :: DescribeFpgaImages) Prelude.. Lens.mapping Lens.coerced -- | The maximum number of results to return in a single call. describeFpgaImages_maxResults :: Lens.Lens' DescribeFpgaImages (Prelude.Maybe Prelude.Natural) describeFpgaImages_maxResults = Lens.lens (\DescribeFpgaImages' {maxResults} -> maxResults) (\s@DescribeFpgaImages' {} a -> s {maxResults = a} :: DescribeFpgaImages) -- | The token to retrieve the next page of results. describeFpgaImages_nextToken :: Lens.Lens' DescribeFpgaImages (Prelude.Maybe Prelude.Text) describeFpgaImages_nextToken = Lens.lens (\DescribeFpgaImages' {nextToken} -> nextToken) (\s@DescribeFpgaImages' {} a -> s {nextToken = a} :: DescribeFpgaImages) -- | Filters the AFI by owner. Specify an Amazon Web Services account ID, -- @self@ (owner is the sender of the request), or an Amazon Web Services -- owner alias (valid values are @amazon@ | @aws-marketplace@). describeFpgaImages_owners :: Lens.Lens' DescribeFpgaImages (Prelude.Maybe [Prelude.Text]) describeFpgaImages_owners = Lens.lens (\DescribeFpgaImages' {owners} -> owners) (\s@DescribeFpgaImages' {} a -> s {owners = a} :: DescribeFpgaImages) Prelude.. Lens.mapping Lens.coerced instance Core.AWSPager DescribeFpgaImages where page rq rs | Core.stop ( rs Lens.^? describeFpgaImagesResponse_nextToken Prelude.. Lens._Just ) = Prelude.Nothing | Core.stop ( rs Lens.^? describeFpgaImagesResponse_fpgaImages Prelude.. Lens._Just ) = Prelude.Nothing | Prelude.otherwise = Prelude.Just Prelude.$ rq Prelude.& describeFpgaImages_nextToken Lens..~ rs Lens.^? describeFpgaImagesResponse_nextToken Prelude.. Lens._Just instance Core.AWSRequest DescribeFpgaImages where type AWSResponse DescribeFpgaImages = DescribeFpgaImagesResponse request overrides = Request.postQuery (overrides defaultService) response = Response.receiveXML ( \s h x -> DescribeFpgaImagesResponse' Prelude.<$> ( x Data..@? "fpgaImageSet" Core..!@ Prelude.mempty Prelude.>>= Core.may (Data.parseXMLList "item") ) Prelude.<*> (x Data..@? "nextToken") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DescribeFpgaImages where hashWithSalt _salt DescribeFpgaImages' {..} = _salt `Prelude.hashWithSalt` dryRun `Prelude.hashWithSalt` filters `Prelude.hashWithSalt` fpgaImageIds `Prelude.hashWithSalt` maxResults `Prelude.hashWithSalt` nextToken `Prelude.hashWithSalt` owners instance Prelude.NFData DescribeFpgaImages where rnf DescribeFpgaImages' {..} = Prelude.rnf dryRun `Prelude.seq` Prelude.rnf filters `Prelude.seq` Prelude.rnf fpgaImageIds `Prelude.seq` Prelude.rnf maxResults `Prelude.seq` Prelude.rnf nextToken `Prelude.seq` Prelude.rnf owners instance Data.ToHeaders DescribeFpgaImages where toHeaders = Prelude.const Prelude.mempty instance Data.ToPath DescribeFpgaImages where toPath = Prelude.const "/" instance Data.ToQuery DescribeFpgaImages where toQuery DescribeFpgaImages' {..} = Prelude.mconcat [ "Action" Data.=: ("DescribeFpgaImages" :: Prelude.ByteString), "Version" Data.=: ("2016-11-15" :: Prelude.ByteString), "DryRun" Data.=: dryRun, Data.toQuery (Data.toQueryList "Filter" Prelude.<$> filters), Data.toQuery ( Data.toQueryList "FpgaImageId" Prelude.<$> fpgaImageIds ), "MaxResults" Data.=: maxResults, "NextToken" Data.=: nextToken, Data.toQuery (Data.toQueryList "Owner" Prelude.<$> owners) ] -- | /See:/ 'newDescribeFpgaImagesResponse' smart constructor. data DescribeFpgaImagesResponse = DescribeFpgaImagesResponse' { -- | Information about the FPGA images. fpgaImages :: Prelude.Maybe [FpgaImage], -- | The token to use to retrieve the next page of results. This value is -- @null@ when there are no more results to return. nextToken :: Prelude.Maybe Prelude.Text, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DescribeFpgaImagesResponse' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'fpgaImages', 'describeFpgaImagesResponse_fpgaImages' - Information about the FPGA images. -- -- 'nextToken', 'describeFpgaImagesResponse_nextToken' - The token to use to retrieve the next page of results. This value is -- @null@ when there are no more results to return. -- -- 'httpStatus', 'describeFpgaImagesResponse_httpStatus' - The response's http status code. newDescribeFpgaImagesResponse :: -- | 'httpStatus' Prelude.Int -> DescribeFpgaImagesResponse newDescribeFpgaImagesResponse pHttpStatus_ = DescribeFpgaImagesResponse' { fpgaImages = Prelude.Nothing, nextToken = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | Information about the FPGA images. describeFpgaImagesResponse_fpgaImages :: Lens.Lens' DescribeFpgaImagesResponse (Prelude.Maybe [FpgaImage]) describeFpgaImagesResponse_fpgaImages = Lens.lens (\DescribeFpgaImagesResponse' {fpgaImages} -> fpgaImages) (\s@DescribeFpgaImagesResponse' {} a -> s {fpgaImages = a} :: DescribeFpgaImagesResponse) Prelude.. Lens.mapping Lens.coerced -- | The token to use to retrieve the next page of results. This value is -- @null@ when there are no more results to return. describeFpgaImagesResponse_nextToken :: Lens.Lens' DescribeFpgaImagesResponse (Prelude.Maybe Prelude.Text) describeFpgaImagesResponse_nextToken = Lens.lens (\DescribeFpgaImagesResponse' {nextToken} -> nextToken) (\s@DescribeFpgaImagesResponse' {} a -> s {nextToken = a} :: DescribeFpgaImagesResponse) -- | The response's http status code. describeFpgaImagesResponse_httpStatus :: Lens.Lens' DescribeFpgaImagesResponse Prelude.Int describeFpgaImagesResponse_httpStatus = Lens.lens (\DescribeFpgaImagesResponse' {httpStatus} -> httpStatus) (\s@DescribeFpgaImagesResponse' {} a -> s {httpStatus = a} :: DescribeFpgaImagesResponse) instance Prelude.NFData DescribeFpgaImagesResponse where rnf DescribeFpgaImagesResponse' {..} = Prelude.rnf fpgaImages `Prelude.seq` Prelude.rnf nextToken `Prelude.seq` Prelude.rnf httpStatus