Struct aws_sdk_ec2::types::builders::Ipv6PoolBuilder
source · #[non_exhaustive]pub struct Ipv6PoolBuilder { /* private fields */ }
Expand description
A builder for Ipv6Pool
.
Implementations§
source§impl Ipv6PoolBuilder
impl Ipv6PoolBuilder
sourcepub fn set_pool_id(self, input: Option<String>) -> Self
pub fn set_pool_id(self, input: Option<String>) -> Self
The ID of the address pool.
sourcepub fn get_pool_id(&self) -> &Option<String>
pub fn get_pool_id(&self) -> &Option<String>
The ID of the address pool.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description for the address pool.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description for the address pool.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description for the address pool.
sourcepub fn pool_cidr_blocks(self, input: PoolCidrBlock) -> Self
pub fn pool_cidr_blocks(self, input: PoolCidrBlock) -> Self
Appends an item to pool_cidr_blocks
.
To override the contents of this collection use set_pool_cidr_blocks
.
The CIDR blocks for the address pool.
sourcepub fn set_pool_cidr_blocks(self, input: Option<Vec<PoolCidrBlock>>) -> Self
pub fn set_pool_cidr_blocks(self, input: Option<Vec<PoolCidrBlock>>) -> Self
The CIDR blocks for the address pool.
sourcepub fn get_pool_cidr_blocks(&self) -> &Option<Vec<PoolCidrBlock>>
pub fn get_pool_cidr_blocks(&self) -> &Option<Vec<PoolCidrBlock>>
The CIDR blocks for the address pool.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
Any tags for the address pool.
Any tags for the address pool.
Any tags for the address pool.
Trait Implementations§
source§impl Clone for Ipv6PoolBuilder
impl Clone for Ipv6PoolBuilder
source§fn clone(&self) -> Ipv6PoolBuilder
fn clone(&self) -> Ipv6PoolBuilder
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 Ipv6PoolBuilder
impl Debug for Ipv6PoolBuilder
source§impl Default for Ipv6PoolBuilder
impl Default for Ipv6PoolBuilder
source§fn default() -> Ipv6PoolBuilder
fn default() -> Ipv6PoolBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<Ipv6PoolBuilder> for Ipv6PoolBuilder
impl PartialEq<Ipv6PoolBuilder> for Ipv6PoolBuilder
source§fn eq(&self, other: &Ipv6PoolBuilder) -> bool
fn eq(&self, other: &Ipv6PoolBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for Ipv6PoolBuilder
Auto Trait Implementations§
impl RefUnwindSafe for Ipv6PoolBuilder
impl Send for Ipv6PoolBuilder
impl Sync for Ipv6PoolBuilder
impl Unpin for Ipv6PoolBuilder
impl UnwindSafe for Ipv6PoolBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more