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 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() -> 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 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
This method tests for
self
and other
values to be equal, and is used
by ==
.