Class: Aws::Rekognition::Types::DeleteFacesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::DeleteFacesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Note:
When making an API call, you may pass DeleteFacesRequest data as a hash:
{
collection_id: "CollectionId", # required
face_ids: ["FaceId"], # required
}
Instance Attribute Summary collapse
-
#collection_id ⇒ String
Collection from which to remove the specific faces.
-
#face_ids ⇒ Array<String>
An array of face IDs to delete.
Instance Attribute Details
#collection_id ⇒ String
Collection from which to remove the specific faces.
386 387 388 389 390 |
# File 'lib/aws-sdk-rekognition/types.rb', line 386 class DeleteFacesRequest < Struct.new( :collection_id, :face_ids) include Aws::Structure end |
#face_ids ⇒ Array<String>
An array of face IDs to delete.
386 387 388 389 390 |
# File 'lib/aws-sdk-rekognition/types.rb', line 386 class DeleteFacesRequest < Struct.new( :collection_id, :face_ids) include Aws::Structure end |