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 for Ipv6PoolBuilder
impl PartialEq 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 Freeze for Ipv6PoolBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.