{-# 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.Kafka.Types.VpcConfig -- 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.Kafka.Types.VpcConfig 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 configuration of the Amazon VPCs for the cluster. -- -- /See:/ 'newVpcConfig' smart constructor. data VpcConfig = VpcConfig' { -- | The IDs of the security groups associated with the cluster. securityGroupIds :: Prelude.Maybe [Prelude.Text], -- | The IDs of the subnets associated with the cluster. subnetIds :: [Prelude.Text] } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'VpcConfig' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'securityGroupIds', 'vpcConfig_securityGroupIds' - The IDs of the security groups associated with the cluster. -- -- 'subnetIds', 'vpcConfig_subnetIds' - The IDs of the subnets associated with the cluster. newVpcConfig :: VpcConfig newVpcConfig = VpcConfig' { securityGroupIds = Prelude.Nothing, subnetIds = Prelude.mempty } -- | The IDs of the security groups associated with the cluster. vpcConfig_securityGroupIds :: Lens.Lens' VpcConfig (Prelude.Maybe [Prelude.Text]) vpcConfig_securityGroupIds = Lens.lens (\VpcConfig' {securityGroupIds} -> securityGroupIds) (\s@VpcConfig' {} a -> s {securityGroupIds = a} :: VpcConfig) Prelude.. Lens.mapping Lens.coerced -- | The IDs of the subnets associated with the cluster. vpcConfig_subnetIds :: Lens.Lens' VpcConfig [Prelude.Text] vpcConfig_subnetIds = Lens.lens (\VpcConfig' {subnetIds} -> subnetIds) (\s@VpcConfig' {} a -> s {subnetIds = a} :: VpcConfig) Prelude.. Lens.coerced instance Data.FromJSON VpcConfig where parseJSON = Data.withObject "VpcConfig" ( \x -> VpcConfig' Prelude.<$> ( x Data..:? "securityGroupIds" Data..!= Prelude.mempty ) Prelude.<*> (x Data..:? "subnetIds" Data..!= Prelude.mempty) ) instance Prelude.Hashable VpcConfig where hashWithSalt _salt VpcConfig' {..} = _salt `Prelude.hashWithSalt` securityGroupIds `Prelude.hashWithSalt` subnetIds instance Prelude.NFData VpcConfig where rnf VpcConfig' {..} = Prelude.rnf securityGroupIds `Prelude.seq` Prelude.rnf subnetIds instance Data.ToJSON VpcConfig where toJSON VpcConfig' {..} = Data.object ( Prelude.catMaybes [ ("securityGroupIds" Data..=) Prelude.<$> securityGroupIds, Prelude.Just ("subnetIds" Data..= subnetIds) ] )