Class: Aws::VPCLattice::Types::TargetFailure
- Inherits:
-
Struct
- Object
- Struct
- Aws::VPCLattice::Types::TargetFailure
- Defined in:
- gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb
Overview
Describes a target failure.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failure_code ⇒ String
The failure code.
-
#failure_message ⇒ String
The failure message.
-
#id ⇒ String
The ID of the target.
-
#port ⇒ Integer
The port on which the target is listening.
Instance Attribute Details
#failure_code ⇒ String
The failure code.
5151 5152 5153 5154 5155 5156 5157 5158 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 5151 class TargetFailure < Struct.new( :id, :port, :failure_code, :failure_message) SENSITIVE = [] include Aws::Structure end |
#failure_message ⇒ String
The failure message.
5151 5152 5153 5154 5155 5156 5157 5158 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 5151 class TargetFailure < Struct.new( :id, :port, :failure_code, :failure_message) SENSITIVE = [] include Aws::Structure end |
#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.
5151 5152 5153 5154 5155 5156 5157 5158 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 5151 class TargetFailure < Struct.new( :id, :port, :failure_code, :failure_message) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
The port on which the target is listening. This parameter doesn't apply if the target is a Lambda function.
5151 5152 5153 5154 5155 5156 5157 5158 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 5151 class TargetFailure < Struct.new( :id, :port, :failure_code, :failure_message) SENSITIVE = [] include Aws::Structure end |