interface CfnNetworkInsightsAccessScopeAnalysisProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.EC2.CfnNetworkInsightsAccessScopeAnalysisProps | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnNetworkInsightsAccessScopeAnalysisProps | 
|  Java | software.amazon.awscdk.services.ec2.CfnNetworkInsightsAccessScopeAnalysisProps | 
|  Python | aws_cdk.aws_ec2.CfnNetworkInsightsAccessScopeAnalysisProps | 
|  TypeScript | aws-cdk-lib»aws_ec2»CfnNetworkInsightsAccessScopeAnalysisProps | 
Properties for defining a CfnNetworkInsightsAccessScopeAnalysis.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
const cfnNetworkInsightsAccessScopeAnalysisProps: ec2.CfnNetworkInsightsAccessScopeAnalysisProps = {
  networkInsightsAccessScopeId: 'networkInsightsAccessScopeId',
  // the properties below are optional
  tags: [{
    key: 'key',
    value: 'value',
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| network | string | The ID of the Network Access Scope. | 
| tags? | Cfn[] | The tags. | 
networkInsightsAccessScopeId
Type:
string
The ID of the Network Access Scope.
tags?
Type:
Cfn[]
(optional)
The tags.
