Class: Aws::Wickr::Types::BatchCreateUserRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Wickr::Types::BatchCreateUserRequest
- Defined in:
- gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
A unique identifier for this request to ensure idempotency.
-
#network_id ⇒ String
The ID of the Wickr network where users will be created.
-
#users ⇒ Array<Types::BatchCreateUserRequestItem>
A list of user objects containing the details for each user to be created, including username, name, security groups, and optional invite codes.
Instance Attribute Details
#client_token ⇒ String
A unique identifier for this request to ensure idempotency. If you retry a request with the same client token, the service will return the same response without creating duplicate users.
A suitable default value is auto-generated. You should normally not need to pass this option.
96 97 98 99 100 101 102 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 96 class BatchCreateUserRequest < Struct.new( :network_id, :users, :client_token) SENSITIVE = [] include Aws::Structure end |
#network_id ⇒ String
The ID of the Wickr network where users will be created.
96 97 98 99 100 101 102 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 96 class BatchCreateUserRequest < Struct.new( :network_id, :users, :client_token) SENSITIVE = [] include Aws::Structure end |
#users ⇒ Array<Types::BatchCreateUserRequestItem>
A list of user objects containing the details for each user to be created, including username, name, security groups, and optional invite codes. Maximum 50 users per batch request.
96 97 98 99 100 101 102 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 96 class BatchCreateUserRequest < Struct.new( :network_id, :users, :client_token) SENSITIVE = [] include Aws::Structure end |