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. The values you can specify are the following:
For a VPC or subnet, this identifier is the VPC Amazon Resource Name (ARN) or subnet ARN.
For a service, this identifier is one of the following strings:
S3orDynamoDB.For an Availability Zone, this identifier is the AZ name, for example, us-west-2b.
For a Region, this identifier is the Region name, for example, us-west-2.
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.
930 931 932 933 934 935 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 930 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.
930 931 932 933 934 935 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 930 class MonitorRemoteResource < Struct.new( :type, :identifier) SENSITIVE = [] include Aws::Structure end |