Class: Aws::Rekognition::Types::DeleteUserRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::DeleteUserRequest
- 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
DeleteUser. -
#collection_id ⇒ String
The ID of an existing collection from which the UserID needs to be deleted.
-
#user_id ⇒ String
ID for the UserID to be deleted.
Instance Attribute Details
#client_request_token ⇒ String
Idempotent token used to identify the request to DeleteUser. If
you use the same token with multiple DeleteUserrequests, 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.
1741 1742 1743 1744 1745 1746 1747 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 1741 class DeleteUserRequest < Struct.new( :collection_id, :user_id, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#collection_id ⇒ String
The ID of an existing collection from which the UserID needs to be deleted.
1741 1742 1743 1744 1745 1746 1747 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 1741 class DeleteUserRequest < Struct.new( :collection_id, :user_id, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
ID for the UserID to be deleted.
1741 1742 1743 1744 1745 1746 1747 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 1741 class DeleteUserRequest < Struct.new( :collection_id, :user_id, :client_request_token) SENSITIVE = [] include Aws::Structure end |