Class: Aws::NetworkFlowMonitor::Types::MonitorLocalResource

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb

Overview

A local resource is the host where the agent is installed. Local resources can be a a subnet, a VPC, an Availability Zone, or an Amazon Web Services service.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#identifierString

The identifier of the local resource. For a VPC or subnet, this identifier is the VPC Amazon Resource Name (ARN) or subnet ARN. For an Availability Zone, this identifier is the AZ name, for example, us-west-2b.

Returns:

  • (String)


879
880
881
882
883
884
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 879

class MonitorLocalResource < Struct.new(
  :type,
  :identifier)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The type of the local resource. Valid values are AWS::EC2::VPC AWS::AvailabilityZone, AWS::EC2::Subnet, or AWS::Region.

Returns:

  • (String)


879
880
881
882
883
884
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 879

class MonitorLocalResource < Struct.new(
  :type,
  :identifier)
  SENSITIVE = []
  include Aws::Structure
end