Class: Aws::Batch::Types::NetworkConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::NetworkConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-batch/types.rb
Overview
The network configuration for jobs that are running on Fargate resources. Jobs that are running on Amazon EC2 resources must not specify this parameter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#assign_public_ip ⇒ String
Indicates whether the job has a public IP address.
Instance Attribute Details
#assign_public_ip ⇒ String
Indicates whether the job has a public IP address. For a job that’s running on Fargate resources in a private subnet to send outbound traffic to the internet (for example, to pull container images), the private subnet requires a NAT gateway be attached to route requests to the internet. For more information, see [Amazon ECS task networking] in the *Amazon Elastic Container Service Developer Guide*. The default value is “‘DISABLED`”.
[1]: docs.aws.amazon.com/AmazonECS/latest/developerguide/task-networking.html
6009 6010 6011 6012 6013 |
# File 'lib/aws-sdk-batch/types.rb', line 6009 class NetworkConfiguration < Struct.new( :assign_public_ip) SENSITIVE = [] include Aws::Structure end |