libZSservicesZSamazonka-lambdaZSamazonka-lambda
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.Lambda.Types.VpcConfig

Description

 
Synopsis

Documentation

data VpcConfig Source #

The VPC security groups and subnets that are attached to a Lambda function. For more information, see VPC Settings.

See: newVpcConfig smart constructor.

Constructors

VpcConfig' 

Fields

Instances

Instances details
Eq VpcConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.VpcConfig

Read VpcConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.VpcConfig

Show VpcConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.VpcConfig

Generic VpcConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.VpcConfig

Associated Types

type Rep VpcConfig :: Type -> Type #

NFData VpcConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.VpcConfig

Methods

rnf :: VpcConfig -> () #

Hashable VpcConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.VpcConfig

ToJSON VpcConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.VpcConfig

type Rep VpcConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.VpcConfig

type Rep VpcConfig = D1 ('MetaData "VpcConfig" "Amazonka.Lambda.Types.VpcConfig" "libZSservicesZSamazonka-lambdaZSamazonka-lambda" 'False) (C1 ('MetaCons "VpcConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "securityGroupIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "subnetIds") '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 VPC security groups IDs.

$sel:subnetIds:VpcConfig', vpcConfig_subnetIds - A list of VPC subnet IDs.

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

A list of VPC security groups IDs.

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

A list of VPC subnet IDs.