/* * 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 email notifications. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class EmailConfiguration implements Serializable, Cloneable, StructuredPojo { /** ** The email address that sends emails. *
** If you use the AWS IoT Events managed AWS Lambda function to manage your emails, you must verify the email address * that sends emails in Amazon SES. *
** Contains the subject and message of an email. *
*/ private EmailContent content; /** ** Contains the information of one or more recipients who receive the emails. *
** You must add the users that * receive emails to your AWS SSO store. *
** The email address that sends emails. *
** If you use the AWS IoT Events managed AWS Lambda function to manage your emails, you must verify the email address * that sends emails in Amazon SES. *
** If you use the AWS IoT Events managed AWS Lambda function to manage your emails, you must verify the email * address that sends emails in Amazon SES. *
*/ public void setFrom(String from) { this.from = from; } /** ** The email address that sends emails. *
** If you use the AWS IoT Events managed AWS Lambda function to manage your emails, you must verify the email address * that sends emails in Amazon SES. *
** If you use the AWS IoT Events managed AWS Lambda function to manage your emails, you must verify the email * address that sends emails in Amazon SES. *
*/ public String getFrom() { return this.from; } /** ** The email address that sends emails. *
** If you use the AWS IoT Events managed AWS Lambda function to manage your emails, you must verify the email address * that sends emails in Amazon SES. *
** If you use the AWS IoT Events managed AWS Lambda function to manage your emails, you must verify the email * address that sends emails in Amazon SES. *
* @return Returns a reference to this object so that method calls can be chained together. */ public EmailConfiguration withFrom(String from) { setFrom(from); return this; } /** ** Contains the subject and message of an email. *
* * @param content * Contains the subject and message of an email. */ public void setContent(EmailContent content) { this.content = content; } /** ** Contains the subject and message of an email. *
* * @return Contains the subject and message of an email. */ public EmailContent getContent() { return this.content; } /** ** Contains the subject and message of an email. *
* * @param content * Contains the subject and message of an email. * @return Returns a reference to this object so that method calls can be chained together. */ public EmailConfiguration withContent(EmailContent content) { setContent(content); return this; } /** ** Contains the information of one or more recipients who receive the emails. *
** You must add the users that * receive emails to your AWS SSO store. *
** You must add the users * that receive emails to your AWS SSO store. *
*/ public void setRecipients(EmailRecipients recipients) { this.recipients = recipients; } /** ** Contains the information of one or more recipients who receive the emails. *
** You must add the users that * receive emails to your AWS SSO store. *
** You must add the users * that receive emails to your AWS SSO store. *
*/ public EmailRecipients getRecipients() { return this.recipients; } /** ** Contains the information of one or more recipients who receive the emails. *
** You must add the users that * receive emails to your AWS SSO store. *
** You must add the users * that receive emails to your AWS SSO store. *
* @return Returns a reference to this object so that method calls can be chained together. */ public EmailConfiguration withRecipients(EmailRecipients recipients) { setRecipients(recipients); 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 (getFrom() != null) sb.append("From: ").append(getFrom()).append(","); if (getContent() != null) sb.append("Content: ").append(getContent()).append(","); if (getRecipients() != null) sb.append("Recipients: ").append(getRecipients()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof EmailConfiguration == false) return false; EmailConfiguration other = (EmailConfiguration) obj; if (other.getFrom() == null ^ this.getFrom() == null) return false; if (other.getFrom() != null && other.getFrom().equals(this.getFrom()) == false) return false; if (other.getContent() == null ^ this.getContent() == null) return false; if (other.getContent() != null && other.getContent().equals(this.getContent()) == false) return false; if (other.getRecipients() == null ^ this.getRecipients() == null) return false; if (other.getRecipients() != null && other.getRecipients().equals(this.getRecipients()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getFrom() == null) ? 0 : getFrom().hashCode()); hashCode = prime * hashCode + ((getContent() == null) ? 0 : getContent().hashCode()); hashCode = prime * hashCode + ((getRecipients() == null) ? 0 : getRecipients().hashCode()); return hashCode; } @Override public EmailConfiguration clone() { try { return (EmailConfiguration) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.iotevents.model.transform.EmailConfigurationMarshaller.getInstance().marshall(this, protocolMarshaller); } }