interface MonitorReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.InternetMonitor.MonitorReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsinternetmonitor#MonitorReference |
Java | software.amazon.awscdk.services.internetmonitor.MonitorReference |
Python | aws_cdk.aws_internetmonitor.MonitorReference |
TypeScript | aws-cdk-lib » aws_internetmonitor » MonitorReference |
A reference to a Monitor resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_internetmonitor as internetmonitor } from 'aws-cdk-lib';
const monitorReference: internetmonitor.MonitorReference = {
monitorArn: 'monitorArn',
monitorName: 'monitorName',
};
Properties
| Name | Type | Description |
|---|---|---|
| monitor | string | The ARN of the Monitor resource. |
| monitor | string | The MonitorName of the Monitor resource. |
monitorArn
Type:
string
The ARN of the Monitor resource.
monitorName
Type:
string
The MonitorName of the Monitor resource.

.NET
Go
Java
Python
TypeScript