Class: Aws::NetworkFlowMonitor::Types::TargetId
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFlowMonitor::Types::TargetId
- Defined in:
- gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb
Overview
Note:
TargetId is a union - when making an API calls you must set exactly one of the members.
Note:
TargetId is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TargetId corresponding to the set member.
A target ID is an internally-generated identifier for a target. A target allows you to identify all the resources in a Network Flow Monitor scope. Currently, a target is always an Amazon Web Services account.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The identifier for the account for a target.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#account_id ⇒ String
The identifier for the account for a target.
1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 1522 class TargetId < Struct.new( :account_id, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AccountId < TargetId; end class Unknown < TargetId; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1522 1523 1524 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 1522 def unknown @unknown end |