/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.budgets.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** *

* Request of CreateBudget *

*/ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateBudgetRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The accountId that is associated with the budget. *

*/ private String accountId; /** *

* The budget object that you want to create. *

*/ private Budget budget; /** *

* A notification that you want to associate with a budget. A budget can have up to five notifications, and each * notification can have one SNS subscriber and up to 10 email subscribers. If you include notifications and * subscribers in your CreateBudget call, Amazon Web Services creates the notifications and subscribers * for you. *

*/ private java.util.List notificationsWithSubscribers; /** *

* The accountId that is associated with the budget. *

* * @param accountId * The accountId that is associated with the budget. */ public void setAccountId(String accountId) { this.accountId = accountId; } /** *

* The accountId that is associated with the budget. *

* * @return The accountId that is associated with the budget. */ public String getAccountId() { return this.accountId; } /** *

* The accountId that is associated with the budget. *

* * @param accountId * The accountId that is associated with the budget. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateBudgetRequest withAccountId(String accountId) { setAccountId(accountId); return this; } /** *

* The budget object that you want to create. *

* * @param budget * The budget object that you want to create. */ public void setBudget(Budget budget) { this.budget = budget; } /** *

* The budget object that you want to create. *

* * @return The budget object that you want to create. */ public Budget getBudget() { return this.budget; } /** *

* The budget object that you want to create. *

* * @param budget * The budget object that you want to create. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateBudgetRequest withBudget(Budget budget) { setBudget(budget); return this; } /** *

* A notification that you want to associate with a budget. A budget can have up to five notifications, and each * notification can have one SNS subscriber and up to 10 email subscribers. If you include notifications and * subscribers in your CreateBudget call, Amazon Web Services creates the notifications and subscribers * for you. *

* * @return A notification that you want to associate with a budget. A budget can have up to five notifications, and * each notification can have one SNS subscriber and up to 10 email subscribers. If you include * notifications and subscribers in your CreateBudget call, Amazon Web Services creates the * notifications and subscribers for you. */ public java.util.List getNotificationsWithSubscribers() { return notificationsWithSubscribers; } /** *

* A notification that you want to associate with a budget. A budget can have up to five notifications, and each * notification can have one SNS subscriber and up to 10 email subscribers. If you include notifications and * subscribers in your CreateBudget call, Amazon Web Services creates the notifications and subscribers * for you. *

* * @param notificationsWithSubscribers * A notification that you want to associate with a budget. A budget can have up to five notifications, and * each notification can have one SNS subscriber and up to 10 email subscribers. If you include notifications * and subscribers in your CreateBudget call, Amazon Web Services creates the notifications and * subscribers for you. */ public void setNotificationsWithSubscribers(java.util.Collection notificationsWithSubscribers) { if (notificationsWithSubscribers == null) { this.notificationsWithSubscribers = null; return; } this.notificationsWithSubscribers = new java.util.ArrayList(notificationsWithSubscribers); } /** *

* A notification that you want to associate with a budget. A budget can have up to five notifications, and each * notification can have one SNS subscriber and up to 10 email subscribers. If you include notifications and * subscribers in your CreateBudget call, Amazon Web Services creates the notifications and subscribers * for you. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setNotificationsWithSubscribers(java.util.Collection)} or * {@link #withNotificationsWithSubscribers(java.util.Collection)} if you want to override the existing values. *

* * @param notificationsWithSubscribers * A notification that you want to associate with a budget. A budget can have up to five notifications, and * each notification can have one SNS subscriber and up to 10 email subscribers. If you include notifications * and subscribers in your CreateBudget call, Amazon Web Services creates the notifications and * subscribers for you. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateBudgetRequest withNotificationsWithSubscribers(NotificationWithSubscribers... notificationsWithSubscribers) { if (this.notificationsWithSubscribers == null) { setNotificationsWithSubscribers(new java.util.ArrayList(notificationsWithSubscribers.length)); } for (NotificationWithSubscribers ele : notificationsWithSubscribers) { this.notificationsWithSubscribers.add(ele); } return this; } /** *

* A notification that you want to associate with a budget. A budget can have up to five notifications, and each * notification can have one SNS subscriber and up to 10 email subscribers. If you include notifications and * subscribers in your CreateBudget call, Amazon Web Services creates the notifications and subscribers * for you. *

* * @param notificationsWithSubscribers * A notification that you want to associate with a budget. A budget can have up to five notifications, and * each notification can have one SNS subscriber and up to 10 email subscribers. If you include notifications * and subscribers in your CreateBudget call, Amazon Web Services creates the notifications and * subscribers for you. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateBudgetRequest withNotificationsWithSubscribers(java.util.Collection notificationsWithSubscribers) { setNotificationsWithSubscribers(notificationsWithSubscribers); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getAccountId() != null) sb.append("AccountId: ").append(getAccountId()).append(","); if (getBudget() != null) sb.append("Budget: ").append(getBudget()).append(","); if (getNotificationsWithSubscribers() != null) sb.append("NotificationsWithSubscribers: ").append(getNotificationsWithSubscribers()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateBudgetRequest == false) return false; CreateBudgetRequest other = (CreateBudgetRequest) obj; if (other.getAccountId() == null ^ this.getAccountId() == null) return false; if (other.getAccountId() != null && other.getAccountId().equals(this.getAccountId()) == false) return false; if (other.getBudget() == null ^ this.getBudget() == null) return false; if (other.getBudget() != null && other.getBudget().equals(this.getBudget()) == false) return false; if (other.getNotificationsWithSubscribers() == null ^ this.getNotificationsWithSubscribers() == null) return false; if (other.getNotificationsWithSubscribers() != null && other.getNotificationsWithSubscribers().equals(this.getNotificationsWithSubscribers()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAccountId() == null) ? 0 : getAccountId().hashCode()); hashCode = prime * hashCode + ((getBudget() == null) ? 0 : getBudget().hashCode()); hashCode = prime * hashCode + ((getNotificationsWithSubscribers() == null) ? 0 : getNotificationsWithSubscribers().hashCode()); return hashCode; } @Override public CreateBudgetRequest clone() { return (CreateBudgetRequest) super.clone(); } }