{-# 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.CloudWatchEvents.Types.NetworkConfiguration
-- 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.CloudWatchEvents.Types.NetworkConfiguration where

import Amazonka.CloudWatchEvents.Types.AwsVpcConfiguration
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

-- | This structure specifies the network configuration for an ECS task.
--
-- /See:/ 'newNetworkConfiguration' smart constructor.
data NetworkConfiguration = NetworkConfiguration'
  { -- | Use this structure to specify the VPC subnets and security groups for
    -- the task, and whether a public IP address is to be used. This structure
    -- is relevant only for ECS tasks that use the @awsvpc@ network mode.
    NetworkConfiguration -> Maybe AwsVpcConfiguration
awsvpcConfiguration :: Prelude.Maybe AwsVpcConfiguration
  }
  deriving (NetworkConfiguration -> NetworkConfiguration -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: NetworkConfiguration -> NetworkConfiguration -> Bool
$c/= :: NetworkConfiguration -> NetworkConfiguration -> Bool
== :: NetworkConfiguration -> NetworkConfiguration -> Bool
$c== :: NetworkConfiguration -> NetworkConfiguration -> Bool
Prelude.Eq, ReadPrec [NetworkConfiguration]
ReadPrec NetworkConfiguration
Int -> ReadS NetworkConfiguration
ReadS [NetworkConfiguration]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [NetworkConfiguration]
$creadListPrec :: ReadPrec [NetworkConfiguration]
readPrec :: ReadPrec NetworkConfiguration
$creadPrec :: ReadPrec NetworkConfiguration
readList :: ReadS [NetworkConfiguration]
$creadList :: ReadS [NetworkConfiguration]
readsPrec :: Int -> ReadS NetworkConfiguration
$creadsPrec :: Int -> ReadS NetworkConfiguration
Prelude.Read, Int -> NetworkConfiguration -> ShowS
[NetworkConfiguration] -> ShowS
NetworkConfiguration -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [NetworkConfiguration] -> ShowS
$cshowList :: [NetworkConfiguration] -> ShowS
show :: NetworkConfiguration -> String
$cshow :: NetworkConfiguration -> String
showsPrec :: Int -> NetworkConfiguration -> ShowS
$cshowsPrec :: Int -> NetworkConfiguration -> ShowS
Prelude.Show, forall x. Rep NetworkConfiguration x -> NetworkConfiguration
forall x. NetworkConfiguration -> Rep NetworkConfiguration x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep NetworkConfiguration x -> NetworkConfiguration
$cfrom :: forall x. NetworkConfiguration -> Rep NetworkConfiguration x
Prelude.Generic)

-- |
-- Create a value of 'NetworkConfiguration' 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:
--
-- 'awsvpcConfiguration', 'networkConfiguration_awsvpcConfiguration' - Use this structure to specify the VPC subnets and security groups for
-- the task, and whether a public IP address is to be used. This structure
-- is relevant only for ECS tasks that use the @awsvpc@ network mode.
newNetworkConfiguration ::
  NetworkConfiguration
newNetworkConfiguration :: NetworkConfiguration
newNetworkConfiguration =
  NetworkConfiguration'
    { $sel:awsvpcConfiguration:NetworkConfiguration' :: Maybe AwsVpcConfiguration
awsvpcConfiguration =
        forall a. Maybe a
Prelude.Nothing
    }

-- | Use this structure to specify the VPC subnets and security groups for
-- the task, and whether a public IP address is to be used. This structure
-- is relevant only for ECS tasks that use the @awsvpc@ network mode.
networkConfiguration_awsvpcConfiguration :: Lens.Lens' NetworkConfiguration (Prelude.Maybe AwsVpcConfiguration)
networkConfiguration_awsvpcConfiguration :: Lens' NetworkConfiguration (Maybe AwsVpcConfiguration)
networkConfiguration_awsvpcConfiguration = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\NetworkConfiguration' {Maybe AwsVpcConfiguration
awsvpcConfiguration :: Maybe AwsVpcConfiguration
$sel:awsvpcConfiguration:NetworkConfiguration' :: NetworkConfiguration -> Maybe AwsVpcConfiguration
awsvpcConfiguration} -> Maybe AwsVpcConfiguration
awsvpcConfiguration) (\s :: NetworkConfiguration
s@NetworkConfiguration' {} Maybe AwsVpcConfiguration
a -> NetworkConfiguration
s {$sel:awsvpcConfiguration:NetworkConfiguration' :: Maybe AwsVpcConfiguration
awsvpcConfiguration = Maybe AwsVpcConfiguration
a} :: NetworkConfiguration)

instance Data.FromJSON NetworkConfiguration where
  parseJSON :: Value -> Parser NetworkConfiguration
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"NetworkConfiguration"
      ( \Object
x ->
          Maybe AwsVpcConfiguration -> NetworkConfiguration
NetworkConfiguration'
            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
"awsvpcConfiguration")
      )

instance Prelude.Hashable NetworkConfiguration where
  hashWithSalt :: Int -> NetworkConfiguration -> Int
hashWithSalt Int
_salt NetworkConfiguration' {Maybe AwsVpcConfiguration
awsvpcConfiguration :: Maybe AwsVpcConfiguration
$sel:awsvpcConfiguration:NetworkConfiguration' :: NetworkConfiguration -> Maybe AwsVpcConfiguration
..} =
    Int
_salt forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe AwsVpcConfiguration
awsvpcConfiguration

instance Prelude.NFData NetworkConfiguration where
  rnf :: NetworkConfiguration -> ()
rnf NetworkConfiguration' {Maybe AwsVpcConfiguration
awsvpcConfiguration :: Maybe AwsVpcConfiguration
$sel:awsvpcConfiguration:NetworkConfiguration' :: NetworkConfiguration -> Maybe AwsVpcConfiguration
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe AwsVpcConfiguration
awsvpcConfiguration

instance Data.ToJSON NetworkConfiguration where
  toJSON :: NetworkConfiguration -> Value
toJSON NetworkConfiguration' {Maybe AwsVpcConfiguration
awsvpcConfiguration :: Maybe AwsVpcConfiguration
$sel:awsvpcConfiguration:NetworkConfiguration' :: NetworkConfiguration -> Maybe AwsVpcConfiguration
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Key
"awsvpcConfiguration" 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 AwsVpcConfiguration
awsvpcConfiguration
          ]
      )