Class: Aws::VPCLattice::Types::Target
- Inherits:
-
Struct
- Object
- Struct
- Aws::VPCLattice::Types::Target
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-vpclattice/types.rb
Overview
Describes a target.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The ID of the target.
-
#port ⇒ Integer
The port on which the target is listening.
Instance Attribute Details
#id ⇒ String
The ID of the target. If the target group type is INSTANCE, this
is an instance ID. If the target group type is IP, this is an IP
address. If the target group type is LAMBDA, this is the ARN of a
Lambda function. If the target group type is ALB, this is the ARN
of an Application Load Balancer.
5189 5190 5191 5192 5193 5194 |
# File 'lib/aws-sdk-vpclattice/types.rb', line 5189 class Target < Struct.new( :id, :port) SENSITIVE = [] include Aws::Structure end |