in sdk/greengrass/greengrass-client/src/event-stream-rpc-java/model/software/amazon/awssdk/aws/greengrass/model/CreateLocalDeploymentRequest.java [329:344]
public boolean equals(Object rhs) {
if (rhs == null) return false;
if (!(rhs instanceof CreateLocalDeploymentRequest)) return false;
if (this == rhs) return true;
final CreateLocalDeploymentRequest other = (CreateLocalDeploymentRequest)rhs;
boolean isEquals = true;
isEquals = isEquals && this.groupName.equals(other.groupName);
isEquals = isEquals && this.rootComponentVersionsToAdd.equals(other.rootComponentVersionsToAdd);
isEquals = isEquals && this.rootComponentsToRemove.equals(other.rootComponentsToRemove);
isEquals = isEquals && this.componentToConfiguration.equals(other.componentToConfiguration);
isEquals = isEquals && this.componentToRunWithInfo.equals(other.componentToRunWithInfo);
isEquals = isEquals && this.recipeDirectoryPath.equals(other.recipeDirectoryPath);
isEquals = isEquals && this.artifactsDirectoryPath.equals(other.artifactsDirectoryPath);
isEquals = isEquals && this.failureHandlingPolicy.equals(other.failureHandlingPolicy);
return isEquals;
}