/*
* Copyright 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.
*/
/*
* Do not modify this file. This file is generated from the rekognition-2016-06-27.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Rekognition.Model
{
///
/// This is the response object from the DeleteFaces operation.
///
public partial class DeleteFacesResponse : AmazonWebServiceResponse
{
private List _deletedFaces = new List();
private List _unsuccessfulFaceDeletions = new List();
///
/// Gets and sets the property DeletedFaces.
///
/// An array of strings (face IDs) of the faces that were deleted.
///
///
[AWSProperty(Min=1, Max=4096)]
public List DeletedFaces
{
get { return this._deletedFaces; }
set { this._deletedFaces = value; }
}
// Check to see if DeletedFaces property is set
internal bool IsSetDeletedFaces()
{
return this._deletedFaces != null && this._deletedFaces.Count > 0;
}
///
/// Gets and sets the property UnsuccessfulFaceDeletions.
///
/// An array of any faces that weren't deleted.
///
///
[AWSProperty(Min=0, Max=4096)]
public List UnsuccessfulFaceDeletions
{
get { return this._unsuccessfulFaceDeletions; }
set { this._unsuccessfulFaceDeletions = value; }
}
// Check to see if UnsuccessfulFaceDeletions property is set
internal bool IsSetUnsuccessfulFaceDeletions()
{
return this._unsuccessfulFaceDeletions != null && this._unsuccessfulFaceDeletions.Count > 0;
}
}
}