Class: Aws::Rekognition::Types::CreateUserRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::CreateUserRequest
- 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 ‘CreateUser`.
-
#collection_id ⇒ String
The ID of an existing collection to which the new UserID needs to be created.
-
#user_id ⇒ String
ID for the UserID to be created.
Instance Attribute Details
#client_request_token ⇒ String
Idempotent token used to identify the request to ‘CreateUser`. If you use the same token with multiple `CreateUser` 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.
1265 1266 1267 1268 1269 1270 1271 |
# File 'lib/aws-sdk-rekognition/types.rb', line 1265 class CreateUserRequest < Struct.new( :collection_id, :user_id, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#collection_id ⇒ String
The ID of an existing collection to which the new UserID needs to be created.
1265 1266 1267 1268 1269 1270 1271 |
# File 'lib/aws-sdk-rekognition/types.rb', line 1265 class CreateUserRequest < Struct.new( :collection_id, :user_id, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
ID for the UserID to be created. This ID needs to be unique within the collection.
1265 1266 1267 1268 1269 1270 1271 |
# File 'lib/aws-sdk-rekognition/types.rb', line 1265 class CreateUserRequest < Struct.new( :collection_id, :user_id, :client_request_token) SENSITIVE = [] include Aws::Structure end |