Struct aws_sdk_scheduler::model::AwsVpcConfiguration
source · #[non_exhaustive]pub struct AwsVpcConfiguration { /* private fields */ }
Expand description
This structure specifies the VPC subnets and security groups for the task, and whether a public IP address is to be used. This structure is relevant only for ECS tasks that use the awsvpc network mode.
Implementations§
source§impl AwsVpcConfiguration
impl AwsVpcConfiguration
sourcepub fn subnets(&self) -> Option<&[String]>
pub fn subnets(&self) -> Option<&[String]>
Specifies the subnets associated with the task. These subnets must all be in the same VPC. You can specify as many as 16 subnets.
sourcepub fn security_groups(&self) -> Option<&[String]>
pub fn security_groups(&self) -> Option<&[String]>
Specifies the security groups associated with the task. These security groups must all be in the same VPC. You can specify as many as five security groups. If you do not specify a security group, the default security group for the VPC is used.
sourcepub fn assign_public_ip(&self) -> Option<&AssignPublicIp>
pub fn assign_public_ip(&self) -> Option<&AssignPublicIp>
Specifies whether the task's elastic network interface receives a public IP address. You can specify ENABLED
only when LaunchType
in EcsParameters
is set to FARGATE
.
source§impl AwsVpcConfiguration
impl AwsVpcConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AwsVpcConfiguration
.
Trait Implementations§
source§impl Clone for AwsVpcConfiguration
impl Clone for AwsVpcConfiguration
source§fn clone(&self) -> AwsVpcConfiguration
fn clone(&self) -> AwsVpcConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AwsVpcConfiguration
impl Debug for AwsVpcConfiguration
source§impl PartialEq<AwsVpcConfiguration> for AwsVpcConfiguration
impl PartialEq<AwsVpcConfiguration> for AwsVpcConfiguration
source§fn eq(&self, other: &AwsVpcConfiguration) -> bool
fn eq(&self, other: &AwsVpcConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.