amazonka-robomaker-2.0: Amazon RoboMaker 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.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
FromJSON VPCConfig Source # 
Instance details

Defined in Amazonka.RobOMaker.Types.VPCConfig

ToJSON 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 #

Read VPCConfig Source # 
Instance details

Defined in Amazonka.RobOMaker.Types.VPCConfig

Show VPCConfig Source # 
Instance details

Defined in Amazonka.RobOMaker.Types.VPCConfig

NFData VPCConfig Source # 
Instance details

Defined in Amazonka.RobOMaker.Types.VPCConfig

Methods

rnf :: VPCConfig -> () #

Eq VPCConfig Source # 
Instance details

Defined in Amazonka.RobOMaker.Types.VPCConfig

Hashable 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" "amazonka-robomaker-2.0-7StvfiX8F7FIYnuj4Jp3Jq" 'False) (C1 ('MetaCons "VPCConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "assignPublicIp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "securityGroups") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Text))) :*: 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:assignPublicIp:VPCConfig', vPCConfig_assignPublicIp - A boolean indicating whether to assign a public IP address.

$sel:securityGroups:VPCConfig', vPCConfig_securityGroups - A list of one or more security groups IDs in your VPC.

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

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

A boolean indicating whether to assign a public IP address.

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

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

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

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