Class: Aws::Chime::Types::Invite
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chime::Types::Invite
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-chime/types.rb
Overview
Invitation object returned after emailing users to invite them to join the Amazon Chime ‘Team` account.
Constant Summary collapse
- SENSITIVE =
[:email_address]
Instance Attribute Summary collapse
-
#email_address ⇒ String
The email address to which the invite is sent.
-
#email_status ⇒ String
The status of the invite email.
-
#invite_id ⇒ String
The invite ID.
-
#status ⇒ String
The status of the invite.
Instance Attribute Details
#email_address ⇒ String
The email address to which the invite is sent.
4699 4700 4701 4702 4703 4704 4705 4706 |
# File 'lib/aws-sdk-chime/types.rb', line 4699 class Invite < Struct.new( :invite_id, :status, :email_address, :email_status) SENSITIVE = [:email_address] include Aws::Structure end |
#email_status ⇒ String
The status of the invite email.
4699 4700 4701 4702 4703 4704 4705 4706 |
# File 'lib/aws-sdk-chime/types.rb', line 4699 class Invite < Struct.new( :invite_id, :status, :email_address, :email_status) SENSITIVE = [:email_address] include Aws::Structure end |