libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker
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.SageMaker.Types.NetworkConfig

Description

 
Synopsis

Documentation

data NetworkConfig Source #

Networking options for a job, such as network traffic encryption between containers, whether to allow inbound and outbound network calls to and from containers, and the VPC subnets and security groups to use for VPC-enabled jobs.

See: newNetworkConfig smart constructor.

Constructors

NetworkConfig' 

Fields

Instances

Instances details
Eq NetworkConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.NetworkConfig

Read NetworkConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.NetworkConfig

Show NetworkConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.NetworkConfig

Generic NetworkConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.NetworkConfig

Associated Types

type Rep NetworkConfig :: Type -> Type #

NFData NetworkConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.NetworkConfig

Methods

rnf :: NetworkConfig -> () #

Hashable NetworkConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.NetworkConfig

ToJSON NetworkConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.NetworkConfig

FromJSON NetworkConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.NetworkConfig

type Rep NetworkConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.NetworkConfig

type Rep NetworkConfig = D1 ('MetaData "NetworkConfig" "Amazonka.SageMaker.Types.NetworkConfig" "libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker" 'False) (C1 ('MetaCons "NetworkConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "enableNetworkIsolation") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "vpcConfig") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe VpcConfig)) :*: S1 ('MetaSel ('Just "enableInterContainerTrafficEncryption") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)))))

newNetworkConfig :: NetworkConfig Source #

Create a value of NetworkConfig 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:enableNetworkIsolation:NetworkConfig', networkConfig_enableNetworkIsolation - Whether to allow inbound and outbound network calls to and from the containers used for the processing job.

$sel:vpcConfig:NetworkConfig', networkConfig_vpcConfig - Undocumented member.

$sel:enableInterContainerTrafficEncryption:NetworkConfig', networkConfig_enableInterContainerTrafficEncryption - Whether to encrypt all communications between distributed processing jobs. Choose True to encrypt communications. Encryption provides greater security for distributed processing jobs, but the processing might take longer.

networkConfig_enableNetworkIsolation :: Lens' NetworkConfig (Maybe Bool) Source #

Whether to allow inbound and outbound network calls to and from the containers used for the processing job.

networkConfig_enableInterContainerTrafficEncryption :: Lens' NetworkConfig (Maybe Bool) Source #

Whether to encrypt all communications between distributed processing jobs. Choose True to encrypt communications. Encryption provides greater security for distributed processing jobs, but the processing might take longer.