Interface UpdateBudgetActionResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,BudgetsResponse.Builder,Buildable,CopyableBuilder<UpdateBudgetActionResponse.Builder,UpdateBudgetActionResponse>,SdkBuilder<UpdateBudgetActionResponse.Builder,UpdateBudgetActionResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- UpdateBudgetActionResponse
public static interface UpdateBudgetActionResponse.Builder extends BudgetsResponse.Builder, SdkPojo, CopyableBuilder<UpdateBudgetActionResponse.Builder,UpdateBudgetActionResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateBudgetActionResponse.BuilderaccountId(String accountId)Sets the value of the AccountId property for this object.UpdateBudgetActionResponse.BuilderbudgetName(String budgetName)Sets the value of the BudgetName property for this object.default UpdateBudgetActionResponse.BuildernewAction(Consumer<Action.Builder> newAction)The updated action resource information.UpdateBudgetActionResponse.BuildernewAction(Action newAction)The updated action resource information.default UpdateBudgetActionResponse.BuilderoldAction(Consumer<Action.Builder> oldAction)The previous action resource information.UpdateBudgetActionResponse.BuilderoldAction(Action oldAction)The previous action resource information.-
Methods inherited from interface software.amazon.awssdk.services.budgets.model.BudgetsResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
accountId
UpdateBudgetActionResponse.Builder accountId(String accountId)
Sets the value of the AccountId property for this object.- Parameters:
accountId- The new value for the AccountId property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
budgetName
UpdateBudgetActionResponse.Builder budgetName(String budgetName)
Sets the value of the BudgetName property for this object.- Parameters:
budgetName- The new value for the BudgetName property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
oldAction
UpdateBudgetActionResponse.Builder oldAction(Action oldAction)
The previous action resource information.
- Parameters:
oldAction- The previous action resource information.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
oldAction
default UpdateBudgetActionResponse.Builder oldAction(Consumer<Action.Builder> oldAction)
The previous action resource information.
This is a convenience method that creates an instance of theAction.Builderavoiding the need to create one manually viaAction.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tooldAction(Action).- Parameters:
oldAction- a consumer that will call methods onAction.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
oldAction(Action)
-
newAction
UpdateBudgetActionResponse.Builder newAction(Action newAction)
The updated action resource information.
- Parameters:
newAction- The updated action resource information.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
newAction
default UpdateBudgetActionResponse.Builder newAction(Consumer<Action.Builder> newAction)
The updated action resource information.
This is a convenience method that creates an instance of theAction.Builderavoiding the need to create one manually viaAction.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tonewAction(Action).- Parameters:
newAction- a consumer that will call methods onAction.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
newAction(Action)
-
-