/* * Copyright 2010-2020 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.simpleemail.model; import java.io.Serializable; import com.amazonaws.AmazonWebServiceRequest; /** *

* Adds or updates the delivery options for a configuration set. *

*/ public class PutConfigurationSetDeliveryOptionsRequest extends AmazonWebServiceRequest implements Serializable { /** *

* The name of the configuration set that you want to specify the delivery * options for. *

*/ private String configurationSetName; /** *

* Specifies whether messages that use the configuration set are required to * use Transport Layer Security (TLS). *

*/ private DeliveryOptions deliveryOptions; /** *

* The name of the configuration set that you want to specify the delivery * options for. *

* * @return

* The name of the configuration set that you want to specify the * delivery options for. *

*/ public String getConfigurationSetName() { return configurationSetName; } /** *

* The name of the configuration set that you want to specify the delivery * options for. *

* * @param configurationSetName

* The name of the configuration set that you want to specify the * delivery options for. *

*/ public void setConfigurationSetName(String configurationSetName) { this.configurationSetName = configurationSetName; } /** *

* The name of the configuration set that you want to specify the delivery * options for. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param configurationSetName

* The name of the configuration set that you want to specify the * delivery options for. *

* @return A reference to this updated object so that method calls can be * chained together. */ public PutConfigurationSetDeliveryOptionsRequest withConfigurationSetName( String configurationSetName) { this.configurationSetName = configurationSetName; return this; } /** *

* Specifies whether messages that use the configuration set are required to * use Transport Layer Security (TLS). *

* * @return

* Specifies whether messages that use the configuration set are * required to use Transport Layer Security (TLS). *

*/ public DeliveryOptions getDeliveryOptions() { return deliveryOptions; } /** *

* Specifies whether messages that use the configuration set are required to * use Transport Layer Security (TLS). *

* * @param deliveryOptions

* Specifies whether messages that use the configuration set are * required to use Transport Layer Security (TLS). *

*/ public void setDeliveryOptions(DeliveryOptions deliveryOptions) { this.deliveryOptions = deliveryOptions; } /** *

* Specifies whether messages that use the configuration set are required to * use Transport Layer Security (TLS). *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param deliveryOptions

* Specifies whether messages that use the configuration set are * required to use Transport Layer Security (TLS). *

* @return A reference to this updated object so that method calls can be * chained together. */ public PutConfigurationSetDeliveryOptionsRequest withDeliveryOptions( DeliveryOptions deliveryOptions) { this.deliveryOptions = deliveryOptions; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getConfigurationSetName() != null) sb.append("ConfigurationSetName: " + getConfigurationSetName() + ","); if (getDeliveryOptions() != null) sb.append("DeliveryOptions: " + getDeliveryOptions()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getConfigurationSetName() == null) ? 0 : getConfigurationSetName().hashCode()); hashCode = prime * hashCode + ((getDeliveryOptions() == null) ? 0 : getDeliveryOptions().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof PutConfigurationSetDeliveryOptionsRequest == false) return false; PutConfigurationSetDeliveryOptionsRequest other = (PutConfigurationSetDeliveryOptionsRequest) obj; if (other.getConfigurationSetName() == null ^ this.getConfigurationSetName() == null) return false; if (other.getConfigurationSetName() != null && other.getConfigurationSetName().equals(this.getConfigurationSetName()) == false) return false; if (other.getDeliveryOptions() == null ^ this.getDeliveryOptions() == null) return false; if (other.getDeliveryOptions() != null && other.getDeliveryOptions().equals(this.getDeliveryOptions()) == false) return false; return true; } }