Interface ManagedTargetGroup.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ManagedTargetGroup.Builder,ManagedTargetGroup>,SdkBuilder<ManagedTargetGroup.Builder,ManagedTargetGroup>,SdkPojo
- Enclosing class:
- ManagedTargetGroup
@Mutable @NotThreadSafe public static interface ManagedTargetGroup.Builder extends SdkPojo, CopyableBuilder<ManagedTargetGroup.Builder,ManagedTargetGroup>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedTargetGroup.Builderarn(String arn)The Amazon Resource Name (ARN) of the target group.ManagedTargetGroup.BuilderhealthCheckPath(String healthCheckPath)The destination for health checks on the targets.ManagedTargetGroup.BuilderhealthCheckPort(Integer healthCheckPort)The port the load balancer uses when performing health checks on targets.ManagedTargetGroup.Builderport(Integer port)The port on which the targets receive traffic.ManagedTargetGroup.Builderstatus(String status)The status of the target group.ManagedTargetGroup.Builderstatus(ManagedResourceStatus status)The status of the target group.ManagedTargetGroup.BuilderstatusReason(String statusReason)Information about why the target group is in the current status.ManagedTargetGroup.BuilderupdatedAt(Instant updatedAt)The Unix timestamp for when the target group was last updated.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
arn
ManagedTargetGroup.Builder arn(String arn)
The Amazon Resource Name (ARN) of the target group.
- Parameters:
arn- The Amazon Resource Name (ARN) of the target group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ManagedTargetGroup.Builder status(String status)
The status of the target group.
- Parameters:
status- The status of the target group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ManagedResourceStatus,ManagedResourceStatus
-
status
ManagedTargetGroup.Builder status(ManagedResourceStatus status)
The status of the target group.
- Parameters:
status- The status of the target group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ManagedResourceStatus,ManagedResourceStatus
-
statusReason
ManagedTargetGroup.Builder statusReason(String statusReason)
Information about why the target group is in the current status.
- Parameters:
statusReason- Information about why the target group is in the current status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updatedAt
ManagedTargetGroup.Builder updatedAt(Instant updatedAt)
The Unix timestamp for when the target group was last updated.
- Parameters:
updatedAt- The Unix timestamp for when the target group was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
healthCheckPath
ManagedTargetGroup.Builder healthCheckPath(String healthCheckPath)
The destination for health checks on the targets.
- Parameters:
healthCheckPath- The destination for health checks on the targets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
healthCheckPort
ManagedTargetGroup.Builder healthCheckPort(Integer healthCheckPort)
The port the load balancer uses when performing health checks on targets.
- Parameters:
healthCheckPort- The port the load balancer uses when performing health checks on targets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
port
ManagedTargetGroup.Builder port(Integer port)
The port on which the targets receive traffic.
- Parameters:
port- The port on which the targets receive traffic.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-