/* * 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.finspace.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* A structure that stores metadata for a kdb node. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class KxNode implements Serializable, Cloneable, StructuredPojo { /** ** A unique identifier for the node. *
*/ private String nodeId; /** ** The identifier of the availability zones where subnets for the environment are created. *
*/ private String availabilityZoneId; /** ** The time when a particular node is started. The value is determined as epoch time in milliseconds. For example, * the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000. *
*/ private java.util.Date launchTime; /** ** A unique identifier for the node. *
* * @param nodeId * A unique identifier for the node. */ public void setNodeId(String nodeId) { this.nodeId = nodeId; } /** ** A unique identifier for the node. *
* * @return A unique identifier for the node. */ public String getNodeId() { return this.nodeId; } /** ** A unique identifier for the node. *
* * @param nodeId * A unique identifier for the node. * @return Returns a reference to this object so that method calls can be chained together. */ public KxNode withNodeId(String nodeId) { setNodeId(nodeId); return this; } /** ** The identifier of the availability zones where subnets for the environment are created. *
* * @param availabilityZoneId * The identifier of the availability zones where subnets for the environment are created. */ public void setAvailabilityZoneId(String availabilityZoneId) { this.availabilityZoneId = availabilityZoneId; } /** ** The identifier of the availability zones where subnets for the environment are created. *
* * @return The identifier of the availability zones where subnets for the environment are created. */ public String getAvailabilityZoneId() { return this.availabilityZoneId; } /** ** The identifier of the availability zones where subnets for the environment are created. *
* * @param availabilityZoneId * The identifier of the availability zones where subnets for the environment are created. * @return Returns a reference to this object so that method calls can be chained together. */ public KxNode withAvailabilityZoneId(String availabilityZoneId) { setAvailabilityZoneId(availabilityZoneId); return this; } /** ** The time when a particular node is started. The value is determined as epoch time in milliseconds. For example, * the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000. *
* * @param launchTime * The time when a particular node is started. The value is determined as epoch time in milliseconds. For * example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000. */ public void setLaunchTime(java.util.Date launchTime) { this.launchTime = launchTime; } /** ** The time when a particular node is started. The value is determined as epoch time in milliseconds. For example, * the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000. *
* * @return The time when a particular node is started. The value is determined as epoch time in milliseconds. For * example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000. */ public java.util.Date getLaunchTime() { return this.launchTime; } /** ** The time when a particular node is started. The value is determined as epoch time in milliseconds. For example, * the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000. *
* * @param launchTime * The time when a particular node is started. The value is determined as epoch time in milliseconds. For * example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000. * @return Returns a reference to this object so that method calls can be chained together. */ public KxNode withLaunchTime(java.util.Date launchTime) { setLaunchTime(launchTime); 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 (getNodeId() != null) sb.append("NodeId: ").append(getNodeId()).append(","); if (getAvailabilityZoneId() != null) sb.append("AvailabilityZoneId: ").append(getAvailabilityZoneId()).append(","); if (getLaunchTime() != null) sb.append("LaunchTime: ").append(getLaunchTime()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof KxNode == false) return false; KxNode other = (KxNode) obj; if (other.getNodeId() == null ^ this.getNodeId() == null) return false; if (other.getNodeId() != null && other.getNodeId().equals(this.getNodeId()) == false) return false; if (other.getAvailabilityZoneId() == null ^ this.getAvailabilityZoneId() == null) return false; if (other.getAvailabilityZoneId() != null && other.getAvailabilityZoneId().equals(this.getAvailabilityZoneId()) == false) return false; if (other.getLaunchTime() == null ^ this.getLaunchTime() == null) return false; if (other.getLaunchTime() != null && other.getLaunchTime().equals(this.getLaunchTime()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getNodeId() == null) ? 0 : getNodeId().hashCode()); hashCode = prime * hashCode + ((getAvailabilityZoneId() == null) ? 0 : getAvailabilityZoneId().hashCode()); hashCode = prime * hashCode + ((getLaunchTime() == null) ? 0 : getLaunchTime().hashCode()); return hashCode; } @Override public KxNode clone() { try { return (KxNode) 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.finspace.model.transform.KxNodeMarshaller.getInstance().marshall(this, protocolMarshaller); } }