com.amazonaws.services.securityhub.model.AwsAutoScalingLaunchConfigurationMetadataOptions Maven / Gradle / Ivy
Show all versions of aws-java-sdk-securityhub Show documentation
/*
* Copyright 2018-2023 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;
/**
*
* The metadata options for the instances.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class AwsAutoScalingLaunchConfigurationMetadataOptions implements Serializable, Cloneable, StructuredPojo {
/**
*
* Enables or disables the HTTP metadata endpoint on your instances. By default, the metadata endpoint is enabled.
*
*/
private String httpEndpoint;
/**
*
* The HTTP PUT
response hop limit for instance metadata requests. The larger the number, the further
* instance metadata requests can travel.
*
*/
private Integer httpPutResponseHopLimit;
/**
*
* Indicates whether token usage is required
or optional
for metadata requests. By
* default, token usage is optional
.
*
*/
private String httpTokens;
/**
*
* Enables or disables the HTTP metadata endpoint on your instances. By default, the metadata endpoint is enabled.
*
*
* @param httpEndpoint
* Enables or disables the HTTP metadata endpoint on your instances. By default, the metadata endpoint is
* enabled.
*/
public void setHttpEndpoint(String httpEndpoint) {
this.httpEndpoint = httpEndpoint;
}
/**
*
* Enables or disables the HTTP metadata endpoint on your instances. By default, the metadata endpoint is enabled.
*
*
* @return Enables or disables the HTTP metadata endpoint on your instances. By default, the metadata endpoint is
* enabled.
*/
public String getHttpEndpoint() {
return this.httpEndpoint;
}
/**
*
* Enables or disables the HTTP metadata endpoint on your instances. By default, the metadata endpoint is enabled.
*
*
* @param httpEndpoint
* Enables or disables the HTTP metadata endpoint on your instances. By default, the metadata endpoint is
* enabled.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AwsAutoScalingLaunchConfigurationMetadataOptions withHttpEndpoint(String httpEndpoint) {
setHttpEndpoint(httpEndpoint);
return this;
}
/**
*
* The HTTP PUT
response hop limit for instance metadata requests. The larger the number, the further
* instance metadata requests can travel.
*
*
* @param httpPutResponseHopLimit
* The HTTP PUT
response hop limit for instance metadata requests. The larger the number, the
* further instance metadata requests can travel.
*/
public void setHttpPutResponseHopLimit(Integer httpPutResponseHopLimit) {
this.httpPutResponseHopLimit = httpPutResponseHopLimit;
}
/**
*
* The HTTP PUT
response hop limit for instance metadata requests. The larger the number, the further
* instance metadata requests can travel.
*
*
* @return The HTTP PUT
response hop limit for instance metadata requests. The larger the number, the
* further instance metadata requests can travel.
*/
public Integer getHttpPutResponseHopLimit() {
return this.httpPutResponseHopLimit;
}
/**
*
* The HTTP PUT
response hop limit for instance metadata requests. The larger the number, the further
* instance metadata requests can travel.
*
*
* @param httpPutResponseHopLimit
* The HTTP PUT
response hop limit for instance metadata requests. The larger the number, the
* further instance metadata requests can travel.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AwsAutoScalingLaunchConfigurationMetadataOptions withHttpPutResponseHopLimit(Integer httpPutResponseHopLimit) {
setHttpPutResponseHopLimit(httpPutResponseHopLimit);
return this;
}
/**
*
* Indicates whether token usage is required
or optional
for metadata requests. By
* default, token usage is optional
.
*
*
* @param httpTokens
* Indicates whether token usage is required
or optional
for metadata requests. By
* default, token usage is optional
.
*/
public void setHttpTokens(String httpTokens) {
this.httpTokens = httpTokens;
}
/**
*
* Indicates whether token usage is required
or optional
for metadata requests. By
* default, token usage is optional
.
*
*
* @return Indicates whether token usage is required
or optional
for metadata requests. By
* default, token usage is optional
.
*/
public String getHttpTokens() {
return this.httpTokens;
}
/**
*
* Indicates whether token usage is required
or optional
for metadata requests. By
* default, token usage is optional
.
*
*
* @param httpTokens
* Indicates whether token usage is required
or optional
for metadata requests. By
* default, token usage is optional
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AwsAutoScalingLaunchConfigurationMetadataOptions withHttpTokens(String httpTokens) {
setHttpTokens(httpTokens);
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 (getHttpEndpoint() != null)
sb.append("HttpEndpoint: ").append(getHttpEndpoint()).append(",");
if (getHttpPutResponseHopLimit() != null)
sb.append("HttpPutResponseHopLimit: ").append(getHttpPutResponseHopLimit()).append(",");
if (getHttpTokens() != null)
sb.append("HttpTokens: ").append(getHttpTokens());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof AwsAutoScalingLaunchConfigurationMetadataOptions == false)
return false;
AwsAutoScalingLaunchConfigurationMetadataOptions other = (AwsAutoScalingLaunchConfigurationMetadataOptions) obj;
if (other.getHttpEndpoint() == null ^ this.getHttpEndpoint() == null)
return false;
if (other.getHttpEndpoint() != null && other.getHttpEndpoint().equals(this.getHttpEndpoint()) == 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.getHttpTokens() == null ^ this.getHttpTokens() == null)
return false;
if (other.getHttpTokens() != null && other.getHttpTokens().equals(this.getHttpTokens()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getHttpEndpoint() == null) ? 0 : getHttpEndpoint().hashCode());
hashCode = prime * hashCode + ((getHttpPutResponseHopLimit() == null) ? 0 : getHttpPutResponseHopLimit().hashCode());
hashCode = prime * hashCode + ((getHttpTokens() == null) ? 0 : getHttpTokens().hashCode());
return hashCode;
}
@Override
public AwsAutoScalingLaunchConfigurationMetadataOptions clone() {
try {
return (AwsAutoScalingLaunchConfigurationMetadataOptions) 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.AwsAutoScalingLaunchConfigurationMetadataOptionsMarshaller.getInstance().marshall(this,
protocolMarshaller);
}
}