{-# 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.LookoutMetrics.Types.VpcConfiguration
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.LookoutMetrics.Types.VpcConfiguration where

import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude

-- | Contains configuration information about the Amazon Virtual Private
-- Cloud (VPC).
--
-- /See:/ 'newVpcConfiguration' smart constructor.
data VpcConfiguration = VpcConfiguration'
  { -- | An array of strings containing the Amazon VPC subnet IDs (e.g.,
    -- @subnet-0bb1c79de3EXAMPLE@.
    VpcConfiguration -> [Text]
subnetIdList :: [Prelude.Text],
    -- | An array of strings containing the list of security groups.
    VpcConfiguration -> [Text]
securityGroupIdList :: [Prelude.Text]
  }
  deriving (VpcConfiguration -> VpcConfiguration -> Bool
(VpcConfiguration -> VpcConfiguration -> Bool)
-> (VpcConfiguration -> VpcConfiguration -> Bool)
-> Eq VpcConfiguration
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]
(Int -> ReadS VpcConfiguration)
-> ReadS [VpcConfiguration]
-> ReadPrec VpcConfiguration
-> ReadPrec [VpcConfiguration]
-> Read 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
(Int -> VpcConfiguration -> ShowS)
-> (VpcConfiguration -> String)
-> ([VpcConfiguration] -> ShowS)
-> Show VpcConfiguration
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. VpcConfiguration -> Rep VpcConfiguration x)
-> (forall x. Rep VpcConfiguration x -> VpcConfiguration)
-> Generic VpcConfiguration
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:
--
-- 'subnetIdList', 'vpcConfiguration_subnetIdList' - An array of strings containing the Amazon VPC subnet IDs (e.g.,
-- @subnet-0bb1c79de3EXAMPLE@.
--
-- 'securityGroupIdList', 'vpcConfiguration_securityGroupIdList' - An array of strings containing the list of security groups.
newVpcConfiguration ::
  VpcConfiguration
newVpcConfiguration :: VpcConfiguration
newVpcConfiguration =
  VpcConfiguration' :: [Text] -> [Text] -> VpcConfiguration
VpcConfiguration'
    { $sel:subnetIdList:VpcConfiguration' :: [Text]
subnetIdList = [Text]
forall a. Monoid a => a
Prelude.mempty,
      $sel:securityGroupIdList:VpcConfiguration' :: [Text]
securityGroupIdList = [Text]
forall a. Monoid a => a
Prelude.mempty
    }

-- | An array of strings containing the Amazon VPC subnet IDs (e.g.,
-- @subnet-0bb1c79de3EXAMPLE@.
vpcConfiguration_subnetIdList :: Lens.Lens' VpcConfiguration [Prelude.Text]
vpcConfiguration_subnetIdList :: ([Text] -> f [Text]) -> VpcConfiguration -> f VpcConfiguration
vpcConfiguration_subnetIdList = (VpcConfiguration -> [Text])
-> (VpcConfiguration -> [Text] -> VpcConfiguration)
-> Lens VpcConfiguration VpcConfiguration [Text] [Text]
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VpcConfiguration' {[Text]
subnetIdList :: [Text]
$sel:subnetIdList:VpcConfiguration' :: VpcConfiguration -> [Text]
subnetIdList} -> [Text]
subnetIdList) (\s :: VpcConfiguration
s@VpcConfiguration' {} [Text]
a -> VpcConfiguration
s {$sel:subnetIdList:VpcConfiguration' :: [Text]
subnetIdList = [Text]
a} :: VpcConfiguration) (([Text] -> f [Text]) -> VpcConfiguration -> f VpcConfiguration)
-> (([Text] -> f [Text]) -> [Text] -> f [Text])
-> ([Text] -> f [Text])
-> VpcConfiguration
-> f VpcConfiguration
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. ([Text] -> f [Text]) -> [Text] -> f [Text]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | An array of strings containing the list of security groups.
vpcConfiguration_securityGroupIdList :: Lens.Lens' VpcConfiguration [Prelude.Text]
vpcConfiguration_securityGroupIdList :: ([Text] -> f [Text]) -> VpcConfiguration -> f VpcConfiguration
vpcConfiguration_securityGroupIdList = (VpcConfiguration -> [Text])
-> (VpcConfiguration -> [Text] -> VpcConfiguration)
-> Lens VpcConfiguration VpcConfiguration [Text] [Text]
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VpcConfiguration' {[Text]
securityGroupIdList :: [Text]
$sel:securityGroupIdList:VpcConfiguration' :: VpcConfiguration -> [Text]
securityGroupIdList} -> [Text]
securityGroupIdList) (\s :: VpcConfiguration
s@VpcConfiguration' {} [Text]
a -> VpcConfiguration
s {$sel:securityGroupIdList:VpcConfiguration' :: [Text]
securityGroupIdList = [Text]
a} :: VpcConfiguration) (([Text] -> f [Text]) -> VpcConfiguration -> f VpcConfiguration)
-> (([Text] -> f [Text]) -> [Text] -> f [Text])
-> ([Text] -> f [Text])
-> VpcConfiguration
-> f VpcConfiguration
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. ([Text] -> f [Text]) -> [Text] -> f [Text]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

instance Core.FromJSON VpcConfiguration where
  parseJSON :: Value -> Parser VpcConfiguration
parseJSON =
    String
-> (Object -> Parser VpcConfiguration)
-> Value
-> Parser VpcConfiguration
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Core.withObject
      String
"VpcConfiguration"
      ( \Object
x ->
          [Text] -> [Text] -> VpcConfiguration
VpcConfiguration'
            ([Text] -> [Text] -> VpcConfiguration)
-> Parser [Text] -> Parser ([Text] -> VpcConfiguration)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Parser (Maybe [Text])
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"SubnetIdList" Parser (Maybe [Text]) -> [Text] -> Parser [Text]
forall a. Parser (Maybe a) -> a -> Parser a
Core..!= [Text]
forall a. Monoid a => a
Prelude.mempty)
            Parser ([Text] -> VpcConfiguration)
-> Parser [Text] -> Parser VpcConfiguration
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> ( Object
x Object -> Text -> Parser (Maybe [Text])
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"SecurityGroupIdList"
                            Parser (Maybe [Text]) -> [Text] -> Parser [Text]
forall a. Parser (Maybe a) -> a -> Parser a
Core..!= [Text]
forall a. Monoid a => a
Prelude.mempty
                        )
      )

instance Prelude.Hashable VpcConfiguration

instance Prelude.NFData VpcConfiguration

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