interface CfnMonitorMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.NetworkFlowMonitor.CfnMonitorMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsnetworkflowmonitor#CfnMonitorMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.networkflowmonitor.CfnMonitorMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_networkflowmonitor.CfnMonitorMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_networkflowmonitor » CfnMonitorMixinProps |
Properties for CfnMonitorPropsMixin.
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/cfn-property-mixins';
const cfnMonitorMixinProps: networkflowmonitor.CfnMonitorMixinProps = {
localResources: [{
identifier: 'identifier',
type: 'type',
}],
monitorName: 'monitorName',
remoteResources: [{
identifier: 'identifier',
type: 'type',
}],
scopeArn: 'scopeArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| local | IResolvable | (IResolvable | Monitor)[] | The local resources to monitor. |
| monitor | string | The name of the monitor. |
| remote | IResolvable | (IResolvable | Monitor)[] | The remote resources to monitor. |
| scope | string | The Amazon Resource Name (ARN) of the scope for the monitor. |
| tags? | Cfn[] | The tags for the monitor. |
localResources?
Type:
IResolvable | (IResolvable | Monitor)[]
(optional)
The local resources to monitor.
monitorName?
Type:
string
(optional)
The name of the monitor.
remoteResources?
Type:
IResolvable | (IResolvable | Monitor)[]
(optional)
The remote resources to monitor.
scopeArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the scope for the monitor.
tags?
Type:
Cfn[]
(optional)
The tags for the monitor.

.NET
Go
Java
Python
TypeScript