Class: Aws::NetworkFlowMonitor::Types::TargetIdentifier

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#target_idTypes::TargetId

The identifier for a target.

Returns:



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_typeString

The type of a target. A target type is currently always ACCOUNT because a target is currently a single Amazon Web Services account.

Returns:

  • (String)


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