Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
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.
NetworkConfig' | |
|
Instances
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_vpcConfig :: Lens' NetworkConfig (Maybe VpcConfig) Source #
Undocumented member.
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.