Class: Aws::Rekognition::Types::DisassociateFacesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::DisassociateFacesRequest
- Defined in:
- gems/aws-sdk-rekognition/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.
2647 2648 2649 2650 2651 2652 2653 2654 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 2647 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.
2647 2648 2649 2650 2651 2652 2653 2654 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 2647 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.
2647 2648 2649 2650 2651 2652 2653 2654 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 2647 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.
2647 2648 2649 2650 2651 2652 2653 2654 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 2647 class DisassociateFacesRequest < Struct.new( :collection_id, :user_id, :client_request_token, :face_ids) SENSITIVE = [] include Aws::Structure end |