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 scope that is included in a target. A target identifier is made up of a target ID and a target type. Currently the target ID is always an account ID and the target type is always ACCOUNT.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#target_id ⇒ Types::TargetId
The identifier for a target, which is currently always an account ID .
-
#target_type ⇒ String
The type of a target.
Instance Attribute Details
#target_id ⇒ Types::TargetId
The identifier for a target, which is currently always an account ID .
1549 1550 1551 1552 1553 1554 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 1549 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
.
1549 1550 1551 1552 1553 1554 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 1549 class TargetIdentifier < Struct.new( :target_id, :target_type) SENSITIVE = [] include Aws::Structure end |