Class: Aws::AlexaForBusiness::Types::CreateRequireCheckIn
- Inherits:
-
Struct
- Object
- Struct
- Aws::AlexaForBusiness::Types::CreateRequireCheckIn
- Defined in:
- gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb
Overview
Note:
When making an API call, you may pass CreateRequireCheckIn data as a hash:
{
release_after_minutes: 1, # required
enabled: false, # required
}
Creates settings for the require check in feature that are applied to a room profile. Require check in allows a meeting room’s Alexa or AVS device to prompt the user to check in; otherwise, the room will be released.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
Whether require check in is enabled or not.
-
#release_after_minutes ⇒ Integer
Duration between 5 and 20 minutes to determine when to release the room if it's not checked into.
Instance Attribute Details
#enabled ⇒ Boolean
Whether require check in is enabled or not.
1487 1488 1489 1490 1491 1492 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 1487 class CreateRequireCheckIn < Struct.new( :release_after_minutes, :enabled) SENSITIVE = [] include Aws::Structure end |
#release_after_minutes ⇒ Integer
Duration between 5 and 20 minutes to determine when to release the room if it's not checked into.
1487 1488 1489 1490 1491 1492 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 1487 class CreateRequireCheckIn < Struct.new( :release_after_minutes, :enabled) SENSITIVE = [] include Aws::Structure end |