{-# 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.CodeStarConnections.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.CodeStarConnections.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 VPC configuration provisioned for the host.
--
-- /See:/ 'newVpcConfiguration' smart constructor.
data VpcConfiguration = VpcConfiguration'
  { -- | The value of the Transport Layer Security (TLS) certificate associated
    -- with the infrastructure where your provider type is installed.
    VpcConfiguration -> Maybe Text
tlsCertificate :: Prelude.Maybe Prelude.Text,
    -- | The ID of the Amazon VPC connected to the infrastructure where your
    -- provider type is installed.
    VpcConfiguration -> Text
vpcId :: Prelude.Text,
    -- | The ID of the subnet or subnets associated with the Amazon VPC connected
    -- to the infrastructure where your provider type is installed.
    VpcConfiguration -> NonEmpty Text
subnetIds :: Prelude.NonEmpty Prelude.Text,
    -- | The ID of the security group or security groups associated with the
    -- Amazon VPC connected to the infrastructure where your provider type is
    -- installed.
    VpcConfiguration -> NonEmpty Text
securityGroupIds :: Prelude.NonEmpty 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:
--
-- 'tlsCertificate', 'vpcConfiguration_tlsCertificate' - The value of the Transport Layer Security (TLS) certificate associated
-- with the infrastructure where your provider type is installed.
--
-- 'vpcId', 'vpcConfiguration_vpcId' - The ID of the Amazon VPC connected to the infrastructure where your
-- provider type is installed.
--
-- 'subnetIds', 'vpcConfiguration_subnetIds' - The ID of the subnet or subnets associated with the Amazon VPC connected
-- to the infrastructure where your provider type is installed.
--
-- 'securityGroupIds', 'vpcConfiguration_securityGroupIds' - The ID of the security group or security groups associated with the
-- Amazon VPC connected to the infrastructure where your provider type is
-- installed.
newVpcConfiguration ::
  -- | 'vpcId'
  Prelude.Text ->
  -- | 'subnetIds'
  Prelude.NonEmpty Prelude.Text ->
  -- | 'securityGroupIds'
  Prelude.NonEmpty Prelude.Text ->
  VpcConfiguration
newVpcConfiguration :: Text -> NonEmpty Text -> NonEmpty Text -> VpcConfiguration
newVpcConfiguration
  Text
pVpcId_
  NonEmpty Text
pSubnetIds_
  NonEmpty Text
pSecurityGroupIds_ =
    VpcConfiguration'
      { $sel:tlsCertificate:VpcConfiguration' :: Maybe Text
tlsCertificate = forall a. Maybe a
Prelude.Nothing,
        $sel:vpcId:VpcConfiguration' :: Text
vpcId = Text
pVpcId_,
        $sel:subnetIds:VpcConfiguration' :: NonEmpty Text
subnetIds = forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced forall t b. AReview t b -> b -> t
Lens.# NonEmpty Text
pSubnetIds_,
        $sel:securityGroupIds:VpcConfiguration' :: NonEmpty Text
securityGroupIds =
          forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced forall t b. AReview t b -> b -> t
Lens.# NonEmpty Text
pSecurityGroupIds_
      }

-- | The value of the Transport Layer Security (TLS) certificate associated
-- with the infrastructure where your provider type is installed.
vpcConfiguration_tlsCertificate :: Lens.Lens' VpcConfiguration (Prelude.Maybe Prelude.Text)
vpcConfiguration_tlsCertificate :: Lens' VpcConfiguration (Maybe Text)
vpcConfiguration_tlsCertificate = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VpcConfiguration' {Maybe Text
tlsCertificate :: Maybe Text
$sel:tlsCertificate:VpcConfiguration' :: VpcConfiguration -> Maybe Text
tlsCertificate} -> Maybe Text
tlsCertificate) (\s :: VpcConfiguration
s@VpcConfiguration' {} Maybe Text
a -> VpcConfiguration
s {$sel:tlsCertificate:VpcConfiguration' :: Maybe Text
tlsCertificate = Maybe Text
a} :: VpcConfiguration)

-- | The ID of the Amazon VPC connected to the infrastructure where your
-- provider type is installed.
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)

-- | The ID of the subnet or subnets associated with the Amazon VPC connected
-- to the infrastructure where your provider type is installed.
vpcConfiguration_subnetIds :: Lens.Lens' VpcConfiguration (Prelude.NonEmpty Prelude.Text)
vpcConfiguration_subnetIds :: Lens' VpcConfiguration (NonEmpty Text)
vpcConfiguration_subnetIds = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VpcConfiguration' {NonEmpty Text
subnetIds :: NonEmpty Text
$sel:subnetIds:VpcConfiguration' :: VpcConfiguration -> NonEmpty Text
subnetIds} -> NonEmpty Text
subnetIds) (\s :: VpcConfiguration
s@VpcConfiguration' {} NonEmpty Text
a -> VpcConfiguration
s {$sel:subnetIds:VpcConfiguration' :: NonEmpty Text
subnetIds = NonEmpty Text
a} :: VpcConfiguration) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | The ID of the security group or security groups associated with the
-- Amazon VPC connected to the infrastructure where your provider type is
-- installed.
vpcConfiguration_securityGroupIds :: Lens.Lens' VpcConfiguration (Prelude.NonEmpty Prelude.Text)
vpcConfiguration_securityGroupIds :: Lens' VpcConfiguration (NonEmpty Text)
vpcConfiguration_securityGroupIds = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VpcConfiguration' {NonEmpty Text
securityGroupIds :: NonEmpty Text
$sel:securityGroupIds:VpcConfiguration' :: VpcConfiguration -> NonEmpty Text
securityGroupIds} -> NonEmpty Text
securityGroupIds) (\s :: VpcConfiguration
s@VpcConfiguration' {} NonEmpty Text
a -> VpcConfiguration
s {$sel:securityGroupIds:VpcConfiguration' :: NonEmpty Text
securityGroupIds = NonEmpty Text
a} :: VpcConfiguration) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

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 ->
          Maybe Text
-> Text -> NonEmpty Text -> NonEmpty 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 (Maybe a)
Data..:? Key
"TlsCertificate")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"VpcId")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"SubnetIds")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"SecurityGroupIds")
      )

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

instance Prelude.NFData VpcConfiguration where
  rnf :: VpcConfiguration -> ()
rnf VpcConfiguration' {Maybe Text
NonEmpty Text
Text
securityGroupIds :: NonEmpty Text
subnetIds :: NonEmpty Text
vpcId :: Text
tlsCertificate :: Maybe Text
$sel:securityGroupIds:VpcConfiguration' :: VpcConfiguration -> NonEmpty Text
$sel:subnetIds:VpcConfiguration' :: VpcConfiguration -> NonEmpty Text
$sel:vpcId:VpcConfiguration' :: VpcConfiguration -> Text
$sel:tlsCertificate:VpcConfiguration' :: VpcConfiguration -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
tlsCertificate
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
vpcId
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf NonEmpty Text
subnetIds
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf NonEmpty Text
securityGroupIds

instance Data.ToJSON VpcConfiguration where
  toJSON :: VpcConfiguration -> Value
toJSON VpcConfiguration' {Maybe Text
NonEmpty Text
Text
securityGroupIds :: NonEmpty Text
subnetIds :: NonEmpty Text
vpcId :: Text
tlsCertificate :: Maybe Text
$sel:securityGroupIds:VpcConfiguration' :: VpcConfiguration -> NonEmpty Text
$sel:subnetIds:VpcConfiguration' :: VpcConfiguration -> NonEmpty Text
$sel:vpcId:VpcConfiguration' :: VpcConfiguration -> Text
$sel:tlsCertificate:VpcConfiguration' :: VpcConfiguration -> Maybe Text
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Key
"TlsCertificate" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=)
              forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
tlsCertificate,
            forall a. a -> Maybe a
Prelude.Just (Key
"VpcId" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= Text
vpcId),
            forall a. a -> Maybe a
Prelude.Just (Key
"SubnetIds" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= NonEmpty Text
subnetIds),
            forall a. a -> Maybe a
Prelude.Just
              (Key
"SecurityGroupIds" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= NonEmpty Text
securityGroupIds)
          ]
      )