interface NetworkInsightsAccessScopeReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EC2.NetworkInsightsAccessScopeReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsec2#NetworkInsightsAccessScopeReference |
Java | software.amazon.awscdk.interfaces.ec2.NetworkInsightsAccessScopeReference |
Python | aws_cdk.interfaces.aws_ec2.NetworkInsightsAccessScopeReference |
TypeScript | aws-cdk-lib » interfaces » aws_ec2 » NetworkInsightsAccessScopeReference |
A reference to a NetworkInsightsAccessScope resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as interfaces_ec2 } from 'aws-cdk-lib/interfaces';
const networkInsightsAccessScopeReference: interfaces_ec2.NetworkInsightsAccessScopeReference = {
networkInsightsAccessScopeArn: 'networkInsightsAccessScopeArn',
networkInsightsAccessScopeId: 'networkInsightsAccessScopeId',
};
Properties
| Name | Type | Description |
|---|---|---|
| network | string | The ARN of the NetworkInsightsAccessScope resource. |
| network | string | The NetworkInsightsAccessScopeId of the NetworkInsightsAccessScope resource. |
networkInsightsAccessScopeArn
Type:
string
The ARN of the NetworkInsightsAccessScope resource.
networkInsightsAccessScopeId
Type:
string
The NetworkInsightsAccessScopeId of the NetworkInsightsAccessScope resource.

.NET
Go
Java
Python
TypeScript