Class: Aws::NetworkFlowMonitor::Types::MonitorSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFlowMonitor::Types::MonitorSummary
- Defined in:
- gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb
Overview
A summary of information about a monitor, includ the ARN, the name, and the status.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#monitor_arn ⇒ String
The Amazon Resource Name (ARN) of the monitor.
-
#monitor_name ⇒ String
The name of the monitor.
-
#monitor_status ⇒ String
The status of a monitor.
Instance Attribute Details
#monitor_arn ⇒ String
The Amazon Resource Name (ARN) of the monitor.
906 907 908 909 910 911 912 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 906 class MonitorSummary < Struct.new( :monitor_arn, :monitor_name, :monitor_status) SENSITIVE = [] include Aws::Structure end |
#monitor_name ⇒ String
The name of the monitor.
906 907 908 909 910 911 912 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 906 class MonitorSummary < Struct.new( :monitor_arn, :monitor_name, :monitor_status) SENSITIVE = [] include Aws::Structure end |
#monitor_status ⇒ String
The status of a monitor. The status can be one of the following
PENDING
: The monitor is in the process of being created.ACTIVE
: The monitor is active.INACTIVE
: The monitor is inactive.ERROR
: Monitor creation failed due to an error.DELETING
: The monitor is in the process of being deleted.
906 907 908 909 910 911 912 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 906 class MonitorSummary < Struct.new( :monitor_arn, :monitor_name, :monitor_status) SENSITIVE = [] include Aws::Structure end |