pulumi_wasm_providers_aws_mini::functions::ec2::get_elastic_ip

Struct GetElasticIpResult

source
pub struct GetElasticIpResult {
Show 19 fields pub arn: Output<String>, pub association_id: Output<String>, pub carrier_ip: Output<String>, pub customer_owned_ip: Output<String>, pub customer_owned_ipv4_pool: Output<String>, pub domain: Output<String>, pub filters: Output<Option<Vec<GetElasticIpFilter>>>, pub id: Output<String>, pub instance_id: Output<String>, pub ipam_pool_id: Output<String>, pub network_interface_id: Output<String>, pub network_interface_owner_id: Output<String>, pub private_dns: Output<String>, pub private_ip: Output<String>, pub ptr_record: Output<String>, pub public_dns: Output<String>, pub public_ip: Output<String>, pub public_ipv4_pool: Output<String>, pub tags: Output<HashMap<String, String>>,
}

Fields§

§arn: Output<String>§association_id: Output<String>

ID representing the association of the address with an instance in a VPC.

§carrier_ip: Output<String>

Carrier IP address.

§customer_owned_ip: Output<String>

Customer Owned IP.

§customer_owned_ipv4_pool: Output<String>

The ID of a Customer Owned IP Pool. For more on customer owned IP addressed check out Customer-owned IP addresses guide

§domain: Output<String>

Whether the address is for use in EC2-Classic (standard) or in a VPC (vpc).

§filters: Output<Option<Vec<GetElasticIpFilter>>>§id: Output<String>

If VPC Elastic IP, the allocation identifier. If EC2-Classic Elastic IP, the public IP address.

§instance_id: Output<String>

ID of the instance that the address is associated with (if any).

§ipam_pool_id: Output<String>

The ID of an IPAM pool which has an Amazon-provided or BYOIP public IPv4 CIDR provisioned to it.

§network_interface_id: Output<String>

The ID of the network interface.

§network_interface_owner_id: Output<String>

The ID of the AWS account that owns the network interface.

§private_dns: Output<String>

Private DNS associated with the Elastic IP address.

§private_ip: Output<String>

Private IP address associated with the Elastic IP address.

§ptr_record: Output<String>

The DNS pointer (PTR) record for the IP address.

§public_dns: Output<String>

Public DNS associated with the Elastic IP address.

§public_ip: Output<String>

Public IP address of Elastic IP.

§public_ipv4_pool: Output<String>

ID of an address pool.

§tags: Output<HashMap<String, String>>

Key-value map of tags associated with Elastic IP.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.