Struct aws_sdk_batch::model::NetworkConfiguration
source · #[non_exhaustive]pub struct NetworkConfiguration { /* private fields */ }
Expand description
The network configuration for jobs that are running on Fargate resources. Jobs that are running on EC2 resources must not specify this parameter.
Implementations§
source§impl NetworkConfiguration
impl NetworkConfiguration
sourcepub fn assign_public_ip(&self) -> Option<&AssignPublicIp>
pub fn assign_public_ip(&self) -> Option<&AssignPublicIp>
Indicates whether the job should have a public IP address. For a job that is 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. The default value is "DISABLED".
source§impl NetworkConfiguration
impl NetworkConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NetworkConfiguration
.
Trait Implementations§
source§impl Clone for NetworkConfiguration
impl Clone for NetworkConfiguration
source§fn clone(&self) -> NetworkConfiguration
fn clone(&self) -> NetworkConfiguration
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more