Interface ModifyTargetGroupAttributesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<ModifyTargetGroupAttributesRequest.Builder,ModifyTargetGroupAttributesRequest>
,ElasticLoadBalancingV2Request.Builder
,SdkBuilder<ModifyTargetGroupAttributesRequest.Builder,ModifyTargetGroupAttributesRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- ModifyTargetGroupAttributesRequest
public static interface ModifyTargetGroupAttributesRequest.Builder extends ElasticLoadBalancingV2Request.Builder, SdkPojo, CopyableBuilder<ModifyTargetGroupAttributesRequest.Builder,ModifyTargetGroupAttributesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ModifyTargetGroupAttributesRequest.Builder
attributes(Collection<TargetGroupAttribute> attributes)
The attributes.ModifyTargetGroupAttributesRequest.Builder
attributes(Consumer<TargetGroupAttribute.Builder>... attributes)
The attributes.ModifyTargetGroupAttributesRequest.Builder
attributes(TargetGroupAttribute... attributes)
The attributes.ModifyTargetGroupAttributesRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
ModifyTargetGroupAttributesRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
ModifyTargetGroupAttributesRequest.Builder
targetGroupArn(String targetGroupArn)
The Amazon Resource Name (ARN) of the target group.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.elasticloadbalancingv2.model.ElasticLoadBalancingV2Request.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
targetGroupArn
ModifyTargetGroupAttributesRequest.Builder targetGroupArn(String targetGroupArn)
The Amazon Resource Name (ARN) of the target group.
- Parameters:
targetGroupArn
- The Amazon Resource Name (ARN) of the target group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
ModifyTargetGroupAttributesRequest.Builder attributes(Collection<TargetGroupAttribute> attributes)
The attributes.
- Parameters:
attributes
- The attributes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
ModifyTargetGroupAttributesRequest.Builder attributes(TargetGroupAttribute... attributes)
The attributes.
- Parameters:
attributes
- The attributes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
ModifyTargetGroupAttributesRequest.Builder attributes(Consumer<TargetGroupAttribute.Builder>... attributes)
The attributes.
This is a convenience method that creates an instance of theTargetGroupAttribute.Builder
avoiding the need to create one manually viaTargetGroupAttribute.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#attributes(List
.) - Parameters:
attributes
- a consumer that will call methods onTargetGroupAttribute.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#attributes(java.util.Collection
)
-
overrideConfiguration
ModifyTargetGroupAttributesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
ModifyTargetGroupAttributesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-