interface MonitorRemoteResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.NetworkFlowMonitor.CfnMonitor.MonitorRemoteResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsnetworkflowmonitor#CfnMonitor_MonitorRemoteResourceProperty |
Java | software.amazon.awscdk.services.networkflowmonitor.CfnMonitor.MonitorRemoteResourceProperty |
Python | aws_cdk.aws_networkflowmonitor.CfnMonitor.MonitorRemoteResourceProperty |
TypeScript | aws-cdk-lib » aws_networkflowmonitor » CfnMonitor » MonitorRemoteResourceProperty |
A remote resource is the other endpoint in a network flow.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_networkflowmonitor as networkflowmonitor } from 'aws-cdk-lib';
const monitorRemoteResourceProperty: networkflowmonitor.CfnMonitor.MonitorRemoteResourceProperty = {
identifier: 'identifier',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| identifier | string | The identifier of the remote resource. |
| type | string | The type of the remote resource. |
identifier
Type:
string
The identifier of the remote resource.
type
Type:
string
The type of the remote resource.

.NET
Go
Java
Python
TypeScript