All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.simpleemailv2.model.CreateEmailIdentityResult Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Simple Email module holds the client classes that are used for communicating with Amazon Simple Email Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2017-2022 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.simpleemailv2.model;

import java.io.Serializable;
import javax.annotation.Generated;

/**
 * 

* If the email identity is a domain, this object contains information about the DKIM verification status for the * domain. *

*

* If the email identity is an email address, this object is empty. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateEmailIdentityResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable { /** *

* The email identity type. Note: the MANAGED_DOMAIN identity type is not supported. *

*/ private String identityType; /** *

* Specifies whether or not the identity is verified. You can only send email from verified email addresses or * domains. For more information about verifying identities, see the Amazon Pinpoint * User Guide. *

*/ private Boolean verifiedForSendingStatus; /** *

* An object that contains information about the DKIM attributes for the identity. *

*/ private DkimAttributes dkimAttributes; /** *

* The email identity type. Note: the MANAGED_DOMAIN identity type is not supported. *

* * @param identityType * The email identity type. Note: the MANAGED_DOMAIN identity type is not supported. * @see IdentityType */ public void setIdentityType(String identityType) { this.identityType = identityType; } /** *

* The email identity type. Note: the MANAGED_DOMAIN identity type is not supported. *

* * @return The email identity type. Note: the MANAGED_DOMAIN identity type is not supported. * @see IdentityType */ public String getIdentityType() { return this.identityType; } /** *

* The email identity type. Note: the MANAGED_DOMAIN identity type is not supported. *

* * @param identityType * The email identity type. Note: the MANAGED_DOMAIN identity type is not supported. * @return Returns a reference to this object so that method calls can be chained together. * @see IdentityType */ public CreateEmailIdentityResult withIdentityType(String identityType) { setIdentityType(identityType); return this; } /** *

* The email identity type. Note: the MANAGED_DOMAIN identity type is not supported. *

* * @param identityType * The email identity type. Note: the MANAGED_DOMAIN identity type is not supported. * @return Returns a reference to this object so that method calls can be chained together. * @see IdentityType */ public CreateEmailIdentityResult withIdentityType(IdentityType identityType) { this.identityType = identityType.toString(); return this; } /** *

* Specifies whether or not the identity is verified. You can only send email from verified email addresses or * domains. For more information about verifying identities, see the Amazon Pinpoint * User Guide. *

* * @param verifiedForSendingStatus * Specifies whether or not the identity is verified. You can only send email from verified email addresses * or domains. For more information about verifying identities, see the Amazon * Pinpoint User Guide. */ public void setVerifiedForSendingStatus(Boolean verifiedForSendingStatus) { this.verifiedForSendingStatus = verifiedForSendingStatus; } /** *

* Specifies whether or not the identity is verified. You can only send email from verified email addresses or * domains. For more information about verifying identities, see the Amazon Pinpoint * User Guide. *

* * @return Specifies whether or not the identity is verified. You can only send email from verified email addresses * or domains. For more information about verifying identities, see the Amazon * Pinpoint User Guide. */ public Boolean getVerifiedForSendingStatus() { return this.verifiedForSendingStatus; } /** *

* Specifies whether or not the identity is verified. You can only send email from verified email addresses or * domains. For more information about verifying identities, see the Amazon Pinpoint * User Guide. *

* * @param verifiedForSendingStatus * Specifies whether or not the identity is verified. You can only send email from verified email addresses * or domains. For more information about verifying identities, see the Amazon * Pinpoint User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateEmailIdentityResult withVerifiedForSendingStatus(Boolean verifiedForSendingStatus) { setVerifiedForSendingStatus(verifiedForSendingStatus); return this; } /** *

* Specifies whether or not the identity is verified. You can only send email from verified email addresses or * domains. For more information about verifying identities, see the Amazon Pinpoint * User Guide. *

* * @return Specifies whether or not the identity is verified. You can only send email from verified email addresses * or domains. For more information about verifying identities, see the Amazon * Pinpoint User Guide. */ public Boolean isVerifiedForSendingStatus() { return this.verifiedForSendingStatus; } /** *

* An object that contains information about the DKIM attributes for the identity. *

* * @param dkimAttributes * An object that contains information about the DKIM attributes for the identity. */ public void setDkimAttributes(DkimAttributes dkimAttributes) { this.dkimAttributes = dkimAttributes; } /** *

* An object that contains information about the DKIM attributes for the identity. *

* * @return An object that contains information about the DKIM attributes for the identity. */ public DkimAttributes getDkimAttributes() { return this.dkimAttributes; } /** *

* An object that contains information about the DKIM attributes for the identity. *

* * @param dkimAttributes * An object that contains information about the DKIM attributes for the identity. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateEmailIdentityResult withDkimAttributes(DkimAttributes dkimAttributes) { setDkimAttributes(dkimAttributes); 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 (getIdentityType() != null) sb.append("IdentityType: ").append(getIdentityType()).append(","); if (getVerifiedForSendingStatus() != null) sb.append("VerifiedForSendingStatus: ").append(getVerifiedForSendingStatus()).append(","); if (getDkimAttributes() != null) sb.append("DkimAttributes: ").append(getDkimAttributes()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateEmailIdentityResult == false) return false; CreateEmailIdentityResult other = (CreateEmailIdentityResult) obj; if (other.getIdentityType() == null ^ this.getIdentityType() == null) return false; if (other.getIdentityType() != null && other.getIdentityType().equals(this.getIdentityType()) == false) return false; if (other.getVerifiedForSendingStatus() == null ^ this.getVerifiedForSendingStatus() == null) return false; if (other.getVerifiedForSendingStatus() != null && other.getVerifiedForSendingStatus().equals(this.getVerifiedForSendingStatus()) == false) return false; if (other.getDkimAttributes() == null ^ this.getDkimAttributes() == null) return false; if (other.getDkimAttributes() != null && other.getDkimAttributes().equals(this.getDkimAttributes()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getIdentityType() == null) ? 0 : getIdentityType().hashCode()); hashCode = prime * hashCode + ((getVerifiedForSendingStatus() == null) ? 0 : getVerifiedForSendingStatus().hashCode()); hashCode = prime * hashCode + ((getDkimAttributes() == null) ? 0 : getDkimAttributes().hashCode()); return hashCode; } @Override public CreateEmailIdentityResult clone() { try { return (CreateEmailIdentityResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy