libZSservicesZSamazonka-robomakerZSamazonka-robomaker
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.RobOMaker.Types.VPCConfig

Description

 
Synopsis

Documentation

data VPCConfig Source #

If your simulation job accesses resources in a VPC, you provide this parameter identifying the list of security group IDs and subnet IDs. These must belong to the same VPC. You must provide at least one security group and two subnet IDs.

See: newVPCConfig smart constructor.

Constructors

VPCConfig' 

Fields

Instances

Instances details
Eq VPCConfig Source # 
Instance details

Defined in Amazonka.RobOMaker.Types.VPCConfig

Read VPCConfig Source # 
Instance details

Defined in Amazonka.RobOMaker.Types.VPCConfig

Show VPCConfig Source # 
Instance details

Defined in Amazonka.RobOMaker.Types.VPCConfig

Generic VPCConfig Source # 
Instance details

Defined in Amazonka.RobOMaker.Types.VPCConfig

Associated Types

type Rep VPCConfig :: Type -> Type #

NFData VPCConfig Source # 
Instance details

Defined in Amazonka.RobOMaker.Types.VPCConfig

Methods

rnf :: VPCConfig -> () #

Hashable VPCConfig Source # 
Instance details

Defined in Amazonka.RobOMaker.Types.VPCConfig

ToJSON VPCConfig Source # 
Instance details

Defined in Amazonka.RobOMaker.Types.VPCConfig

FromJSON VPCConfig Source # 
Instance details

Defined in Amazonka.RobOMaker.Types.VPCConfig

type Rep VPCConfig Source # 
Instance details

Defined in Amazonka.RobOMaker.Types.VPCConfig

type Rep VPCConfig = D1 ('MetaData "VPCConfig" "Amazonka.RobOMaker.Types.VPCConfig" "libZSservicesZSamazonka-robomakerZSamazonka-robomaker" 'False) (C1 ('MetaCons "VPCConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "securityGroups") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Text))) :*: (S1 ('MetaSel ('Just "assignPublicIp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "subnets") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text)))))

newVPCConfig 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:securityGroups:VPCConfig', vPCConfig_securityGroups - A list of one or more security groups IDs in your VPC.

$sel:assignPublicIp:VPCConfig', vPCConfig_assignPublicIp - A boolean indicating whether to assign a public IP address.

$sel:subnets:VPCConfig', vPCConfig_subnets - A list of one or more subnet IDs in your VPC.

vPCConfig_securityGroups :: Lens' VPCConfig (Maybe (NonEmpty Text)) Source #

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

vPCConfig_assignPublicIp :: Lens' VPCConfig (Maybe Bool) Source #

A boolean indicating whether to assign a public IP address.

vPCConfig_subnets :: Lens' VPCConfig (NonEmpty Text) Source #

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