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, or an Amazon Web Services service.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#identifier ⇒ String
The identifier of the remote resource, such as an ARN.
-
#type ⇒ String
The type of the remote resource.
Instance Attribute Details
#identifier ⇒ String
The identifier of the remote resource, such as an ARN.
860 861 862 863 864 865 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 860 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
, or AWS::AWSService
.
860 861 862 863 864 865 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 860 class MonitorRemoteResource < Struct.new( :type, :identifier) SENSITIVE = [] include Aws::Structure end |