CfnNetworkInsightsAnalysisMixinProps

class aws_cdk.mixins_preview.aws_ec2.mixins.CfnNetworkInsightsAnalysisMixinProps(*, additional_accounts=None, filter_in_arns=None, filter_out_arns=None, network_insights_path_id=None, tags=None)

Bases: object

Properties for CfnNetworkInsightsAnalysisPropsMixin.

Parameters:
  • additional_accounts (Optional[Sequence[str]]) – The member accounts that contain resources that the path can traverse.

  • filter_in_arns (Optional[Sequence[str]]) – The Amazon Resource Names (ARN) of the resources that the path must traverse.

  • filter_out_arns (Optional[Sequence[str]]) – The Amazon Resource Names (ARN) of the resources that the path must ignore.

  • network_insights_path_id (Optional[str]) – The ID of the path.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags to apply.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightsanalysis.html

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.mixins_preview.aws_ec2 import mixins as ec2_mixins

cfn_network_insights_analysis_mixin_props = ec2_mixins.CfnNetworkInsightsAnalysisMixinProps(
    additional_accounts=["additionalAccounts"],
    filter_in_arns=["filterInArns"],
    filter_out_arns=["filterOutArns"],
    network_insights_path_id="networkInsightsPathId",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

additional_accounts

The member accounts that contain resources that the path can traverse.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightsanalysis.html#cfn-ec2-networkinsightsanalysis-additionalaccounts

filter_in_arns

The Amazon Resource Names (ARN) of the resources that the path must traverse.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightsanalysis.html#cfn-ec2-networkinsightsanalysis-filterinarns

filter_out_arns

The Amazon Resource Names (ARN) of the resources that the path must ignore.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightsanalysis.html#cfn-ec2-networkinsightsanalysis-filteroutarns

network_insights_path_id

The ID of the path.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightsanalysis.html#cfn-ec2-networkinsightsanalysis-networkinsightspathid

tags

The tags to apply.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightsanalysis.html#cfn-ec2-networkinsightsanalysis-tags