CfnNetworkInsightsAnalysisProps¶
-
class
aws_cdk.aws_ec2.
CfnNetworkInsightsAnalysisProps
(*, network_insights_path_id, filter_in_arns=None, tags=None)¶ Bases:
object
Properties for defining a
CfnNetworkInsightsAnalysis
.- Parameters
network_insights_path_id (
str
) – The ID of the path.filter_in_arns (
Optional
[Sequence
[str
]]) – The Amazon Resource Names (ARN) of the resources that the path must traverse.tags (
Optional
[Sequence
[CfnTag
]]) – The tags to apply.
- Link
- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_ec2 as ec2 cfn_network_insights_analysis_props = ec2.CfnNetworkInsightsAnalysisProps( network_insights_path_id="networkInsightsPathId", # the properties below are optional filter_in_arns=["filterInArns"], tags=[CfnTag( key="key", value="value" )] )
Attributes
-
filter_in_arns
¶ The Amazon Resource Names (ARN) of the resources that the path must traverse.
-
network_insights_path_id
¶ The ID of the path.
The tags to apply.