Class: Aws::Wickr::Types::CreateBotRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Wickr::Types::CreateBotRequest
- Defined in:
- gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:challenge]
Instance Attribute Summary collapse
-
#challenge ⇒ String
The password for the bot account.
-
#display_name ⇒ String
The display name for the bot that will be visible to users in the network.
-
#group_id ⇒ String
The ID of the security group to which the bot will be assigned.
-
#network_id ⇒ String
The ID of the Wickr network where the bot will be created.
-
#username ⇒ String
The username for the bot.
Instance Attribute Details
#challenge ⇒ String
The password for the bot account.
724 725 726 727 728 729 730 731 732 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 724 class CreateBotRequest < Struct.new( :network_id, :username, :display_name, :group_id, :challenge) SENSITIVE = [:challenge] include Aws::Structure end |
#display_name ⇒ String
The display name for the bot that will be visible to users in the network.
724 725 726 727 728 729 730 731 732 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 724 class CreateBotRequest < Struct.new( :network_id, :username, :display_name, :group_id, :challenge) SENSITIVE = [:challenge] include Aws::Structure end |
#group_id ⇒ String
The ID of the security group to which the bot will be assigned.
724 725 726 727 728 729 730 731 732 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 724 class CreateBotRequest < Struct.new( :network_id, :username, :display_name, :group_id, :challenge) SENSITIVE = [:challenge] include Aws::Structure end |
#network_id ⇒ String
The ID of the Wickr network where the bot will be created.
724 725 726 727 728 729 730 731 732 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 724 class CreateBotRequest < Struct.new( :network_id, :username, :display_name, :group_id, :challenge) SENSITIVE = [:challenge] include Aws::Structure end |
#username ⇒ String
The username for the bot. This must be unique within the network and follow the network's naming conventions.
724 725 726 727 728 729 730 731 732 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 724 class CreateBotRequest < Struct.new( :network_id, :username, :display_name, :group_id, :challenge) SENSITIVE = [:challenge] include Aws::Structure end |