Class: Aws::ElasticLoadBalancingV2::Types::DescribeTargetHealthInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::DescribeTargetHealthInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Note:
When making an API call, you may pass DescribeTargetHealthInput data as a hash:
{
target_group_arn: "TargetGroupArn", # required
targets: [
{
id: "TargetId", # required
port: 1,
availability_zone: "ZoneName",
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#target_group_arn ⇒ String
The Amazon Resource Name (ARN) of the target group.
-
#targets ⇒ Array<Types::TargetDescription>
The targets.
Instance Attribute Details
#target_group_arn ⇒ String
The Amazon Resource Name (ARN) of the target group.
1847 1848 1849 1850 1851 1852 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 1847 class DescribeTargetHealthInput < Struct.new( :target_group_arn, :targets) SENSITIVE = [] include Aws::Structure end |
#targets ⇒ Array<Types::TargetDescription>
The targets.
1847 1848 1849 1850 1851 1852 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 1847 class DescribeTargetHealthInput < Struct.new( :target_group_arn, :targets) SENSITIVE = [] include Aws::Structure end |