interface CfnNetworkInsightsAccessScopeAnalysisProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.EC2.CfnNetworkInsightsAccessScopeAnalysisProps | 
  Java | software.amazon.awscdk.services.ec2.CfnNetworkInsightsAccessScopeAnalysisProps | 
  Python | aws_cdk.aws_ec2.CfnNetworkInsightsAccessScopeAnalysisProps | 
  TypeScript  | @aws-cdk/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 * as ec2 from '@aws-cdk/aws-ec2';
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.

 .NET
 Java
 Python
 TypeScript