Class: Aws::NetworkFlowMonitor::Types::TargetIdentifier
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFlowMonitor::Types::TargetIdentifier
- Defined in:
- gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb
Overview
A target identifier is a pair of identifying information for a resource that is included in a target. A target identifier includes the target ID and the target type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#target_id ⇒ Types::TargetId
The identifier for a target.
-
#target_type ⇒ String
The type of a target.
Instance Attribute Details
#target_id ⇒ Types::TargetId
The identifier for a target.
1476 1477 1478 1479 1480 1481 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 1476 class TargetIdentifier < Struct.new( :target_id, :target_type) SENSITIVE = [] include Aws::Structure end |
#target_type ⇒ String
The type of a target. A target type is currently always ACCOUNT
because a target is currently a single Amazon Web Services account.
1476 1477 1478 1479 1480 1481 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 1476 class TargetIdentifier < Struct.new( :target_id, :target_type) SENSITIVE = [] include Aws::Structure end |