Class: Aws::Rekognition::Types::DisassociateFacesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::DisassociateFacesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_request_token ⇒ String
Idempotent token used to identify the request to ‘DisassociateFaces`.
-
#collection_id ⇒ String
The ID of an existing collection containing the UserID.
-
#face_ids ⇒ Array<String>
An array of face IDs to disassociate from the UserID.
-
#user_id ⇒ String
ID for the existing UserID.
Instance Attribute Details
#client_request_token ⇒ String
Idempotent token used to identify the request to ‘DisassociateFaces`. If you use the same token with multiple `DisassociateFaces` requests, the same response is returned. Use ClientRequestToken to prevent the same request from being processed more than once.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
2603 2604 2605 2606 2607 2608 2609 2610 |
# File 'lib/aws-sdk-rekognition/types.rb', line 2603 class DisassociateFacesRequest < Struct.new( :collection_id, :user_id, :client_request_token, :face_ids) SENSITIVE = [] include Aws::Structure end |
#collection_id ⇒ String
The ID of an existing collection containing the UserID.
2603 2604 2605 2606 2607 2608 2609 2610 |
# File 'lib/aws-sdk-rekognition/types.rb', line 2603 class DisassociateFacesRequest < Struct.new( :collection_id, :user_id, :client_request_token, :face_ids) SENSITIVE = [] include Aws::Structure end |
#face_ids ⇒ Array<String>
An array of face IDs to disassociate from the UserID.
2603 2604 2605 2606 2607 2608 2609 2610 |
# File 'lib/aws-sdk-rekognition/types.rb', line 2603 class DisassociateFacesRequest < Struct.new( :collection_id, :user_id, :client_request_token, :face_ids) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
ID for the existing UserID.
2603 2604 2605 2606 2607 2608 2609 2610 |
# File 'lib/aws-sdk-rekognition/types.rb', line 2603 class DisassociateFacesRequest < Struct.new( :collection_id, :user_id, :client_request_token, :face_ids) SENSITIVE = [] include Aws::Structure end |