{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.OpenSearch.Types.VpcEndpointSummary -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.OpenSearch.Types.VpcEndpointSummary where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.OpenSearch.Types.VpcEndpointStatus import qualified Amazonka.Prelude as Prelude -- | Summary information for an Amazon OpenSearch Service-managed VPC -- endpoint. -- -- /See:/ 'newVpcEndpointSummary' smart constructor. data VpcEndpointSummary = VpcEndpointSummary' { -- | The Amazon Resource Name (ARN) of the domain associated with the -- endpoint. domainArn :: Prelude.Maybe Prelude.Text, -- | The current status of the endpoint. status :: Prelude.Maybe VpcEndpointStatus, -- | The unique identifier of the endpoint. vpcEndpointId :: Prelude.Maybe Prelude.Text, -- | The creator of the endpoint. vpcEndpointOwner :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'VpcEndpointSummary' 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: -- -- 'domainArn', 'vpcEndpointSummary_domainArn' - The Amazon Resource Name (ARN) of the domain associated with the -- endpoint. -- -- 'status', 'vpcEndpointSummary_status' - The current status of the endpoint. -- -- 'vpcEndpointId', 'vpcEndpointSummary_vpcEndpointId' - The unique identifier of the endpoint. -- -- 'vpcEndpointOwner', 'vpcEndpointSummary_vpcEndpointOwner' - The creator of the endpoint. newVpcEndpointSummary :: VpcEndpointSummary newVpcEndpointSummary = VpcEndpointSummary' { domainArn = Prelude.Nothing, status = Prelude.Nothing, vpcEndpointId = Prelude.Nothing, vpcEndpointOwner = Prelude.Nothing } -- | The Amazon Resource Name (ARN) of the domain associated with the -- endpoint. vpcEndpointSummary_domainArn :: Lens.Lens' VpcEndpointSummary (Prelude.Maybe Prelude.Text) vpcEndpointSummary_domainArn = Lens.lens (\VpcEndpointSummary' {domainArn} -> domainArn) (\s@VpcEndpointSummary' {} a -> s {domainArn = a} :: VpcEndpointSummary) -- | The current status of the endpoint. vpcEndpointSummary_status :: Lens.Lens' VpcEndpointSummary (Prelude.Maybe VpcEndpointStatus) vpcEndpointSummary_status = Lens.lens (\VpcEndpointSummary' {status} -> status) (\s@VpcEndpointSummary' {} a -> s {status = a} :: VpcEndpointSummary) -- | The unique identifier of the endpoint. vpcEndpointSummary_vpcEndpointId :: Lens.Lens' VpcEndpointSummary (Prelude.Maybe Prelude.Text) vpcEndpointSummary_vpcEndpointId = Lens.lens (\VpcEndpointSummary' {vpcEndpointId} -> vpcEndpointId) (\s@VpcEndpointSummary' {} a -> s {vpcEndpointId = a} :: VpcEndpointSummary) -- | The creator of the endpoint. vpcEndpointSummary_vpcEndpointOwner :: Lens.Lens' VpcEndpointSummary (Prelude.Maybe Prelude.Text) vpcEndpointSummary_vpcEndpointOwner = Lens.lens (\VpcEndpointSummary' {vpcEndpointOwner} -> vpcEndpointOwner) (\s@VpcEndpointSummary' {} a -> s {vpcEndpointOwner = a} :: VpcEndpointSummary) instance Data.FromJSON VpcEndpointSummary where parseJSON = Data.withObject "VpcEndpointSummary" ( \x -> VpcEndpointSummary' Prelude.<$> (x Data..:? "DomainArn") Prelude.<*> (x Data..:? "Status") Prelude.<*> (x Data..:? "VpcEndpointId") Prelude.<*> (x Data..:? "VpcEndpointOwner") ) instance Prelude.Hashable VpcEndpointSummary where hashWithSalt _salt VpcEndpointSummary' {..} = _salt `Prelude.hashWithSalt` domainArn `Prelude.hashWithSalt` status `Prelude.hashWithSalt` vpcEndpointId `Prelude.hashWithSalt` vpcEndpointOwner instance Prelude.NFData VpcEndpointSummary where rnf VpcEndpointSummary' {..} = Prelude.rnf domainArn `Prelude.seq` Prelude.rnf status `Prelude.seq` Prelude.rnf vpcEndpointId `Prelude.seq` Prelude.rnf vpcEndpointOwner