NetworkInsightsPathReference
- class aws_cdk.aws_ec2.NetworkInsightsPathReference(*, network_insights_path_arn, network_insights_path_id)
Bases:
object
A reference to a NetworkInsightsPath resource.
- Parameters:
network_insights_path_arn (
str
) – The ARN of the NetworkInsightsPath resource.network_insights_path_id (
str
) – The NetworkInsightsPathId of the NetworkInsightsPath resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_ec2 as ec2 network_insights_path_reference = ec2.NetworkInsightsPathReference( network_insights_path_arn="networkInsightsPathArn", network_insights_path_id="networkInsightsPathId" )
Attributes
- network_insights_path_arn
The ARN of the NetworkInsightsPath resource.
- network_insights_path_id
The NetworkInsightsPathId of the NetworkInsightsPath resource.