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

com.amazonaws.services.securityhub.model.AwsElasticsearchDomainDomainEndpointOptions Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2016-2021 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.securityhub.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Additional options for the domain endpoint, such as whether to require HTTPS for all traffic. *

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

* Whether to require that all traffic to the domain arrive over HTTPS. *

*/ private Boolean enforceHTTPS; /** *

* The TLS security policy to apply to the HTTPS endpoint of the Elasticsearch domain. *

*

* Valid values: *

*
    *
  • *

    * Policy-Min-TLS-1-0-2019-07, which supports TLSv1.0 and higher *

    *
  • *
  • *

    * Policy-Min-TLS-1-2-2019-07, which only supports TLSv1.2 *

    *
  • *
*/ private String tLSSecurityPolicy; /** *

* Whether to require that all traffic to the domain arrive over HTTPS. *

* * @param enforceHTTPS * Whether to require that all traffic to the domain arrive over HTTPS. */ public void setEnforceHTTPS(Boolean enforceHTTPS) { this.enforceHTTPS = enforceHTTPS; } /** *

* Whether to require that all traffic to the domain arrive over HTTPS. *

* * @return Whether to require that all traffic to the domain arrive over HTTPS. */ public Boolean getEnforceHTTPS() { return this.enforceHTTPS; } /** *

* Whether to require that all traffic to the domain arrive over HTTPS. *

* * @param enforceHTTPS * Whether to require that all traffic to the domain arrive over HTTPS. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsElasticsearchDomainDomainEndpointOptions withEnforceHTTPS(Boolean enforceHTTPS) { setEnforceHTTPS(enforceHTTPS); return this; } /** *

* Whether to require that all traffic to the domain arrive over HTTPS. *

* * @return Whether to require that all traffic to the domain arrive over HTTPS. */ public Boolean isEnforceHTTPS() { return this.enforceHTTPS; } /** *

* The TLS security policy to apply to the HTTPS endpoint of the Elasticsearch domain. *

*

* Valid values: *

*
    *
  • *

    * Policy-Min-TLS-1-0-2019-07, which supports TLSv1.0 and higher *

    *
  • *
  • *

    * Policy-Min-TLS-1-2-2019-07, which only supports TLSv1.2 *

    *
  • *
* * @param tLSSecurityPolicy * The TLS security policy to apply to the HTTPS endpoint of the Elasticsearch domain.

*

* Valid values: *

*
    *
  • *

    * Policy-Min-TLS-1-0-2019-07, which supports TLSv1.0 and higher *

    *
  • *
  • *

    * Policy-Min-TLS-1-2-2019-07, which only supports TLSv1.2 *

    *
  • */ public void setTLSSecurityPolicy(String tLSSecurityPolicy) { this.tLSSecurityPolicy = tLSSecurityPolicy; } /** *

    * The TLS security policy to apply to the HTTPS endpoint of the Elasticsearch domain. *

    *

    * Valid values: *

    *
      *
    • *

      * Policy-Min-TLS-1-0-2019-07, which supports TLSv1.0 and higher *

      *
    • *
    • *

      * Policy-Min-TLS-1-2-2019-07, which only supports TLSv1.2 *

      *
    • *
    * * @return The TLS security policy to apply to the HTTPS endpoint of the Elasticsearch domain.

    *

    * Valid values: *

    *
      *
    • *

      * Policy-Min-TLS-1-0-2019-07, which supports TLSv1.0 and higher *

      *
    • *
    • *

      * Policy-Min-TLS-1-2-2019-07, which only supports TLSv1.2 *

      *
    • */ public String getTLSSecurityPolicy() { return this.tLSSecurityPolicy; } /** *

      * The TLS security policy to apply to the HTTPS endpoint of the Elasticsearch domain. *

      *

      * Valid values: *

      *
        *
      • *

        * Policy-Min-TLS-1-0-2019-07, which supports TLSv1.0 and higher *

        *
      • *
      • *

        * Policy-Min-TLS-1-2-2019-07, which only supports TLSv1.2 *

        *
      • *
      * * @param tLSSecurityPolicy * The TLS security policy to apply to the HTTPS endpoint of the Elasticsearch domain.

      *

      * Valid values: *

      *
        *
      • *

        * Policy-Min-TLS-1-0-2019-07, which supports TLSv1.0 and higher *

        *
      • *
      • *

        * Policy-Min-TLS-1-2-2019-07, which only supports TLSv1.2 *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. */ public AwsElasticsearchDomainDomainEndpointOptions withTLSSecurityPolicy(String tLSSecurityPolicy) { setTLSSecurityPolicy(tLSSecurityPolicy); 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 AwsElasticsearchDomainDomainEndpointOptions == false) return false; AwsElasticsearchDomainDomainEndpointOptions other = (AwsElasticsearchDomainDomainEndpointOptions) 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 AwsElasticsearchDomainDomainEndpointOptions clone() { try { return (AwsElasticsearchDomainDomainEndpointOptions) 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.securityhub.model.transform.AwsElasticsearchDomainDomainEndpointOptionsMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy