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

com.amazonaws.services.ec2.model.InstanceMetadataDefaultsResponse Maven / Gradle / Ivy

Go to download

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

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

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

/**
 * 

* The default instance metadata service (IMDS) settings that were set at the account level in the specified Amazon Web * Services
 Region. *

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

* Indicates whether IMDSv2 is required. *

*
    *
  • *

    * optional – IMDSv2 is optional, which means that you can use either IMDSv2 or IMDSv1. *

    *
  • *
  • *

    * required – IMDSv2 is required, which means that IMDSv1 is disabled, and you must use IMDSv2. *

    *
  • *
*/ private String httpTokens; /** *

* The maximum number of hops that the metadata token can travel. *

*/ private Integer httpPutResponseHopLimit; /** *

* Indicates whether the IMDS endpoint for an instance is enabled or disabled. When disabled, the instance metadata * can't be accessed. *

*/ private String httpEndpoint; /** *

* Indicates whether access to instance tags from the instance metadata is enabled or disabled. For more * information, see Work with * instance tags using the instance metadata in the Amazon EC2 User Guide. *

*/ private String instanceMetadataTags; /** *

* Indicates whether IMDSv2 is required. *

*
    *
  • *

    * optional – IMDSv2 is optional, which means that you can use either IMDSv2 or IMDSv1. *

    *
  • *
  • *

    * required – IMDSv2 is required, which means that IMDSv1 is disabled, and you must use IMDSv2. *

    *
  • *
* * @param httpTokens * Indicates whether IMDSv2 is required.

*
    *
  • *

    * optional – IMDSv2 is optional, which means that you can use either IMDSv2 or IMDSv1. *

    *
  • *
  • *

    * required – IMDSv2 is required, which means that IMDSv1 is disabled, and you must use IMDSv2. *

    *
  • * @see HttpTokensState */ public void setHttpTokens(String httpTokens) { this.httpTokens = httpTokens; } /** *

    * Indicates whether IMDSv2 is required. *

    *
      *
    • *

      * optional – IMDSv2 is optional, which means that you can use either IMDSv2 or IMDSv1. *

      *
    • *
    • *

      * required – IMDSv2 is required, which means that IMDSv1 is disabled, and you must use IMDSv2. *

      *
    • *
    * * @return Indicates whether IMDSv2 is required.

    *
      *
    • *

      * optional – IMDSv2 is optional, which means that you can use either IMDSv2 or IMDSv1. *

      *
    • *
    • *

      * required – IMDSv2 is required, which means that IMDSv1 is disabled, and you must use IMDSv2. *

      *
    • * @see HttpTokensState */ public String getHttpTokens() { return this.httpTokens; } /** *

      * Indicates whether IMDSv2 is required. *

      *
        *
      • *

        * optional – IMDSv2 is optional, which means that you can use either IMDSv2 or IMDSv1. *

        *
      • *
      • *

        * required – IMDSv2 is required, which means that IMDSv1 is disabled, and you must use IMDSv2. *

        *
      • *
      * * @param httpTokens * Indicates whether IMDSv2 is required.

      *
        *
      • *

        * optional – IMDSv2 is optional, which means that you can use either IMDSv2 or IMDSv1. *

        *
      • *
      • *

        * required – IMDSv2 is required, which means that IMDSv1 is disabled, and you must use IMDSv2. *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. * @see HttpTokensState */ public InstanceMetadataDefaultsResponse withHttpTokens(String httpTokens) { setHttpTokens(httpTokens); return this; } /** *

        * Indicates whether IMDSv2 is required. *

        *
          *
        • *

          * optional – IMDSv2 is optional, which means that you can use either IMDSv2 or IMDSv1. *

          *
        • *
        • *

          * required – IMDSv2 is required, which means that IMDSv1 is disabled, and you must use IMDSv2. *

          *
        • *
        * * @param httpTokens * Indicates whether IMDSv2 is required.

        *
          *
        • *

          * optional – IMDSv2 is optional, which means that you can use either IMDSv2 or IMDSv1. *

          *
        • *
        • *

          * required – IMDSv2 is required, which means that IMDSv1 is disabled, and you must use IMDSv2. *

          *
        • * @return Returns a reference to this object so that method calls can be chained together. * @see HttpTokensState */ public InstanceMetadataDefaultsResponse withHttpTokens(HttpTokensState httpTokens) { this.httpTokens = httpTokens.toString(); return this; } /** *

          * The maximum number of hops that the metadata token can travel. *

          * * @param httpPutResponseHopLimit * The maximum number of hops that the metadata token can travel. */ public void setHttpPutResponseHopLimit(Integer httpPutResponseHopLimit) { this.httpPutResponseHopLimit = httpPutResponseHopLimit; } /** *

          * The maximum number of hops that the metadata token can travel. *

          * * @return The maximum number of hops that the metadata token can travel. */ public Integer getHttpPutResponseHopLimit() { return this.httpPutResponseHopLimit; } /** *

          * The maximum number of hops that the metadata token can travel. *

          * * @param httpPutResponseHopLimit * The maximum number of hops that the metadata token can travel. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceMetadataDefaultsResponse withHttpPutResponseHopLimit(Integer httpPutResponseHopLimit) { setHttpPutResponseHopLimit(httpPutResponseHopLimit); return this; } /** *

          * Indicates whether the IMDS endpoint for an instance is enabled or disabled. When disabled, the instance metadata * can't be accessed. *

          * * @param httpEndpoint * Indicates whether the IMDS endpoint for an instance is enabled or disabled. When disabled, the instance * metadata can't be accessed. * @see InstanceMetadataEndpointState */ public void setHttpEndpoint(String httpEndpoint) { this.httpEndpoint = httpEndpoint; } /** *

          * Indicates whether the IMDS endpoint for an instance is enabled or disabled. When disabled, the instance metadata * can't be accessed. *

          * * @return Indicates whether the IMDS endpoint for an instance is enabled or disabled. When disabled, the instance * metadata can't be accessed. * @see InstanceMetadataEndpointState */ public String getHttpEndpoint() { return this.httpEndpoint; } /** *

          * Indicates whether the IMDS endpoint for an instance is enabled or disabled. When disabled, the instance metadata * can't be accessed. *

          * * @param httpEndpoint * Indicates whether the IMDS endpoint for an instance is enabled or disabled. When disabled, the instance * metadata can't be accessed. * @return Returns a reference to this object so that method calls can be chained together. * @see InstanceMetadataEndpointState */ public InstanceMetadataDefaultsResponse withHttpEndpoint(String httpEndpoint) { setHttpEndpoint(httpEndpoint); return this; } /** *

          * Indicates whether the IMDS endpoint for an instance is enabled or disabled. When disabled, the instance metadata * can't be accessed. *

          * * @param httpEndpoint * Indicates whether the IMDS endpoint for an instance is enabled or disabled. When disabled, the instance * metadata can't be accessed. * @return Returns a reference to this object so that method calls can be chained together. * @see InstanceMetadataEndpointState */ public InstanceMetadataDefaultsResponse withHttpEndpoint(InstanceMetadataEndpointState httpEndpoint) { this.httpEndpoint = httpEndpoint.toString(); return this; } /** *

          * Indicates whether access to instance tags from the instance metadata is enabled or disabled. For more * information, see Work with * instance tags using the instance metadata in the Amazon EC2 User Guide. *

          * * @param instanceMetadataTags * Indicates whether access to instance tags from the instance metadata is enabled or disabled. For more * information, see Work * with instance tags using the instance metadata in the Amazon EC2 User Guide. * @see InstanceMetadataTagsState */ public void setInstanceMetadataTags(String instanceMetadataTags) { this.instanceMetadataTags = instanceMetadataTags; } /** *

          * Indicates whether access to instance tags from the instance metadata is enabled or disabled. For more * information, see Work with * instance tags using the instance metadata in the Amazon EC2 User Guide. *

          * * @return Indicates whether access to instance tags from the instance metadata is enabled or disabled. For more * information, see Work * with instance tags using the instance metadata in the Amazon EC2 User Guide. * @see InstanceMetadataTagsState */ public String getInstanceMetadataTags() { return this.instanceMetadataTags; } /** *

          * Indicates whether access to instance tags from the instance metadata is enabled or disabled. For more * information, see Work with * instance tags using the instance metadata in the Amazon EC2 User Guide. *

          * * @param instanceMetadataTags * Indicates whether access to instance tags from the instance metadata is enabled or disabled. For more * information, see Work * with instance tags using the instance metadata in the Amazon EC2 User Guide. * @return Returns a reference to this object so that method calls can be chained together. * @see InstanceMetadataTagsState */ public InstanceMetadataDefaultsResponse withInstanceMetadataTags(String instanceMetadataTags) { setInstanceMetadataTags(instanceMetadataTags); return this; } /** *

          * Indicates whether access to instance tags from the instance metadata is enabled or disabled. For more * information, see Work with * instance tags using the instance metadata in the Amazon EC2 User Guide. *

          * * @param instanceMetadataTags * Indicates whether access to instance tags from the instance metadata is enabled or disabled. For more * information, see Work * with instance tags using the instance metadata in the Amazon EC2 User Guide. * @return Returns a reference to this object so that method calls can be chained together. * @see InstanceMetadataTagsState */ public InstanceMetadataDefaultsResponse withInstanceMetadataTags(InstanceMetadataTagsState instanceMetadataTags) { this.instanceMetadataTags = instanceMetadataTags.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 (getHttpTokens() != null) sb.append("HttpTokens: ").append(getHttpTokens()).append(","); if (getHttpPutResponseHopLimit() != null) sb.append("HttpPutResponseHopLimit: ").append(getHttpPutResponseHopLimit()).append(","); if (getHttpEndpoint() != null) sb.append("HttpEndpoint: ").append(getHttpEndpoint()).append(","); if (getInstanceMetadataTags() != null) sb.append("InstanceMetadataTags: ").append(getInstanceMetadataTags()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof InstanceMetadataDefaultsResponse == false) return false; InstanceMetadataDefaultsResponse other = (InstanceMetadataDefaultsResponse) obj; if (other.getHttpTokens() == null ^ this.getHttpTokens() == null) return false; if (other.getHttpTokens() != null && other.getHttpTokens().equals(this.getHttpTokens()) == false) return false; if (other.getHttpPutResponseHopLimit() == null ^ this.getHttpPutResponseHopLimit() == null) return false; if (other.getHttpPutResponseHopLimit() != null && other.getHttpPutResponseHopLimit().equals(this.getHttpPutResponseHopLimit()) == false) return false; if (other.getHttpEndpoint() == null ^ this.getHttpEndpoint() == null) return false; if (other.getHttpEndpoint() != null && other.getHttpEndpoint().equals(this.getHttpEndpoint()) == false) return false; if (other.getInstanceMetadataTags() == null ^ this.getInstanceMetadataTags() == null) return false; if (other.getInstanceMetadataTags() != null && other.getInstanceMetadataTags().equals(this.getInstanceMetadataTags()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getHttpTokens() == null) ? 0 : getHttpTokens().hashCode()); hashCode = prime * hashCode + ((getHttpPutResponseHopLimit() == null) ? 0 : getHttpPutResponseHopLimit().hashCode()); hashCode = prime * hashCode + ((getHttpEndpoint() == null) ? 0 : getHttpEndpoint().hashCode()); hashCode = prime * hashCode + ((getInstanceMetadataTags() == null) ? 0 : getInstanceMetadataTags().hashCode()); return hashCode; } @Override public InstanceMetadataDefaultsResponse clone() { try { return (InstanceMetadataDefaultsResponse) 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