com.amazonaws.services.cloudsearchv2.model.DomainEndpointOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-cloudsearch Show documentation
Show all versions of aws-java-sdk-cloudsearch Show documentation
The AWS Java SDK for Amazon CloudSearch module holds the client classes that are used for communicating with Amazon CloudSearch Service
/*
* Copyright 2019-2024 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.cloudsearchv2.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* The domain's endpoint options.
*
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class DomainEndpointOptions implements Serializable, Cloneable {
/**
*
* Whether the domain is HTTPS only enabled.
*
*/
private Boolean enforceHTTPS;
/**
*
* The minimum required TLS version
*
*/
private String tLSSecurityPolicy;
/**
*
* Whether the domain is HTTPS only enabled.
*
*
* @param enforceHTTPS
* Whether the domain is HTTPS only enabled.
*/
public void setEnforceHTTPS(Boolean enforceHTTPS) {
this.enforceHTTPS = enforceHTTPS;
}
/**
*
* Whether the domain is HTTPS only enabled.
*
*
* @return Whether the domain is HTTPS only enabled.
*/
public Boolean getEnforceHTTPS() {
return this.enforceHTTPS;
}
/**
*
* Whether the domain is HTTPS only enabled.
*
*
* @param enforceHTTPS
* Whether the domain is HTTPS only enabled.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DomainEndpointOptions withEnforceHTTPS(Boolean enforceHTTPS) {
setEnforceHTTPS(enforceHTTPS);
return this;
}
/**
*
* Whether the domain is HTTPS only enabled.
*
*
* @return Whether the domain is HTTPS only enabled.
*/
public Boolean isEnforceHTTPS() {
return this.enforceHTTPS;
}
/**
*
* The minimum required TLS version
*
*
* @param tLSSecurityPolicy
* The minimum required TLS version
* @see TLSSecurityPolicy
*/
public void setTLSSecurityPolicy(String tLSSecurityPolicy) {
this.tLSSecurityPolicy = tLSSecurityPolicy;
}
/**
*
* The minimum required TLS version
*
*
* @return The minimum required TLS version
* @see TLSSecurityPolicy
*/
public String getTLSSecurityPolicy() {
return this.tLSSecurityPolicy;
}
/**
*
* The minimum required TLS version
*
*
* @param tLSSecurityPolicy
* The minimum required TLS version
* @return Returns a reference to this object so that method calls can be chained together.
* @see TLSSecurityPolicy
*/
public DomainEndpointOptions withTLSSecurityPolicy(String tLSSecurityPolicy) {
setTLSSecurityPolicy(tLSSecurityPolicy);
return this;
}
/**
*
* The minimum required TLS version
*
*
* @param tLSSecurityPolicy
* The minimum required TLS version
* @see TLSSecurityPolicy
*/
public void setTLSSecurityPolicy(TLSSecurityPolicy tLSSecurityPolicy) {
withTLSSecurityPolicy(tLSSecurityPolicy);
}
/**
*
* The minimum required TLS version
*
*
* @param tLSSecurityPolicy
* The minimum required TLS version
* @return Returns a reference to this object so that method calls can be chained together.
* @see TLSSecurityPolicy
*/
public DomainEndpointOptions withTLSSecurityPolicy(TLSSecurityPolicy tLSSecurityPolicy) {
this.tLSSecurityPolicy = tLSSecurityPolicy.toString();
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 (getEnforceHTTPS() != null)
sb.append("EnforceHTTPS: ").append(getEnforceHTTPS()).append(",");
if (getTLSSecurityPolicy() != null)
sb.append("TLSSecurityPolicy: ").append(getTLSSecurityPolicy());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof DomainEndpointOptions == false)
return false;
DomainEndpointOptions other = (DomainEndpointOptions) obj;
if (other.getEnforceHTTPS() == null ^ this.getEnforceHTTPS() == null)
return false;
if (other.getEnforceHTTPS() != null && other.getEnforceHTTPS().equals(this.getEnforceHTTPS()) == false)
return false;
if (other.getTLSSecurityPolicy() == null ^ this.getTLSSecurityPolicy() == null)
return false;
if (other.getTLSSecurityPolicy() != null && other.getTLSSecurityPolicy().equals(this.getTLSSecurityPolicy()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getEnforceHTTPS() == null) ? 0 : getEnforceHTTPS().hashCode());
hashCode = prime * hashCode + ((getTLSSecurityPolicy() == null) ? 0 : getTLSSecurityPolicy().hashCode());
return hashCode;
}
@Override
public DomainEndpointOptions clone() {
try {
return (DomainEndpointOptions) 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