Expand description
Provides a Network Insights Path resource. Part of the “Reachability Analyzer” service in the AWS VPC console.
§Example Usage
ⓘ
use pulumi_wasm_rust::Output;
use pulumi_wasm_rust::{add_export, pulumi_main};
#[pulumi_main]
fn test_main() -> Result<(), Error> {
let test = network_insights_path::create(
"test",
NetworkInsightsPathArgs::builder()
.destination("${destination.id}")
.protocol("tcp")
.source("${source.id}")
.build_struct(),
);
}
§Import
Using pulumi import
, import Network Insights Paths using the id
. For example:
$ pulumi import aws:ec2/networkInsightsPath:NetworkInsightsPath test nip-00edfba169923aefd
Structs§
- Use builder syntax to set the inputs and finish with
build_struct()
.
Functions§
- Registers a new resource with the given unique name and arguments