amazonka-apprunner-2.0: Amazon App Runner 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.AppRunner.Types.EgressConfiguration

Description

 
Synopsis

Documentation

data EgressConfiguration Source #

Describes configuration settings related to outbound network traffic of an App Runner service.

See: newEgressConfiguration smart constructor.

Constructors

EgressConfiguration' 

Fields

  • egressType :: Maybe EgressType

    The type of egress configuration.

    Set to DEFAULT for access to resources hosted on public networks.

    Set to VPC to associate your service to a custom VPC specified by VpcConnectorArn.

  • vpcConnectorArn :: Maybe Text

    The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to associate with your App Runner service. Only valid when EgressType = VPC.

Instances

Instances details
FromJSON EgressConfiguration Source # 
Instance details

Defined in Amazonka.AppRunner.Types.EgressConfiguration

ToJSON EgressConfiguration Source # 
Instance details

Defined in Amazonka.AppRunner.Types.EgressConfiguration

Generic EgressConfiguration Source # 
Instance details

Defined in Amazonka.AppRunner.Types.EgressConfiguration

Associated Types

type Rep EgressConfiguration :: Type -> Type #

Read EgressConfiguration Source # 
Instance details

Defined in Amazonka.AppRunner.Types.EgressConfiguration

Show EgressConfiguration Source # 
Instance details

Defined in Amazonka.AppRunner.Types.EgressConfiguration

NFData EgressConfiguration Source # 
Instance details

Defined in Amazonka.AppRunner.Types.EgressConfiguration

Methods

rnf :: EgressConfiguration -> () #

Eq EgressConfiguration Source # 
Instance details

Defined in Amazonka.AppRunner.Types.EgressConfiguration

Hashable EgressConfiguration Source # 
Instance details

Defined in Amazonka.AppRunner.Types.EgressConfiguration

type Rep EgressConfiguration Source # 
Instance details

Defined in Amazonka.AppRunner.Types.EgressConfiguration

type Rep EgressConfiguration = D1 ('MetaData "EgressConfiguration" "Amazonka.AppRunner.Types.EgressConfiguration" "amazonka-apprunner-2.0-EwwUWnxXZrM2Mgbv25gcO5" 'False) (C1 ('MetaCons "EgressConfiguration'" 'PrefixI 'True) (S1 ('MetaSel ('Just "egressType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe EgressType)) :*: S1 ('MetaSel ('Just "vpcConnectorArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newEgressConfiguration :: EgressConfiguration Source #

Create a value of EgressConfiguration 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:egressType:EgressConfiguration', egressConfiguration_egressType - The type of egress configuration.

Set to DEFAULT for access to resources hosted on public networks.

Set to VPC to associate your service to a custom VPC specified by VpcConnectorArn.

$sel:vpcConnectorArn:EgressConfiguration', egressConfiguration_vpcConnectorArn - The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to associate with your App Runner service. Only valid when EgressType = VPC.

egressConfiguration_egressType :: Lens' EgressConfiguration (Maybe EgressType) Source #

The type of egress configuration.

Set to DEFAULT for access to resources hosted on public networks.

Set to VPC to associate your service to a custom VPC specified by VpcConnectorArn.

egressConfiguration_vpcConnectorArn :: Lens' EgressConfiguration (Maybe Text) Source #

The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to associate with your App Runner service. Only valid when EgressType = VPC.