Class: Aws::Batch::Types::NetworkConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::NetworkConfiguration
- Defined in:
- gems/aws-sdk-batch/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
".
6167 6168 6169 6170 6171 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6167 class NetworkConfiguration < Struct.new( :assign_public_ip) SENSITIVE = [] include Aws::Structure end |