{-# 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.AccessAnalyzer.Types.VpcConfiguration
-- 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.AccessAnalyzer.Types.VpcConfiguration 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

-- | The proposed virtual private cloud (VPC) configuration for the Amazon S3
-- access point. VPC configuration does not apply to multi-region access
-- points. For more information, see
-- <https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_VpcConfiguration.html VpcConfiguration>.
--
-- /See:/ 'newVpcConfiguration' smart constructor.
data VpcConfiguration = VpcConfiguration'
  { -- | If this field is specified, this access point will only allow
    -- connections from the specified VPC ID.
    VpcConfiguration -> Text
vpcId :: Prelude.Text
  }
  deriving (VpcConfiguration -> VpcConfiguration -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: VpcConfiguration -> VpcConfiguration -> Bool
$c/= :: VpcConfiguration -> VpcConfiguration -> Bool
== :: VpcConfiguration -> VpcConfiguration -> Bool
$c== :: VpcConfiguration -> VpcConfiguration -> Bool
Prelude.Eq, ReadPrec [VpcConfiguration]
ReadPrec VpcConfiguration
Int -> ReadS VpcConfiguration
ReadS [VpcConfiguration]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [VpcConfiguration]
$creadListPrec :: ReadPrec [VpcConfiguration]
readPrec :: ReadPrec VpcConfiguration
$creadPrec :: ReadPrec VpcConfiguration
readList :: ReadS [VpcConfiguration]
$creadList :: ReadS [VpcConfiguration]
readsPrec :: Int -> ReadS VpcConfiguration
$creadsPrec :: Int -> ReadS VpcConfiguration
Prelude.Read, Int -> VpcConfiguration -> ShowS
[VpcConfiguration] -> ShowS
VpcConfiguration -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [VpcConfiguration] -> ShowS
$cshowList :: [VpcConfiguration] -> ShowS
show :: VpcConfiguration -> String
$cshow :: VpcConfiguration -> String
showsPrec :: Int -> VpcConfiguration -> ShowS
$cshowsPrec :: Int -> VpcConfiguration -> ShowS
Prelude.Show, forall x. Rep VpcConfiguration x -> VpcConfiguration
forall x. VpcConfiguration -> Rep VpcConfiguration x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep VpcConfiguration x -> VpcConfiguration
$cfrom :: forall x. VpcConfiguration -> Rep VpcConfiguration x
Prelude.Generic)

-- |
-- Create a value of 'VpcConfiguration' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'vpcId', 'vpcConfiguration_vpcId' - If this field is specified, this access point will only allow
-- connections from the specified VPC ID.
newVpcConfiguration ::
  -- | 'vpcId'
  Prelude.Text ->
  VpcConfiguration
newVpcConfiguration :: Text -> VpcConfiguration
newVpcConfiguration Text
pVpcId_ =
  VpcConfiguration' {$sel:vpcId:VpcConfiguration' :: Text
vpcId = Text
pVpcId_}

-- | If this field is specified, this access point will only allow
-- connections from the specified VPC ID.
vpcConfiguration_vpcId :: Lens.Lens' VpcConfiguration Prelude.Text
vpcConfiguration_vpcId :: Lens' VpcConfiguration Text
vpcConfiguration_vpcId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VpcConfiguration' {Text
vpcId :: Text
$sel:vpcId:VpcConfiguration' :: VpcConfiguration -> Text
vpcId} -> Text
vpcId) (\s :: VpcConfiguration
s@VpcConfiguration' {} Text
a -> VpcConfiguration
s {$sel:vpcId:VpcConfiguration' :: Text
vpcId = Text
a} :: VpcConfiguration)

instance Data.FromJSON VpcConfiguration where
  parseJSON :: Value -> Parser VpcConfiguration
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"VpcConfiguration"
      ( \Object
x ->
          Text -> VpcConfiguration
VpcConfiguration' forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"vpcId")
      )

instance Prelude.Hashable VpcConfiguration where
  hashWithSalt :: Int -> VpcConfiguration -> Int
hashWithSalt Int
_salt VpcConfiguration' {Text
vpcId :: Text
$sel:vpcId:VpcConfiguration' :: VpcConfiguration -> Text
..} =
    Int
_salt forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
vpcId

instance Prelude.NFData VpcConfiguration where
  rnf :: VpcConfiguration -> ()
rnf VpcConfiguration' {Text
vpcId :: Text
$sel:vpcId:VpcConfiguration' :: VpcConfiguration -> Text
..} = forall a. NFData a => a -> ()
Prelude.rnf Text
vpcId

instance Data.ToJSON VpcConfiguration where
  toJSON :: VpcConfiguration -> Value
toJSON VpcConfiguration' {Text
vpcId :: Text
$sel:vpcId:VpcConfiguration' :: VpcConfiguration -> Text
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [forall a. a -> Maybe a
Prelude.Just (Key
"vpcId" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= Text
vpcId)]
      )