/* * 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.iotevents.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Contains the configuration information of SMS notifications. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class SMSConfiguration implements Serializable, Cloneable, StructuredPojo { /** ** The sender ID. *
*/ private String senderId; /** ** The message that you want to send. The message can be up to 200 characters. *
*/ private String additionalMessage; /** ** Specifies one or more recipients who receive the message. *
** You must add the users that * receive SMS messages to your AWS SSO store. *
** The sender ID. *
* * @param senderId * The sender ID. */ public void setSenderId(String senderId) { this.senderId = senderId; } /** ** The sender ID. *
* * @return The sender ID. */ public String getSenderId() { return this.senderId; } /** ** The sender ID. *
* * @param senderId * The sender ID. * @return Returns a reference to this object so that method calls can be chained together. */ public SMSConfiguration withSenderId(String senderId) { setSenderId(senderId); return this; } /** ** The message that you want to send. The message can be up to 200 characters. *
* * @param additionalMessage * The message that you want to send. The message can be up to 200 characters. */ public void setAdditionalMessage(String additionalMessage) { this.additionalMessage = additionalMessage; } /** ** The message that you want to send. The message can be up to 200 characters. *
* * @return The message that you want to send. The message can be up to 200 characters. */ public String getAdditionalMessage() { return this.additionalMessage; } /** ** The message that you want to send. The message can be up to 200 characters. *
* * @param additionalMessage * The message that you want to send. The message can be up to 200 characters. * @return Returns a reference to this object so that method calls can be chained together. */ public SMSConfiguration withAdditionalMessage(String additionalMessage) { setAdditionalMessage(additionalMessage); return this; } /** ** Specifies one or more recipients who receive the message. *
** You must add the users that * receive SMS messages to your AWS SSO store. *
** You must add the users * that receive SMS messages to your AWS SSO store. *
*/ public java.util.List* Specifies one or more recipients who receive the message. *
** You must add the users that * receive SMS messages to your AWS SSO store. *
** You must add the users * that receive SMS messages to your AWS SSO store. *
*/ public void setRecipients(java.util.Collection* Specifies one or more recipients who receive the message. *
** You must add the users that * receive SMS messages to your AWS SSO store. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setRecipients(java.util.Collection)} or {@link #withRecipients(java.util.Collection)} if you want to * override the existing values. *
* * @param recipients * Specifies one or more recipients who receive the message.* You must add the users * that receive SMS messages to your AWS SSO store. *
* @return Returns a reference to this object so that method calls can be chained together. */ public SMSConfiguration withRecipients(RecipientDetail... recipients) { if (this.recipients == null) { setRecipients(new java.util.ArrayList* Specifies one or more recipients who receive the message. *
** You must add the users that * receive SMS messages to your AWS SSO store. *
** You must add the users * that receive SMS messages to your AWS SSO store. *
* @return Returns a reference to this object so that method calls can be chained together. */ public SMSConfiguration withRecipients(java.util.Collection