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
Modifier and TypeMethodDescriptionTheaccountId
that is associated with the budget whose notification you want to delete.budgetName
(String budgetName) The name of the budget whose notification you want to delete.notification
(Consumer<Notification.Builder> notification) The notification that you want to delete.notification
(Notification notification) The notification that you want to delete.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.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, sdkFields
-
Method Details
-
accountId
The
accountId
that is associated with the budget whose notification you want to delete.- Parameters:
accountId
- TheaccountId
that 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
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
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
The notification that you want to delete.
This is a convenience method that creates an instance of theNotification.Builder
avoiding the need to create one manually viaNotification.builder()
.When the
Consumer
completes,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:
-
overrideConfiguration
DeleteNotificationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
DeleteNotificationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-