interface NetworkAnalyzerConfigurationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoTWireless.NetworkAnalyzerConfigurationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiotwireless#NetworkAnalyzerConfigurationReference |
Java | software.amazon.awscdk.interfaces.iotwireless.NetworkAnalyzerConfigurationReference |
Python | aws_cdk.interfaces.aws_iotwireless.NetworkAnalyzerConfigurationReference |
TypeScript | aws-cdk-lib » interfaces » aws_iotwireless » NetworkAnalyzerConfigurationReference |
A reference to a NetworkAnalyzerConfiguration resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotwireless as interfaces_aws_iotwireless } from 'aws-cdk-lib/interfaces';
const networkAnalyzerConfigurationReference: interfaces_aws_iotwireless.NetworkAnalyzerConfigurationReference = {
networkAnalyzerConfigurationArn: 'networkAnalyzerConfigurationArn',
networkAnalyzerConfigurationName: 'networkAnalyzerConfigurationName',
};
Properties
| Name | Type | Description |
|---|---|---|
| network | string | The ARN of the NetworkAnalyzerConfiguration resource. |
| network | string | The Name of the NetworkAnalyzerConfiguration resource. |
networkAnalyzerConfigurationArn
Type:
string
The ARN of the NetworkAnalyzerConfiguration resource.
networkAnalyzerConfigurationName
Type:
string
The Name of the NetworkAnalyzerConfiguration resource.

.NET
Go
Java
Python
TypeScript