Struct aws_sdk_batch::types::NetworkConfiguration
source · #[non_exhaustive]pub struct NetworkConfiguration {
pub assign_public_ip: Option<AssignPublicIp>,
}
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.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.assign_public_ip: Option<AssignPublicIp>
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
".
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 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
".
source§impl NetworkConfiguration
impl NetworkConfiguration
sourcepub fn builder() -> NetworkConfigurationBuilder
pub fn builder() -> NetworkConfigurationBuilder
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for NetworkConfiguration
impl Debug for NetworkConfiguration
source§impl PartialEq<NetworkConfiguration> for NetworkConfiguration
impl PartialEq<NetworkConfiguration> for NetworkConfiguration
source§fn eq(&self, other: &NetworkConfiguration) -> bool
fn eq(&self, other: &NetworkConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.