{-# 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.EKS.Types.LaunchTemplateSpecification
-- 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.EKS.Types.LaunchTemplateSpecification 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

-- | An object representing a node group launch template specification. The
-- launch template can\'t include
-- <https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateNetworkInterface.html SubnetId>
-- ,
-- <https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html IamInstanceProfile>
-- ,
-- <https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RequestSpotInstances.html RequestSpotInstances>
-- ,
-- <https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_HibernationOptionsRequest.html HibernationOptions>
-- , or
-- <https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_TerminateInstances.html TerminateInstances>
-- , or the node group deployment or update will fail. For more information
-- about launch templates, see
-- <https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateLaunchTemplate.html CreateLaunchTemplate>
-- in the Amazon EC2 API Reference. For more information about using launch
-- templates with Amazon EKS, see
-- <https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html Launch template support>
-- in the /Amazon EKS User Guide/.
--
-- You must specify either the launch template ID or the launch template
-- name in the request, but not both.
--
-- /See:/ 'newLaunchTemplateSpecification' smart constructor.
data LaunchTemplateSpecification = LaunchTemplateSpecification'
  { -- | The ID of the launch template.
    --
    -- You must specify either the launch template ID or the launch template
    -- name in the request, but not both.
    LaunchTemplateSpecification -> Maybe Text
id :: Prelude.Maybe Prelude.Text,
    -- | The name of the launch template.
    --
    -- You must specify either the launch template name or the launch template
    -- ID in the request, but not both.
    LaunchTemplateSpecification -> Maybe Text
name :: Prelude.Maybe Prelude.Text,
    -- | The version number of the launch template to use. If no version is
    -- specified, then the template\'s default version is used.
    LaunchTemplateSpecification -> Maybe Text
version :: Prelude.Maybe Prelude.Text
  }
  deriving (LaunchTemplateSpecification -> LaunchTemplateSpecification -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: LaunchTemplateSpecification -> LaunchTemplateSpecification -> Bool
$c/= :: LaunchTemplateSpecification -> LaunchTemplateSpecification -> Bool
== :: LaunchTemplateSpecification -> LaunchTemplateSpecification -> Bool
$c== :: LaunchTemplateSpecification -> LaunchTemplateSpecification -> Bool
Prelude.Eq, ReadPrec [LaunchTemplateSpecification]
ReadPrec LaunchTemplateSpecification
Int -> ReadS LaunchTemplateSpecification
ReadS [LaunchTemplateSpecification]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [LaunchTemplateSpecification]
$creadListPrec :: ReadPrec [LaunchTemplateSpecification]
readPrec :: ReadPrec LaunchTemplateSpecification
$creadPrec :: ReadPrec LaunchTemplateSpecification
readList :: ReadS [LaunchTemplateSpecification]
$creadList :: ReadS [LaunchTemplateSpecification]
readsPrec :: Int -> ReadS LaunchTemplateSpecification
$creadsPrec :: Int -> ReadS LaunchTemplateSpecification
Prelude.Read, Int -> LaunchTemplateSpecification -> ShowS
[LaunchTemplateSpecification] -> ShowS
LaunchTemplateSpecification -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [LaunchTemplateSpecification] -> ShowS
$cshowList :: [LaunchTemplateSpecification] -> ShowS
show :: LaunchTemplateSpecification -> String
$cshow :: LaunchTemplateSpecification -> String
showsPrec :: Int -> LaunchTemplateSpecification -> ShowS
$cshowsPrec :: Int -> LaunchTemplateSpecification -> ShowS
Prelude.Show, forall x.
Rep LaunchTemplateSpecification x -> LaunchTemplateSpecification
forall x.
LaunchTemplateSpecification -> Rep LaunchTemplateSpecification x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep LaunchTemplateSpecification x -> LaunchTemplateSpecification
$cfrom :: forall x.
LaunchTemplateSpecification -> Rep LaunchTemplateSpecification x
Prelude.Generic)

-- |
-- Create a value of 'LaunchTemplateSpecification' 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:
--
-- 'id', 'launchTemplateSpecification_id' - The ID of the launch template.
--
-- You must specify either the launch template ID or the launch template
-- name in the request, but not both.
--
-- 'name', 'launchTemplateSpecification_name' - The name of the launch template.
--
-- You must specify either the launch template name or the launch template
-- ID in the request, but not both.
--
-- 'version', 'launchTemplateSpecification_version' - The version number of the launch template to use. If no version is
-- specified, then the template\'s default version is used.
newLaunchTemplateSpecification ::
  LaunchTemplateSpecification
newLaunchTemplateSpecification :: LaunchTemplateSpecification
newLaunchTemplateSpecification =
  LaunchTemplateSpecification'
    { $sel:id:LaunchTemplateSpecification' :: Maybe Text
id = forall a. Maybe a
Prelude.Nothing,
      $sel:name:LaunchTemplateSpecification' :: Maybe Text
name = forall a. Maybe a
Prelude.Nothing,
      $sel:version:LaunchTemplateSpecification' :: Maybe Text
version = forall a. Maybe a
Prelude.Nothing
    }

-- | The ID of the launch template.
--
-- You must specify either the launch template ID or the launch template
-- name in the request, but not both.
launchTemplateSpecification_id :: Lens.Lens' LaunchTemplateSpecification (Prelude.Maybe Prelude.Text)
launchTemplateSpecification_id :: Lens' LaunchTemplateSpecification (Maybe Text)
launchTemplateSpecification_id = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LaunchTemplateSpecification' {Maybe Text
id :: Maybe Text
$sel:id:LaunchTemplateSpecification' :: LaunchTemplateSpecification -> Maybe Text
id} -> Maybe Text
id) (\s :: LaunchTemplateSpecification
s@LaunchTemplateSpecification' {} Maybe Text
a -> LaunchTemplateSpecification
s {$sel:id:LaunchTemplateSpecification' :: Maybe Text
id = Maybe Text
a} :: LaunchTemplateSpecification)

-- | The name of the launch template.
--
-- You must specify either the launch template name or the launch template
-- ID in the request, but not both.
launchTemplateSpecification_name :: Lens.Lens' LaunchTemplateSpecification (Prelude.Maybe Prelude.Text)
launchTemplateSpecification_name :: Lens' LaunchTemplateSpecification (Maybe Text)
launchTemplateSpecification_name = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LaunchTemplateSpecification' {Maybe Text
name :: Maybe Text
$sel:name:LaunchTemplateSpecification' :: LaunchTemplateSpecification -> Maybe Text
name} -> Maybe Text
name) (\s :: LaunchTemplateSpecification
s@LaunchTemplateSpecification' {} Maybe Text
a -> LaunchTemplateSpecification
s {$sel:name:LaunchTemplateSpecification' :: Maybe Text
name = Maybe Text
a} :: LaunchTemplateSpecification)

-- | The version number of the launch template to use. If no version is
-- specified, then the template\'s default version is used.
launchTemplateSpecification_version :: Lens.Lens' LaunchTemplateSpecification (Prelude.Maybe Prelude.Text)
launchTemplateSpecification_version :: Lens' LaunchTemplateSpecification (Maybe Text)
launchTemplateSpecification_version = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LaunchTemplateSpecification' {Maybe Text
version :: Maybe Text
$sel:version:LaunchTemplateSpecification' :: LaunchTemplateSpecification -> Maybe Text
version} -> Maybe Text
version) (\s :: LaunchTemplateSpecification
s@LaunchTemplateSpecification' {} Maybe Text
a -> LaunchTemplateSpecification
s {$sel:version:LaunchTemplateSpecification' :: Maybe Text
version = Maybe Text
a} :: LaunchTemplateSpecification)

instance Data.FromJSON LaunchTemplateSpecification where
  parseJSON :: Value -> Parser LaunchTemplateSpecification
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"LaunchTemplateSpecification"
      ( \Object
x ->
          Maybe Text
-> Maybe Text -> Maybe Text -> LaunchTemplateSpecification
LaunchTemplateSpecification'
            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
"id")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"name")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"version")
      )

instance Prelude.Hashable LaunchTemplateSpecification where
  hashWithSalt :: Int -> LaunchTemplateSpecification -> Int
hashWithSalt Int
_salt LaunchTemplateSpecification' {Maybe Text
version :: Maybe Text
name :: Maybe Text
id :: Maybe Text
$sel:version:LaunchTemplateSpecification' :: LaunchTemplateSpecification -> Maybe Text
$sel:name:LaunchTemplateSpecification' :: LaunchTemplateSpecification -> Maybe Text
$sel:id:LaunchTemplateSpecification' :: LaunchTemplateSpecification -> Maybe Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
id
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
name
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
version

instance Prelude.NFData LaunchTemplateSpecification where
  rnf :: LaunchTemplateSpecification -> ()
rnf LaunchTemplateSpecification' {Maybe Text
version :: Maybe Text
name :: Maybe Text
id :: Maybe Text
$sel:version:LaunchTemplateSpecification' :: LaunchTemplateSpecification -> Maybe Text
$sel:name:LaunchTemplateSpecification' :: LaunchTemplateSpecification -> Maybe Text
$sel:id:LaunchTemplateSpecification' :: LaunchTemplateSpecification -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
id
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
name
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
version

instance Data.ToJSON LaunchTemplateSpecification where
  toJSON :: LaunchTemplateSpecification -> Value
toJSON LaunchTemplateSpecification' {Maybe Text
version :: Maybe Text
name :: Maybe Text
id :: Maybe Text
$sel:version:LaunchTemplateSpecification' :: LaunchTemplateSpecification -> Maybe Text
$sel:name:LaunchTemplateSpecification' :: LaunchTemplateSpecification -> Maybe Text
$sel:id:LaunchTemplateSpecification' :: LaunchTemplateSpecification -> Maybe Text
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Key
"id" 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
id,
            (Key
"name" 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
name,
            (Key
"version" 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
version
          ]
      )