Struct aws_sdk_ec2::operation::get_ipam_address_history::builders::GetIpamAddressHistoryOutputBuilder
source · #[non_exhaustive]pub struct GetIpamAddressHistoryOutputBuilder { /* private fields */ }Expand description
A builder for GetIpamAddressHistoryOutput.
Implementations§
source§impl GetIpamAddressHistoryOutputBuilder
impl GetIpamAddressHistoryOutputBuilder
sourcepub fn history_records(self, input: IpamAddressHistoryRecord) -> Self
pub fn history_records(self, input: IpamAddressHistoryRecord) -> Self
Appends an item to history_records.
To override the contents of this collection use set_history_records.
A historical record for a CIDR within an IPAM scope. If the CIDR is associated with an EC2 instance, you will see an object in the response for the instance and one for the network interface.
sourcepub fn set_history_records(
self,
input: Option<Vec<IpamAddressHistoryRecord>>
) -> Self
pub fn set_history_records( self, input: Option<Vec<IpamAddressHistoryRecord>> ) -> Self
A historical record for a CIDR within an IPAM scope. If the CIDR is associated with an EC2 instance, you will see an object in the response for the instance and one for the network interface.
sourcepub fn get_history_records(&self) -> &Option<Vec<IpamAddressHistoryRecord>>
pub fn get_history_records(&self) -> &Option<Vec<IpamAddressHistoryRecord>>
A historical record for a CIDR within an IPAM scope. If the CIDR is associated with an EC2 instance, you will see an object in the response for the instance and one for the network interface.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token to use to retrieve the next page of results. This value is null when there are no more results to return.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token to use to retrieve the next page of results. This value is null when there are no more results to return.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token to use to retrieve the next page of results. This value is null when there are no more results to return.
sourcepub fn build(self) -> GetIpamAddressHistoryOutput
pub fn build(self) -> GetIpamAddressHistoryOutput
Consumes the builder and constructs a GetIpamAddressHistoryOutput.
Trait Implementations§
source§impl Clone for GetIpamAddressHistoryOutputBuilder
impl Clone for GetIpamAddressHistoryOutputBuilder
source§fn clone(&self) -> GetIpamAddressHistoryOutputBuilder
fn clone(&self) -> GetIpamAddressHistoryOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for GetIpamAddressHistoryOutputBuilder
impl Default for GetIpamAddressHistoryOutputBuilder
source§fn default() -> GetIpamAddressHistoryOutputBuilder
fn default() -> GetIpamAddressHistoryOutputBuilder
source§impl PartialEq for GetIpamAddressHistoryOutputBuilder
impl PartialEq for GetIpamAddressHistoryOutputBuilder
source§fn eq(&self, other: &GetIpamAddressHistoryOutputBuilder) -> bool
fn eq(&self, other: &GetIpamAddressHistoryOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetIpamAddressHistoryOutputBuilder
Auto Trait Implementations§
impl Freeze for GetIpamAddressHistoryOutputBuilder
impl RefUnwindSafe for GetIpamAddressHistoryOutputBuilder
impl Send for GetIpamAddressHistoryOutputBuilder
impl Sync for GetIpamAddressHistoryOutputBuilder
impl Unpin for GetIpamAddressHistoryOutputBuilder
impl UnwindSafe for GetIpamAddressHistoryOutputBuilder
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
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>
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>
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 more