{-# 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.ImageBuilder.GetImagePipeline -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Gets an image pipeline. module Amazonka.ImageBuilder.GetImagePipeline ( -- * Creating a Request GetImagePipeline (..), newGetImagePipeline, -- * Request Lenses getImagePipeline_imagePipelineArn, -- * Destructuring the Response GetImagePipelineResponse (..), newGetImagePipelineResponse, -- * Response Lenses getImagePipelineResponse_imagePipeline, getImagePipelineResponse_requestId, getImagePipelineResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.ImageBuilder.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newGetImagePipeline' smart constructor. data GetImagePipeline = GetImagePipeline' { -- | The Amazon Resource Name (ARN) of the image pipeline that you want to -- retrieve. imagePipelineArn :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetImagePipeline' 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: -- -- 'imagePipelineArn', 'getImagePipeline_imagePipelineArn' - The Amazon Resource Name (ARN) of the image pipeline that you want to -- retrieve. newGetImagePipeline :: -- | 'imagePipelineArn' Prelude.Text -> GetImagePipeline newGetImagePipeline pImagePipelineArn_ = GetImagePipeline' { imagePipelineArn = pImagePipelineArn_ } -- | The Amazon Resource Name (ARN) of the image pipeline that you want to -- retrieve. getImagePipeline_imagePipelineArn :: Lens.Lens' GetImagePipeline Prelude.Text getImagePipeline_imagePipelineArn = Lens.lens (\GetImagePipeline' {imagePipelineArn} -> imagePipelineArn) (\s@GetImagePipeline' {} a -> s {imagePipelineArn = a} :: GetImagePipeline) instance Core.AWSRequest GetImagePipeline where type AWSResponse GetImagePipeline = GetImagePipelineResponse request overrides = Request.get (overrides defaultService) response = Response.receiveJSON ( \s h x -> GetImagePipelineResponse' Prelude.<$> (x Data..?> "imagePipeline") Prelude.<*> (x Data..?> "requestId") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable GetImagePipeline where hashWithSalt _salt GetImagePipeline' {..} = _salt `Prelude.hashWithSalt` imagePipelineArn instance Prelude.NFData GetImagePipeline where rnf GetImagePipeline' {..} = Prelude.rnf imagePipelineArn instance Data.ToHeaders GetImagePipeline where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToPath GetImagePipeline where toPath = Prelude.const "/GetImagePipeline" instance Data.ToQuery GetImagePipeline where toQuery GetImagePipeline' {..} = Prelude.mconcat ["imagePipelineArn" Data.=: imagePipelineArn] -- | /See:/ 'newGetImagePipelineResponse' smart constructor. data GetImagePipelineResponse = GetImagePipelineResponse' { -- | The image pipeline object. imagePipeline :: Prelude.Maybe ImagePipeline, -- | The request ID that uniquely identifies this request. requestId :: 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 'GetImagePipelineResponse' 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: -- -- 'imagePipeline', 'getImagePipelineResponse_imagePipeline' - The image pipeline object. -- -- 'requestId', 'getImagePipelineResponse_requestId' - The request ID that uniquely identifies this request. -- -- 'httpStatus', 'getImagePipelineResponse_httpStatus' - The response's http status code. newGetImagePipelineResponse :: -- | 'httpStatus' Prelude.Int -> GetImagePipelineResponse newGetImagePipelineResponse pHttpStatus_ = GetImagePipelineResponse' { imagePipeline = Prelude.Nothing, requestId = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The image pipeline object. getImagePipelineResponse_imagePipeline :: Lens.Lens' GetImagePipelineResponse (Prelude.Maybe ImagePipeline) getImagePipelineResponse_imagePipeline = Lens.lens (\GetImagePipelineResponse' {imagePipeline} -> imagePipeline) (\s@GetImagePipelineResponse' {} a -> s {imagePipeline = a} :: GetImagePipelineResponse) -- | The request ID that uniquely identifies this request. getImagePipelineResponse_requestId :: Lens.Lens' GetImagePipelineResponse (Prelude.Maybe Prelude.Text) getImagePipelineResponse_requestId = Lens.lens (\GetImagePipelineResponse' {requestId} -> requestId) (\s@GetImagePipelineResponse' {} a -> s {requestId = a} :: GetImagePipelineResponse) -- | The response's http status code. getImagePipelineResponse_httpStatus :: Lens.Lens' GetImagePipelineResponse Prelude.Int getImagePipelineResponse_httpStatus = Lens.lens (\GetImagePipelineResponse' {httpStatus} -> httpStatus) (\s@GetImagePipelineResponse' {} a -> s {httpStatus = a} :: GetImagePipelineResponse) instance Prelude.NFData GetImagePipelineResponse where rnf GetImagePipelineResponse' {..} = Prelude.rnf imagePipeline `Prelude.seq` Prelude.rnf requestId `Prelude.seq` Prelude.rnf httpStatus