Class: Aws::Rekognition::Types::DeleteUserRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rekognition/types.rb

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#client_request_tokenString

Idempotent token used to identify the request to ‘DeleteUser`. If you use the same token with multiple `DeleteUser `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.

Returns:

  • (String)


1697
1698
1699
1700
1701
1702
1703
# File 'lib/aws-sdk-rekognition/types.rb', line 1697

class DeleteUserRequest < Struct.new(
  :collection_id,
  :user_id,
  :client_request_token)
  SENSITIVE = []
  include Aws::Structure
end

#collection_idString

The ID of an existing collection from which the UserID needs to be deleted.

Returns:

  • (String)


1697
1698
1699
1700
1701
1702
1703
# File 'lib/aws-sdk-rekognition/types.rb', line 1697

class DeleteUserRequest < Struct.new(
  :collection_id,
  :user_id,
  :client_request_token)
  SENSITIVE = []
  include Aws::Structure
end

#user_idString

ID for the UserID to be deleted.

Returns:

  • (String)


1697
1698
1699
1700
1701
1702
1703
# File 'lib/aws-sdk-rekognition/types.rb', line 1697

class DeleteUserRequest < Struct.new(
  :collection_id,
  :user_id,
  :client_request_token)
  SENSITIVE = []
  include Aws::Structure
end