Struct aws_sdk_ec2::input::AssociateVpcCidrBlockInput
source · #[non_exhaustive]pub struct AssociateVpcCidrBlockInput { /* private fields */ }
Implementations§
source§impl AssociateVpcCidrBlockInput
impl AssociateVpcCidrBlockInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AssociateVpcCidrBlock, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AssociateVpcCidrBlock, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<AssociateVpcCidrBlock
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AssociateVpcCidrBlockInput
.
source§impl AssociateVpcCidrBlockInput
impl AssociateVpcCidrBlockInput
sourcepub fn amazon_provided_ipv6_cidr_block(&self) -> Option<bool>
pub fn amazon_provided_ipv6_cidr_block(&self) -> Option<bool>
Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length for the VPC. You cannot specify the range of IPv6 addresses, or the size of the CIDR block.
sourcepub fn cidr_block(&self) -> Option<&str>
pub fn cidr_block(&self) -> Option<&str>
An IPv4 CIDR block to associate with the VPC.
sourcepub fn ipv6_cidr_block_network_border_group(&self) -> Option<&str>
pub fn ipv6_cidr_block_network_border_group(&self) -> Option<&str>
The name of the location from which we advertise the IPV6 CIDR block. Use this parameter to limit the CIDR block to this location.
You must set AmazonProvidedIpv6CidrBlock
to true
to use this parameter.
You can have one IPv6 CIDR block association per network border group.
sourcepub fn ipv6_pool(&self) -> Option<&str>
pub fn ipv6_pool(&self) -> Option<&str>
The ID of an IPv6 address pool from which to allocate the IPv6 CIDR block.
sourcepub fn ipv6_cidr_block(&self) -> Option<&str>
pub fn ipv6_cidr_block(&self) -> Option<&str>
An IPv6 CIDR block from the IPv6 address pool. You must also specify Ipv6Pool
in the request.
To let Amazon choose the IPv6 CIDR block for you, omit this parameter.
sourcepub fn ipv4_ipam_pool_id(&self) -> Option<&str>
pub fn ipv4_ipam_pool_id(&self) -> Option<&str>
Associate a CIDR allocated from an IPv4 IPAM pool to a VPC. For more information about Amazon VPC IP Address Manager (IPAM), see What is IPAM? in the Amazon VPC IPAM User Guide.
sourcepub fn ipv4_netmask_length(&self) -> Option<i32>
pub fn ipv4_netmask_length(&self) -> Option<i32>
The netmask length of the IPv4 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see What is IPAM? in the Amazon VPC IPAM User Guide.
sourcepub fn ipv6_ipam_pool_id(&self) -> Option<&str>
pub fn ipv6_ipam_pool_id(&self) -> Option<&str>
Associates a CIDR allocated from an IPv6 IPAM pool to a VPC. For more information about Amazon VPC IP Address Manager (IPAM), see What is IPAM? in the Amazon VPC IPAM User Guide.
sourcepub fn ipv6_netmask_length(&self) -> Option<i32>
pub fn ipv6_netmask_length(&self) -> Option<i32>
The netmask length of the IPv6 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see What is IPAM? in the Amazon VPC IPAM User Guide.
Trait Implementations§
source§impl Clone for AssociateVpcCidrBlockInput
impl Clone for AssociateVpcCidrBlockInput
source§fn clone(&self) -> AssociateVpcCidrBlockInput
fn clone(&self) -> AssociateVpcCidrBlockInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AssociateVpcCidrBlockInput
impl Debug for AssociateVpcCidrBlockInput
source§impl PartialEq<AssociateVpcCidrBlockInput> for AssociateVpcCidrBlockInput
impl PartialEq<AssociateVpcCidrBlockInput> for AssociateVpcCidrBlockInput
source§fn eq(&self, other: &AssociateVpcCidrBlockInput) -> bool
fn eq(&self, other: &AssociateVpcCidrBlockInput) -> bool
self
and other
values to be equal, and is used
by ==
.