Interface BatchUpdateRuleResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<BatchUpdateRuleResponse.Builder,BatchUpdateRuleResponse>,SdkBuilder<BatchUpdateRuleResponse.Builder,BatchUpdateRuleResponse>,SdkPojo,SdkResponse.Builder,VpcLatticeResponse.Builder
- Enclosing class:
- BatchUpdateRuleResponse
public static interface BatchUpdateRuleResponse.Builder extends VpcLatticeResponse.Builder, SdkPojo, CopyableBuilder<BatchUpdateRuleResponse.Builder,BatchUpdateRuleResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchUpdateRuleResponse.Buildersuccessful(Collection<RuleUpdateSuccess> successful)The rules that were successfully updated.BatchUpdateRuleResponse.Buildersuccessful(Consumer<RuleUpdateSuccess.Builder>... successful)The rules that were successfully updated.BatchUpdateRuleResponse.Buildersuccessful(RuleUpdateSuccess... successful)The rules that were successfully updated.BatchUpdateRuleResponse.Builderunsuccessful(Collection<RuleUpdateFailure> unsuccessful)The rules that the operation couldn't update.BatchUpdateRuleResponse.Builderunsuccessful(Consumer<RuleUpdateFailure.Builder>... unsuccessful)The rules that the operation couldn't update.BatchUpdateRuleResponse.Builderunsuccessful(RuleUpdateFailure... unsuccessful)The rules that the operation couldn't update.-
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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.vpclattice.model.VpcLatticeResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
successful
BatchUpdateRuleResponse.Builder successful(Collection<RuleUpdateSuccess> successful)
The rules that were successfully updated.
- Parameters:
successful- The rules that were successfully updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
successful
BatchUpdateRuleResponse.Builder successful(RuleUpdateSuccess... successful)
The rules that were successfully updated.
- Parameters:
successful- The rules that were successfully updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
successful
BatchUpdateRuleResponse.Builder successful(Consumer<RuleUpdateSuccess.Builder>... successful)
The rules that were successfully updated.
This is a convenience method that creates an instance of theRuleUpdateSuccess.Builderavoiding the need to create one manually viaRuleUpdateSuccess.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#successful(List.) - Parameters:
successful- a consumer that will call methods onRuleUpdateSuccess.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#successful(java.util.Collection)
-
unsuccessful
BatchUpdateRuleResponse.Builder unsuccessful(Collection<RuleUpdateFailure> unsuccessful)
The rules that the operation couldn't update.
- Parameters:
unsuccessful- The rules that the operation couldn't update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unsuccessful
BatchUpdateRuleResponse.Builder unsuccessful(RuleUpdateFailure... unsuccessful)
The rules that the operation couldn't update.
- Parameters:
unsuccessful- The rules that the operation couldn't update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unsuccessful
BatchUpdateRuleResponse.Builder unsuccessful(Consumer<RuleUpdateFailure.Builder>... unsuccessful)
The rules that the operation couldn't update.
This is a convenience method that creates an instance of theRuleUpdateFailure.Builderavoiding the need to create one manually viaRuleUpdateFailure.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#unsuccessful(List.) - Parameters:
unsuccessful- a consumer that will call methods onRuleUpdateFailure.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#unsuccessful(java.util.Collection)
-
-