Class: Aws::Wickr::Types::BatchCreateUserRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#client_tokenString

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.

Returns:

  • (String)


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_idString

The ID of the Wickr network where users will be created.

Returns:

  • (String)


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

#usersArray<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