{-# 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.Route53RecoveryControlConfig.DescribeCluster -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Display the details about a cluster. The response includes the cluster -- name, endpoints, status, and Amazon Resource Name (ARN). module Amazonka.Route53RecoveryControlConfig.DescribeCluster ( -- * Creating a Request DescribeCluster (..), newDescribeCluster, -- * Request Lenses describeCluster_clusterArn, -- * Destructuring the Response DescribeClusterResponse (..), newDescribeClusterResponse, -- * Response Lenses describeClusterResponse_cluster, describeClusterResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response import Amazonka.Route53RecoveryControlConfig.Types -- | /See:/ 'newDescribeCluster' smart constructor. data DescribeCluster = DescribeCluster' { -- | The Amazon Resource Name (ARN) of the cluster. clusterArn :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DescribeCluster' 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: -- -- 'clusterArn', 'describeCluster_clusterArn' - The Amazon Resource Name (ARN) of the cluster. newDescribeCluster :: -- | 'clusterArn' Prelude.Text -> DescribeCluster newDescribeCluster pClusterArn_ = DescribeCluster' {clusterArn = pClusterArn_} -- | The Amazon Resource Name (ARN) of the cluster. describeCluster_clusterArn :: Lens.Lens' DescribeCluster Prelude.Text describeCluster_clusterArn = Lens.lens (\DescribeCluster' {clusterArn} -> clusterArn) (\s@DescribeCluster' {} a -> s {clusterArn = a} :: DescribeCluster) instance Core.AWSRequest DescribeCluster where type AWSResponse DescribeCluster = DescribeClusterResponse request overrides = Request.get (overrides defaultService) response = Response.receiveJSON ( \s h x -> DescribeClusterResponse' Prelude.<$> (x Data..?> "Cluster") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DescribeCluster where hashWithSalt _salt DescribeCluster' {..} = _salt `Prelude.hashWithSalt` clusterArn instance Prelude.NFData DescribeCluster where rnf DescribeCluster' {..} = Prelude.rnf clusterArn instance Data.ToHeaders DescribeCluster where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToPath DescribeCluster where toPath DescribeCluster' {..} = Prelude.mconcat ["/cluster/", Data.toBS clusterArn] instance Data.ToQuery DescribeCluster where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newDescribeClusterResponse' smart constructor. data DescribeClusterResponse = DescribeClusterResponse' { -- | The cluster for the DescribeCluster request. cluster :: Prelude.Maybe Cluster, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DescribeClusterResponse' 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: -- -- 'cluster', 'describeClusterResponse_cluster' - The cluster for the DescribeCluster request. -- -- 'httpStatus', 'describeClusterResponse_httpStatus' - The response's http status code. newDescribeClusterResponse :: -- | 'httpStatus' Prelude.Int -> DescribeClusterResponse newDescribeClusterResponse pHttpStatus_ = DescribeClusterResponse' { cluster = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The cluster for the DescribeCluster request. describeClusterResponse_cluster :: Lens.Lens' DescribeClusterResponse (Prelude.Maybe Cluster) describeClusterResponse_cluster = Lens.lens (\DescribeClusterResponse' {cluster} -> cluster) (\s@DescribeClusterResponse' {} a -> s {cluster = a} :: DescribeClusterResponse) -- | The response's http status code. describeClusterResponse_httpStatus :: Lens.Lens' DescribeClusterResponse Prelude.Int describeClusterResponse_httpStatus = Lens.lens (\DescribeClusterResponse' {httpStatus} -> httpStatus) (\s@DescribeClusterResponse' {} a -> s {httpStatus = a} :: DescribeClusterResponse) instance Prelude.NFData DescribeClusterResponse where rnf DescribeClusterResponse' {..} = Prelude.rnf cluster `Prelude.seq` Prelude.rnf httpStatus