pulumi_wasm_providers_aws_mini::functions::ec2::get_route

Struct GetRouteArgs

source
pub struct GetRouteArgs {
Show 14 fields pub carrier_gateway_id: Output<Option<String>>, pub core_network_arn: Output<Option<String>>, pub destination_cidr_block: Output<Option<String>>, pub destination_ipv6_cidr_block: Output<Option<String>>, pub destination_prefix_list_id: Output<Option<String>>, pub egress_only_gateway_id: Output<Option<String>>, pub gateway_id: Output<Option<String>>, pub instance_id: Output<Option<String>>, pub local_gateway_id: Output<Option<String>>, pub nat_gateway_id: Output<Option<String>>, pub network_interface_id: Output<Option<String>>, pub route_table_id: Output<String>, pub transit_gateway_id: Output<Option<String>>, pub vpc_peering_connection_id: Output<Option<String>>,
}

Fields§

§carrier_gateway_id: Output<Option<String>>

EC2 Carrier Gateway ID of the Route belonging to the Route Table.

§core_network_arn: Output<Option<String>>

Core network ARN of the Route belonging to the Route Table.

§destination_cidr_block: Output<Option<String>>

CIDR block of the Route belonging to the Route Table.

§destination_ipv6_cidr_block: Output<Option<String>>

IPv6 CIDR block of the Route belonging to the Route Table.

§destination_prefix_list_id: Output<Option<String>>

ID of a managed prefix list destination of the Route belonging to the Route Table.

§egress_only_gateway_id: Output<Option<String>>

Egress Only Gateway ID of the Route belonging to the Route Table.

§gateway_id: Output<Option<String>>

Gateway ID of the Route belonging to the Route Table.

§instance_id: Output<Option<String>>

Instance ID of the Route belonging to the Route Table.

§local_gateway_id: Output<Option<String>>

Local Gateway ID of the Route belonging to the Route Table.

§nat_gateway_id: Output<Option<String>>

NAT Gateway ID of the Route belonging to the Route Table.

§network_interface_id: Output<Option<String>>

Network Interface ID of the Route belonging to the Route Table.

§route_table_id: Output<String>

ID of the specific Route Table containing the Route entry.

The following arguments are optional:

§transit_gateway_id: Output<Option<String>>

EC2 Transit Gateway ID of the Route belonging to the Route Table.

§vpc_peering_connection_id: Output<Option<String>>

VPC Peering Connection ID of the Route belonging to the Route Table.

Implementations§

source§

impl GetRouteArgs

source

pub fn builder() -> GetRouteArgsBuilder

Create an instance of GetRouteArgs using the builder syntax

Trait Implementations§

source§

impl Clone for GetRouteArgs

source§

fn clone(&self) -> GetRouteArgs

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.