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

com.amazonaws.services.kinesis.model.ChildShard Maven / Gradle / Ivy

Go to download

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

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

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

/**
 * 

* Output parameter of the GetRecords API. The existing child shard of the current shard. *

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

* The shard ID of the existing child shard of the current shard. *

*/ private String shardId; /** *

* The current shard that is the parent of the existing child shard. *

*/ private com.amazonaws.internal.SdkInternalList parentShards; private HashKeyRange hashKeyRange; /** *

* The shard ID of the existing child shard of the current shard. *

* * @param shardId * The shard ID of the existing child shard of the current shard. */ public void setShardId(String shardId) { this.shardId = shardId; } /** *

* The shard ID of the existing child shard of the current shard. *

* * @return The shard ID of the existing child shard of the current shard. */ public String getShardId() { return this.shardId; } /** *

* The shard ID of the existing child shard of the current shard. *

* * @param shardId * The shard ID of the existing child shard of the current shard. * @return Returns a reference to this object so that method calls can be chained together. */ public ChildShard withShardId(String shardId) { setShardId(shardId); return this; } /** *

* The current shard that is the parent of the existing child shard. *

* * @return The current shard that is the parent of the existing child shard. */ public java.util.List getParentShards() { if (parentShards == null) { parentShards = new com.amazonaws.internal.SdkInternalList(); } return parentShards; } /** *

* The current shard that is the parent of the existing child shard. *

* * @param parentShards * The current shard that is the parent of the existing child shard. */ public void setParentShards(java.util.Collection parentShards) { if (parentShards == null) { this.parentShards = null; return; } this.parentShards = new com.amazonaws.internal.SdkInternalList(parentShards); } /** *

* The current shard that is the parent of the existing child shard. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setParentShards(java.util.Collection)} or {@link #withParentShards(java.util.Collection)} if you want to * override the existing values. *

* * @param parentShards * The current shard that is the parent of the existing child shard. * @return Returns a reference to this object so that method calls can be chained together. */ public ChildShard withParentShards(String... parentShards) { if (this.parentShards == null) { setParentShards(new com.amazonaws.internal.SdkInternalList(parentShards.length)); } for (String ele : parentShards) { this.parentShards.add(ele); } return this; } /** *

* The current shard that is the parent of the existing child shard. *

* * @param parentShards * The current shard that is the parent of the existing child shard. * @return Returns a reference to this object so that method calls can be chained together. */ public ChildShard withParentShards(java.util.Collection parentShards) { setParentShards(parentShards); return this; } /** * @param hashKeyRange */ public void setHashKeyRange(HashKeyRange hashKeyRange) { this.hashKeyRange = hashKeyRange; } /** * @return */ public HashKeyRange getHashKeyRange() { return this.hashKeyRange; } /** * @param hashKeyRange * @return Returns a reference to this object so that method calls can be chained together. */ public ChildShard withHashKeyRange(HashKeyRange hashKeyRange) { setHashKeyRange(hashKeyRange); 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 (getShardId() != null) sb.append("ShardId: ").append(getShardId()).append(","); if (getParentShards() != null) sb.append("ParentShards: ").append(getParentShards()).append(","); if (getHashKeyRange() != null) sb.append("HashKeyRange: ").append(getHashKeyRange()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ChildShard == false) return false; ChildShard other = (ChildShard) obj; if (other.getShardId() == null ^ this.getShardId() == null) return false; if (other.getShardId() != null && other.getShardId().equals(this.getShardId()) == false) return false; if (other.getParentShards() == null ^ this.getParentShards() == null) return false; if (other.getParentShards() != null && other.getParentShards().equals(this.getParentShards()) == false) return false; if (other.getHashKeyRange() == null ^ this.getHashKeyRange() == null) return false; if (other.getHashKeyRange() != null && other.getHashKeyRange().equals(this.getHashKeyRange()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getShardId() == null) ? 0 : getShardId().hashCode()); hashCode = prime * hashCode + ((getParentShards() == null) ? 0 : getParentShards().hashCode()); hashCode = prime * hashCode + ((getHashKeyRange() == null) ? 0 : getHashKeyRange().hashCode()); return hashCode; } @Override public ChildShard clone() { try { return (ChildShard) 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.kinesis.model.transform.ChildShardMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy