amazonka-codebuild-2.0: Amazon CodeBuild SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.CodeBuild.Types.VpcConfig

Description

 
Synopsis

Documentation

data VpcConfig Source #

Information about the VPC configuration that CodeBuild accesses.

See: newVpcConfig smart constructor.

Constructors

VpcConfig' 

Fields

Instances

Instances details
FromJSON VpcConfig Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.VpcConfig

ToJSON VpcConfig Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.VpcConfig

Generic VpcConfig Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.VpcConfig

Associated Types

type Rep VpcConfig :: Type -> Type #

Read VpcConfig Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.VpcConfig

Show VpcConfig Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.VpcConfig

NFData VpcConfig Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.VpcConfig

Methods

rnf :: VpcConfig -> () #

Eq VpcConfig Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.VpcConfig

Hashable VpcConfig Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.VpcConfig

type Rep VpcConfig Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.VpcConfig

type Rep VpcConfig = D1 ('MetaData "VpcConfig" "Amazonka.CodeBuild.Types.VpcConfig" "amazonka-codebuild-2.0-3KpZspRk9Ul8Wu4D0cM13Q" 'False) (C1 ('MetaCons "VpcConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "securityGroupIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: (S1 ('MetaSel ('Just "subnets") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "vpcId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newVpcConfig :: VpcConfig Source #

Create a value of VpcConfig with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:securityGroupIds:VpcConfig', vpcConfig_securityGroupIds - A list of one or more security groups IDs in your Amazon VPC.

$sel:subnets:VpcConfig', vpcConfig_subnets - A list of one or more subnet IDs in your Amazon VPC.

$sel:vpcId:VpcConfig', vpcConfig_vpcId - The ID of the Amazon VPC.

vpcConfig_securityGroupIds :: Lens' VpcConfig (Maybe [Text]) Source #

A list of one or more security groups IDs in your Amazon VPC.

vpcConfig_subnets :: Lens' VpcConfig (Maybe [Text]) Source #

A list of one or more subnet IDs in your Amazon VPC.

vpcConfig_vpcId :: Lens' VpcConfig (Maybe Text) Source #

The ID of the Amazon VPC.