Interface DeleteNotificationRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,BudgetsRequest.Builder,Buildable,CopyableBuilder<DeleteNotificationRequest.Builder,DeleteNotificationRequest>,SdkBuilder<DeleteNotificationRequest.Builder,DeleteNotificationRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- DeleteNotificationRequest
public static interface DeleteNotificationRequest.Builder extends BudgetsRequest.Builder, SdkPojo, CopyableBuilder<DeleteNotificationRequest.Builder,DeleteNotificationRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DeleteNotificationRequest.BuilderaccountId(String accountId)TheaccountIdthat is associated with the budget whose notification you want to delete.DeleteNotificationRequest.BuilderbudgetName(String budgetName)The name of the budget whose notification you want to delete.default DeleteNotificationRequest.Buildernotification(Consumer<Notification.Builder> notification)The notification that you want to delete.DeleteNotificationRequest.Buildernotification(Notification notification)The notification that you want to delete.DeleteNotificationRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)DeleteNotificationRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.budgets.model.BudgetsRequest.Builder
build
-
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
-
accountId
DeleteNotificationRequest.Builder accountId(String accountId)
The
accountIdthat is associated with the budget whose notification you want to delete.- Parameters:
accountId- TheaccountIdthat is associated with the budget whose notification you want to delete.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
budgetName
DeleteNotificationRequest.Builder budgetName(String budgetName)
The name of the budget whose notification you want to delete.
- Parameters:
budgetName- The name of the budget whose notification you want to delete.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
notification
DeleteNotificationRequest.Builder notification(Notification notification)
The notification that you want to delete.
- Parameters:
notification- The notification that you want to delete.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
notification
default DeleteNotificationRequest.Builder notification(Consumer<Notification.Builder> notification)
The notification that you want to delete.
This is a convenience method that creates an instance of theNotification.Builderavoiding the need to create one manually viaNotification.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tonotification(Notification).- Parameters:
notification- a consumer that will call methods onNotification.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
notification(Notification)
-
overrideConfiguration
DeleteNotificationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
DeleteNotificationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-