NetworkInsightsPathReference
- class aws_cdk.interfaces.aws_ec2.NetworkInsightsPathReference(*, network_insights_path_arn, network_insights_path_id)
Bases:
objectA 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.interfaces import aws_ec2 as interfaces_ec2 network_insights_path_reference = interfaces_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.