Class: Aws::NetworkFlowMonitor::Types::MonitorSummary

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#monitor_arnString

The Amazon Resource Name (ARN) of the monitor.

Returns:

  • (String)


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_nameString

The name of the monitor.

Returns:

  • (String)


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_statusString

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.

Returns:

  • (String)


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