/* * Copyright 2010-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 com.amazonaws.AmazonWebServiceRequest; /** *
* Deletes faces from a collection. You specify a collection ID and an array of * face IDs to remove from the collection. *
*
* This operation requires permissions to perform the
* rekognition:DeleteFaces
action.
*
* Collection from which to remove the specific faces. *
*
* Constraints:
* Length: 1 - 255
* Pattern: [a-zA-Z0-9_.\-]+
*/
private String collectionId;
/**
*
* An array of face IDs to delete. *
*/ private java.util.List* Collection from which to remove the specific faces. *
* @param faceIds* An array of face IDs to delete. *
*/ public DeleteFacesRequest(String collectionId, java.util.List* Collection from which to remove the specific faces. *
*
* Constraints:
* Length: 1 - 255
* Pattern: [a-zA-Z0-9_.\-]+
*
* @return
* Collection from which to remove the specific faces. *
*/ public String getCollectionId() { return collectionId; } /** ** Collection from which to remove the specific faces. *
*
* Constraints:
* Length: 1 - 255
* Pattern: [a-zA-Z0-9_.\-]+
*
* @param collectionId
* Collection from which to remove the specific faces. *
*/ public void setCollectionId(String collectionId) { this.collectionId = collectionId; } /** ** Collection from which to remove the specific faces. *
** Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Length: 1 - 255
* Pattern: [a-zA-Z0-9_.\-]+
*
* @param collectionId
* Collection from which to remove the specific faces. *
* @return A reference to this updated object so that method calls can be * chained together. */ public DeleteFacesRequest withCollectionId(String collectionId) { this.collectionId = collectionId; return this; } /** ** An array of face IDs to delete. *
* * @return* An array of face IDs to delete. *
*/ public java.util.List* An array of face IDs to delete. *
* * @param faceIds* An array of face IDs to delete. *
*/ public void setFaceIds(java.util.Collection* An array of face IDs to delete. *
** Returns a reference to this object so that method calls can be chained * together. * * @param faceIds
* An array of face IDs to delete. *
* @return A reference to this updated object so that method calls can be * chained together. */ public DeleteFacesRequest withFaceIds(String... faceIds) { if (getFaceIds() == null) { this.faceIds = new java.util.ArrayList* An array of face IDs to delete. *
** Returns a reference to this object so that method calls can be chained * together. * * @param faceIds
* An array of face IDs to delete. *
* @return A reference to this updated object so that method calls can be * chained together. */ public DeleteFacesRequest withFaceIds(java.util.Collection