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.VpcConfigOutput

Description

 
Synopsis

Documentation

data VpcConfigOutput 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: newVpcConfigOutput smart constructor.

Constructors

VpcConfigOutput' 

Fields

Instances

Instances details
Eq VpcConfigOutput Source # 
Instance details

Defined in Amazonka.Synthetics.Types.VpcConfigOutput

Read VpcConfigOutput Source # 
Instance details

Defined in Amazonka.Synthetics.Types.VpcConfigOutput

Show VpcConfigOutput Source # 
Instance details

Defined in Amazonka.Synthetics.Types.VpcConfigOutput

Generic VpcConfigOutput Source # 
Instance details

Defined in Amazonka.Synthetics.Types.VpcConfigOutput

Associated Types

type Rep VpcConfigOutput :: Type -> Type #

NFData VpcConfigOutput Source # 
Instance details

Defined in Amazonka.Synthetics.Types.VpcConfigOutput

Methods

rnf :: VpcConfigOutput -> () #

Hashable VpcConfigOutput Source # 
Instance details

Defined in Amazonka.Synthetics.Types.VpcConfigOutput

FromJSON VpcConfigOutput Source # 
Instance details

Defined in Amazonka.Synthetics.Types.VpcConfigOutput

type Rep VpcConfigOutput Source # 
Instance details

Defined in Amazonka.Synthetics.Types.VpcConfigOutput

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

newVpcConfigOutput :: VpcConfigOutput Source #

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

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

$sel:vpcId:VpcConfigOutput', vpcConfigOutput_vpcId - The IDs of the VPC where this canary is to run.

vpcConfigOutput_securityGroupIds :: Lens' VpcConfigOutput (Maybe [Text]) Source #

The IDs of the security groups for this canary.

vpcConfigOutput_subnetIds :: Lens' VpcConfigOutput (Maybe [Text]) Source #

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

vpcConfigOutput_vpcId :: Lens' VpcConfigOutput (Maybe Text) Source #

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