libZSservicesZSamazonka-syntheticsZSamazonka-synthetics
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.Synthetics.Types.VpcConfigInput

Description

 
Synopsis

Documentation

data VpcConfigInput Source #

If this canary is to test an endpoint in a VPC, this structure contains information about the subnets and security groups of the VPC endpoint. For more information, see Running a Canary in a VPC.

See: newVpcConfigInput smart constructor.

Constructors

VpcConfigInput' 

Fields

Instances

Instances details
Eq VpcConfigInput Source # 
Instance details

Defined in Amazonka.Synthetics.Types.VpcConfigInput

Read VpcConfigInput Source # 
Instance details

Defined in Amazonka.Synthetics.Types.VpcConfigInput

Show VpcConfigInput Source # 
Instance details

Defined in Amazonka.Synthetics.Types.VpcConfigInput

Generic VpcConfigInput Source # 
Instance details

Defined in Amazonka.Synthetics.Types.VpcConfigInput

Associated Types

type Rep VpcConfigInput :: Type -> Type #

NFData VpcConfigInput Source # 
Instance details

Defined in Amazonka.Synthetics.Types.VpcConfigInput

Methods

rnf :: VpcConfigInput -> () #

Hashable VpcConfigInput Source # 
Instance details

Defined in Amazonka.Synthetics.Types.VpcConfigInput

ToJSON VpcConfigInput Source # 
Instance details

Defined in Amazonka.Synthetics.Types.VpcConfigInput

type Rep VpcConfigInput Source # 
Instance details

Defined in Amazonka.Synthetics.Types.VpcConfigInput

type Rep VpcConfigInput = D1 ('MetaData "VpcConfigInput" "Amazonka.Synthetics.Types.VpcConfigInput" "libZSservicesZSamazonka-syntheticsZSamazonka-synthetics" 'False) (C1 ('MetaCons "VpcConfigInput'" 'PrefixI 'True) (S1 ('MetaSel ('Just "securityGroupIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "subnetIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text]))))

newVpcConfigInput :: VpcConfigInput Source #

Create a value of VpcConfigInput 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:VpcConfigInput', vpcConfigInput_securityGroupIds - The IDs of the security groups for this canary.

$sel:subnetIds:VpcConfigInput', vpcConfigInput_subnetIds - The IDs of the subnets where this canary is to run.

vpcConfigInput_securityGroupIds :: Lens' VpcConfigInput (Maybe [Text]) Source #

The IDs of the security groups for this canary.

vpcConfigInput_subnetIds :: Lens' VpcConfigInput (Maybe [Text]) Source #

The IDs of the subnets where this canary is to run.