Class: Aws::NetworkFlowMonitor::Types::MonitorRemoteResource
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFlowMonitor::Types::MonitorRemoteResource
- Defined in:
- gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb
Overview
A remote resource is the other endpoint in a network flow. That is, one endpoint is the local resource and the other is the remote resource. Remote resources can be a a subnet, a VPC, an Availability Zone, an Amazon Web Services service, or an Amazon Web Services Region.
When a remote resource is an Amazon Web Services Region, Network Flow Monitor provides network performance measurements up to the edge of the Region that you specify.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#identifier ⇒ String
The identifier of the remote resource.
-
#type ⇒ String
The type of the remote resource.
Instance Attribute Details
#identifier ⇒ String
The identifier of the remote 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. For an Amazon Web Services Region , this identifier is the Region name, for example, us-west-2.
912 913 914 915 916 917 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 912 class MonitorRemoteResource < Struct.new( :type, :identifier) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of the remote resource. Valid values are AWS::EC2::VPC
AWS::AvailabilityZone
, AWS::EC2::Subnet
, AWS::AWSService
, or
AWS::Region
.
912 913 914 915 916 917 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 912 class MonitorRemoteResource < Struct.new( :type, :identifier) SENSITIVE = [] include Aws::Structure end |