{-# 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.SecurityHub.Types.AwsCodeBuildProjectVpcConfig -- 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.SecurityHub.Types.AwsCodeBuildProjectVpcConfig 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 -- | Information about the VPC configuration that CodeBuild accesses. -- -- /See:/ 'newAwsCodeBuildProjectVpcConfig' smart constructor. data AwsCodeBuildProjectVpcConfig = AwsCodeBuildProjectVpcConfig' { -- | A list of one or more security group IDs in your VPC. securityGroupIds :: Prelude.Maybe [Prelude.Text], -- | A list of one or more subnet IDs in your VPC. subnets :: Prelude.Maybe [Prelude.Text], -- | The ID of the VPC. vpcId :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AwsCodeBuildProjectVpcConfig' 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', 'awsCodeBuildProjectVpcConfig_securityGroupIds' - A list of one or more security group IDs in your VPC. -- -- 'subnets', 'awsCodeBuildProjectVpcConfig_subnets' - A list of one or more subnet IDs in your VPC. -- -- 'vpcId', 'awsCodeBuildProjectVpcConfig_vpcId' - The ID of the VPC. newAwsCodeBuildProjectVpcConfig :: AwsCodeBuildProjectVpcConfig newAwsCodeBuildProjectVpcConfig = AwsCodeBuildProjectVpcConfig' { securityGroupIds = Prelude.Nothing, subnets = Prelude.Nothing, vpcId = Prelude.Nothing } -- | A list of one or more security group IDs in your VPC. awsCodeBuildProjectVpcConfig_securityGroupIds :: Lens.Lens' AwsCodeBuildProjectVpcConfig (Prelude.Maybe [Prelude.Text]) awsCodeBuildProjectVpcConfig_securityGroupIds = Lens.lens (\AwsCodeBuildProjectVpcConfig' {securityGroupIds} -> securityGroupIds) (\s@AwsCodeBuildProjectVpcConfig' {} a -> s {securityGroupIds = a} :: AwsCodeBuildProjectVpcConfig) Prelude.. Lens.mapping Lens.coerced -- | A list of one or more subnet IDs in your VPC. awsCodeBuildProjectVpcConfig_subnets :: Lens.Lens' AwsCodeBuildProjectVpcConfig (Prelude.Maybe [Prelude.Text]) awsCodeBuildProjectVpcConfig_subnets = Lens.lens (\AwsCodeBuildProjectVpcConfig' {subnets} -> subnets) (\s@AwsCodeBuildProjectVpcConfig' {} a -> s {subnets = a} :: AwsCodeBuildProjectVpcConfig) Prelude.. Lens.mapping Lens.coerced -- | The ID of the VPC. awsCodeBuildProjectVpcConfig_vpcId :: Lens.Lens' AwsCodeBuildProjectVpcConfig (Prelude.Maybe Prelude.Text) awsCodeBuildProjectVpcConfig_vpcId = Lens.lens (\AwsCodeBuildProjectVpcConfig' {vpcId} -> vpcId) (\s@AwsCodeBuildProjectVpcConfig' {} a -> s {vpcId = a} :: AwsCodeBuildProjectVpcConfig) instance Data.FromJSON AwsCodeBuildProjectVpcConfig where parseJSON = Data.withObject "AwsCodeBuildProjectVpcConfig" ( \x -> AwsCodeBuildProjectVpcConfig' Prelude.<$> ( x Data..:? "SecurityGroupIds" Data..!= Prelude.mempty ) Prelude.<*> (x Data..:? "Subnets" Data..!= Prelude.mempty) Prelude.<*> (x Data..:? "VpcId") ) instance Prelude.Hashable AwsCodeBuildProjectVpcConfig where hashWithSalt _salt AwsCodeBuildProjectVpcConfig' {..} = _salt `Prelude.hashWithSalt` securityGroupIds `Prelude.hashWithSalt` subnets `Prelude.hashWithSalt` vpcId instance Prelude.NFData AwsCodeBuildProjectVpcConfig where rnf AwsCodeBuildProjectVpcConfig' {..} = Prelude.rnf securityGroupIds `Prelude.seq` Prelude.rnf subnets `Prelude.seq` Prelude.rnf vpcId instance Data.ToJSON AwsCodeBuildProjectVpcConfig where toJSON AwsCodeBuildProjectVpcConfig' {..} = Data.object ( Prelude.catMaybes [ ("SecurityGroupIds" Data..=) Prelude.<$> securityGroupIds, ("Subnets" Data..=) Prelude.<$> subnets, ("VpcId" Data..=) Prelude.<$> vpcId ] )