Struct aws_sdk_ec2::model::AddressAttribute [−][src]
#[non_exhaustive]pub struct AddressAttribute {
pub public_ip: Option<String>,
pub allocation_id: Option<String>,
pub ptr_record: Option<String>,
pub ptr_record_update: Option<PtrUpdateStatus>,
}
Expand description
The attributes associated with an Elastic IP address.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.public_ip: Option<String>
The public IP address.
allocation_id: Option<String>
[EC2-VPC] The allocation ID.
ptr_record: Option<String>
The pointer (PTR) record for the IP address.
ptr_record_update: Option<PtrUpdateStatus>
The updated PTR record for the IP address.
Implementations
[EC2-VPC] The allocation ID.
The pointer (PTR) record for the IP address.
The updated PTR record for the IP address.
Creates a new builder-style object to manufacture AddressAttribute
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for AddressAttribute
impl Send for AddressAttribute
impl Sync for AddressAttribute
impl Unpin for AddressAttribute
impl UnwindSafe for AddressAttribute
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more