Class: Aws::AlexaForBusiness::Types::PutInvitationConfigurationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AlexaForBusiness::Types::PutInvitationConfigurationRequest
- Defined in:
- gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb
Overview
Note:
When making an API call, you may pass PutInvitationConfigurationRequest data as a hash:
{
organization_name: "OrganizationName", # required
contact_email: "Email",
private_skill_ids: ["SkillId"],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#contact_email ⇒ String
The email ID of the organization or individual contact that the enrolled user can use.
-
#organization_name ⇒ String
The name of the organization sending the enrollment invite to a user.
-
#private_skill_ids ⇒ Array<String>
The list of private skill IDs that you want to recommend to the user to enable in the invitation.
Instance Attribute Details
#contact_email ⇒ String
The email ID of the organization or individual contact that the enrolled user can use.
4159 4160 4161 4162 4163 4164 4165 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 4159 class PutInvitationConfigurationRequest < Struct.new( :organization_name, :contact_email, :private_skill_ids) SENSITIVE = [] include Aws::Structure end |
#organization_name ⇒ String
The name of the organization sending the enrollment invite to a user.
4159 4160 4161 4162 4163 4164 4165 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 4159 class PutInvitationConfigurationRequest < Struct.new( :organization_name, :contact_email, :private_skill_ids) SENSITIVE = [] include Aws::Structure end |
#private_skill_ids ⇒ Array<String>
The list of private skill IDs that you want to recommend to the user to enable in the invitation.
4159 4160 4161 4162 4163 4164 4165 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 4159 class PutInvitationConfigurationRequest < Struct.new( :organization_name, :contact_email, :private_skill_ids) SENSITIVE = [] include Aws::Structure end |