pulumi_wasm_providers_aws_mini::functions::ec2::get_vpc_peering_connection

Struct GetVpcPeeringConnectionResult

source
pub struct GetVpcPeeringConnectionResult {
Show 18 fields pub accepter: Output<HashMap<String, bool>>, pub cidr_block: Output<String>, pub cidr_block_sets: Output<Vec<GetVpcPeeringConnectionCidrBlockSet>>, pub filters: Output<Option<Vec<GetVpcPeeringConnectionFilter>>>, pub id: Output<String>, pub ipv6_cidr_block_sets: Output<Vec<GetVpcPeeringConnectionIpv6CidrBlockSet>>, pub owner_id: Output<String>, pub peer_cidr_block: Output<String>, pub peer_cidr_block_sets: Output<Vec<GetVpcPeeringConnectionPeerCidrBlockSet>>, pub peer_ipv6_cidr_block_sets: Output<Vec<GetVpcPeeringConnectionPeerIpv6CidrBlockSet>>, pub peer_owner_id: Output<String>, pub peer_region: Output<String>, pub peer_vpc_id: Output<String>, pub region: Output<String>, pub requester: Output<HashMap<String, bool>>, pub status: Output<String>, pub tags: Output<HashMap<String, String>>, pub vpc_id: Output<String>,
}

Fields§

§accepter: Output<HashMap<String, bool>>

Configuration block that describes [VPC Peering Connection] (https://docs.aws.amazon.com/vpc/latest/peering/what-is-vpc-peering.html) options set for the accepter VPC.

§cidr_block: Output<String>

CIDR block associated to the VPC of the specific VPC Peering Connection.

§cidr_block_sets: Output<Vec<GetVpcPeeringConnectionCidrBlockSet>>

List of objects with IPv4 CIDR blocks of the requester VPC.

§filters: Output<Option<Vec<GetVpcPeeringConnectionFilter>>>§id: Output<String>§ipv6_cidr_block_sets: Output<Vec<GetVpcPeeringConnectionIpv6CidrBlockSet>>

List of objects with IPv6 CIDR blocks of the requester VPC.

§owner_id: Output<String>§peer_cidr_block: Output<String>§peer_cidr_block_sets: Output<Vec<GetVpcPeeringConnectionPeerCidrBlockSet>>

List of objects with IPv4 CIDR blocks of the accepter VPC.

§peer_ipv6_cidr_block_sets: Output<Vec<GetVpcPeeringConnectionPeerIpv6CidrBlockSet>>

List of objects with IPv6 CIDR blocks of the accepter VPC.

§peer_owner_id: Output<String>§peer_region: Output<String>§peer_vpc_id: Output<String>§region: Output<String>§requester: Output<HashMap<String, bool>>

Configuration block that describes [VPC Peering Connection] (https://docs.aws.amazon.com/vpc/latest/peering/what-is-vpc-peering.html) options set for the requester VPC.

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

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.