CfnMonitorMixinProps

class aws_cdk.cfn_property_mixins.aws_networkflowmonitor.CfnMonitorMixinProps(*, local_resources=None, monitor_name=None, remote_resources=None, scope_arn=None, tags=None)

Bases: object

Properties for CfnMonitorPropsMixin.

Parameters:
  • local_resources (Union[IResolvable, Sequence[Union[IResolvable, MonitorLocalResourceProperty, Dict[str, Any]]], None]) – The local resources to monitor.

  • monitor_name (Optional[str]) – The name of the monitor.

  • remote_resources (Union[IResolvable, Sequence[Union[IResolvable, MonitorRemoteResourceProperty, Dict[str, Any]]], None]) – The remote resources to monitor.

  • scope_arn (Optional[str]) – The Amazon Resource Name (ARN) of the scope for the monitor.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags for the monitor.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkflowmonitor-monitor.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.cfn_property_mixins import aws_networkflowmonitor as networkflowmonitor

cfn_monitor_mixin_props = networkflowmonitor.CfnMonitorMixinProps(
    local_resources=[networkflowmonitor.CfnMonitorPropsMixin.MonitorLocalResourceProperty(
        identifier="identifier",
        type="type"
    )],
    monitor_name="monitorName",
    remote_resources=[networkflowmonitor.CfnMonitorPropsMixin.MonitorRemoteResourceProperty(
        identifier="identifier",
        type="type"
    )],
    scope_arn="scopeArn",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

local_resources

The local resources to monitor.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkflowmonitor-monitor.html#cfn-networkflowmonitor-monitor-localresources

monitor_name

The name of the monitor.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkflowmonitor-monitor.html#cfn-networkflowmonitor-monitor-monitorname

remote_resources

The remote resources to monitor.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkflowmonitor-monitor.html#cfn-networkflowmonitor-monitor-remoteresources

scope_arn

The Amazon Resource Name (ARN) of the scope for the monitor.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkflowmonitor-monitor.html#cfn-networkflowmonitor-monitor-scopearn

tags

The tags for the monitor.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkflowmonitor-monitor.html#cfn-networkflowmonitor-monitor-tags