/* * 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.rekognition.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Input parameters used in a streaming video analyzed by a Amazon Rekognition stream processor. You can use
* FaceSearch
to recognize faces in a streaming video, or you can use ConnectedHome
to detect
* labels.
*
* Face search settings to use on a streaming video. *
*/ private FaceSearchSettings faceSearch; private ConnectedHomeSettings connectedHome; /** ** Face search settings to use on a streaming video. *
* * @param faceSearch * Face search settings to use on a streaming video. */ public void setFaceSearch(FaceSearchSettings faceSearch) { this.faceSearch = faceSearch; } /** ** Face search settings to use on a streaming video. *
* * @return Face search settings to use on a streaming video. */ public FaceSearchSettings getFaceSearch() { return this.faceSearch; } /** ** Face search settings to use on a streaming video. *
* * @param faceSearch * Face search settings to use on a streaming video. * @return Returns a reference to this object so that method calls can be chained together. */ public StreamProcessorSettings withFaceSearch(FaceSearchSettings faceSearch) { setFaceSearch(faceSearch); return this; } /** * @param connectedHome */ public void setConnectedHome(ConnectedHomeSettings connectedHome) { this.connectedHome = connectedHome; } /** * @return */ public ConnectedHomeSettings getConnectedHome() { return this.connectedHome; } /** * @param connectedHome * @return Returns a reference to this object so that method calls can be chained together. */ public StreamProcessorSettings withConnectedHome(ConnectedHomeSettings connectedHome) { setConnectedHome(connectedHome); 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 (getFaceSearch() != null) sb.append("FaceSearch: ").append(getFaceSearch()).append(","); if (getConnectedHome() != null) sb.append("ConnectedHome: ").append(getConnectedHome()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof StreamProcessorSettings == false) return false; StreamProcessorSettings other = (StreamProcessorSettings) obj; if (other.getFaceSearch() == null ^ this.getFaceSearch() == null) return false; if (other.getFaceSearch() != null && other.getFaceSearch().equals(this.getFaceSearch()) == false) return false; if (other.getConnectedHome() == null ^ this.getConnectedHome() == null) return false; if (other.getConnectedHome() != null && other.getConnectedHome().equals(this.getConnectedHome()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getFaceSearch() == null) ? 0 : getFaceSearch().hashCode()); hashCode = prime * hashCode + ((getConnectedHome() == null) ? 0 : getConnectedHome().hashCode()); return hashCode; } @Override public StreamProcessorSettings clone() { try { return (StreamProcessorSettings) 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.rekognition.model.transform.StreamProcessorSettingsMarshaller.getInstance().marshall(this, protocolMarshaller); } }