Class: Aws::AlexaForBusiness::Types::CreateMeetingRoomConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::AlexaForBusiness::Types::CreateMeetingRoomConfiguration
- Defined in:
- gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb
Overview
When making an API call, you may pass CreateMeetingRoomConfiguration data as a hash:
{
room_utilization_metrics_enabled: false,
end_of_meeting_reminder: {
reminder_at_minutes: [1], # required
reminder_type: "ANNOUNCEMENT_TIME_CHECK", # required, accepts ANNOUNCEMENT_TIME_CHECK, ANNOUNCEMENT_VARIABLE_TIME_LEFT, CHIME, KNOCK
enabled: false, # required
},
instant_booking: {
duration_in_minutes: 1, # required
enabled: false, # required
},
require_check_in: {
release_after_minutes: 1, # required
enabled: false, # required
},
}
Creates meeting room settings of a room profile.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_of_meeting_reminder ⇒ Types::CreateEndOfMeetingReminder
Creates settings for the end of meeting reminder feature that are applied to a room profile.
-
#instant_booking ⇒ Types::CreateInstantBooking
Settings to automatically book a room for a configured duration if it's free when joining a meeting with Alexa.
-
#require_check_in ⇒ Types::CreateRequireCheckIn
Settings for requiring a check in when a room is reserved.
-
#room_utilization_metrics_enabled ⇒ Boolean
Whether room utilization metrics are enabled or not.
Instance Attribute Details
#end_of_meeting_reminder ⇒ Types::CreateEndOfMeetingReminder
Creates settings for the end of meeting reminder feature that are applied to a room profile. The end of meeting reminder enables Alexa to remind users when a meeting is ending.
1163 1164 1165 1166 1167 1168 1169 1170 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 1163 class CreateMeetingRoomConfiguration < Struct.new( :room_utilization_metrics_enabled, :end_of_meeting_reminder, :instant_booking, :require_check_in) SENSITIVE = [] include Aws::Structure end |
#instant_booking ⇒ Types::CreateInstantBooking
Settings to automatically book a room for a configured duration if it's free when joining a meeting with Alexa.
1163 1164 1165 1166 1167 1168 1169 1170 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 1163 class CreateMeetingRoomConfiguration < Struct.new( :room_utilization_metrics_enabled, :end_of_meeting_reminder, :instant_booking, :require_check_in) SENSITIVE = [] include Aws::Structure end |
#require_check_in ⇒ Types::CreateRequireCheckIn
Settings for requiring a check in when a room is reserved. Alexa can cancel a room reservation if it's not checked into to make the room available for others. Users can check in by joining the meeting with Alexa or an AVS device, or by saying “Alexa, check in.”
1163 1164 1165 1166 1167 1168 1169 1170 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 1163 class CreateMeetingRoomConfiguration < Struct.new( :room_utilization_metrics_enabled, :end_of_meeting_reminder, :instant_booking, :require_check_in) SENSITIVE = [] include Aws::Structure end |
#room_utilization_metrics_enabled ⇒ Boolean
Whether room utilization metrics are enabled or not.
1163 1164 1165 1166 1167 1168 1169 1170 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 1163 class CreateMeetingRoomConfiguration < Struct.new( :room_utilization_metrics_enabled, :end_of_meeting_reminder, :instant_booking, :require_check_in) SENSITIVE = [] include Aws::Structure end |