#[non_exhaustive]pub struct GetIpamAddressHistoryOutput {
pub history_records: Option<Vec<IpamAddressHistoryRecord>>,
pub next_token: Option<String>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.history_records: 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.
next_token: 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.
Implementations§
source§impl GetIpamAddressHistoryOutput
impl GetIpamAddressHistoryOutput
sourcepub fn history_records(&self) -> &[IpamAddressHistoryRecord]
pub fn history_records(&self) -> &[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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .history_records.is_none().
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token to use to retrieve the next page of results. This value is null when there are no more results to return.
source§impl GetIpamAddressHistoryOutput
impl GetIpamAddressHistoryOutput
sourcepub fn builder() -> GetIpamAddressHistoryOutputBuilder
pub fn builder() -> GetIpamAddressHistoryOutputBuilder
Creates a new builder-style object to manufacture GetIpamAddressHistoryOutput.
Trait Implementations§
source§impl Clone for GetIpamAddressHistoryOutput
impl Clone for GetIpamAddressHistoryOutput
source§fn clone(&self) -> GetIpamAddressHistoryOutput
fn clone(&self) -> GetIpamAddressHistoryOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetIpamAddressHistoryOutput
impl Debug for GetIpamAddressHistoryOutput
source§impl PartialEq for GetIpamAddressHistoryOutput
impl PartialEq for GetIpamAddressHistoryOutput
source§fn eq(&self, other: &GetIpamAddressHistoryOutput) -> bool
fn eq(&self, other: &GetIpamAddressHistoryOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for GetIpamAddressHistoryOutput
impl RequestId for GetIpamAddressHistoryOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.