aws-sdk-alexaforbusiness 1.31.0 → 1.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b503655e656824c6b42c5434b0e24e65a9c56bb
|
4
|
+
data.tar.gz: f1d919e35b246c62dd5a0eb3be1c5991deef65c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 338f487e22ca19c15390622d3caa366749f6f9e1064b75307f4d8e40686d388d06468ada08e0d4463a074553d0698b055fabe3c2a3e0507603da924932389d4c
|
7
|
+
data.tar.gz: 363687edb223e84e469a0b633bf8606c9e95aa81befd8bcbe4d53c1b4446d22c4434b1110b3fb10fb37eedf8ba433742a41b7be57d90273fb7eb4adf2050b5be
|
@@ -528,7 +528,7 @@ module Aws::AlexaForBusiness
|
|
528
528
|
# s3_key_prefix: "S3KeyPrefix",
|
529
529
|
# format: "CSV", # required, accepts CSV, CSV_ZIP
|
530
530
|
# content_range: { # required
|
531
|
-
# interval: "ONE_DAY", # accepts ONE_DAY, ONE_WEEK
|
531
|
+
# interval: "ONE_DAY", # accepts ONE_DAY, ONE_WEEK, THIRTY_DAYS
|
532
532
|
# },
|
533
533
|
# recurrence: {
|
534
534
|
# start_date: "Date",
|
@@ -818,7 +818,8 @@ module Aws::AlexaForBusiness
|
|
818
818
|
# A wake word for Alexa, Echo, Amazon, or a computer.
|
819
819
|
#
|
820
820
|
# @option params [String] :locale
|
821
|
-
# The locale of the room profile.
|
821
|
+
# The locale of the room profile. (This is currently only available to a
|
822
|
+
# limited preview audience.)
|
822
823
|
#
|
823
824
|
# @option params [String] :client_request_token
|
824
825
|
# The user-specified token that is used during the creation of a
|
@@ -836,6 +837,9 @@ module Aws::AlexaForBusiness
|
|
836
837
|
# @option params [Boolean] :pstn_enabled
|
837
838
|
# Whether PSTN calling is enabled.
|
838
839
|
#
|
840
|
+
# @option params [Types::CreateMeetingRoomConfiguration] :meeting_room_configuration
|
841
|
+
# The meeting room settings of a room profile.
|
842
|
+
#
|
839
843
|
# @return [Types::CreateProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
840
844
|
#
|
841
845
|
# * {Types::CreateProfileResponse#profile_arn #profile_arn} => String
|
@@ -854,6 +858,22 @@ module Aws::AlexaForBusiness
|
|
854
858
|
# setup_mode_disabled: false,
|
855
859
|
# max_volume_limit: 1,
|
856
860
|
# pstn_enabled: false,
|
861
|
+
# meeting_room_configuration: {
|
862
|
+
# room_utilization_metrics_enabled: false,
|
863
|
+
# end_of_meeting_reminder: {
|
864
|
+
# reminder_at_minutes: [1], # required
|
865
|
+
# reminder_type: "ANNOUNCEMENT_TIME_CHECK", # required, accepts ANNOUNCEMENT_TIME_CHECK, ANNOUNCEMENT_VARIABLE_TIME_LEFT, CHIME, KNOCK
|
866
|
+
# enabled: false, # required
|
867
|
+
# },
|
868
|
+
# instant_booking: {
|
869
|
+
# duration_in_minutes: 1, # required
|
870
|
+
# enabled: false, # required
|
871
|
+
# },
|
872
|
+
# require_check_in: {
|
873
|
+
# release_after_minutes: 1, # required
|
874
|
+
# enabled: false, # required
|
875
|
+
# },
|
876
|
+
# },
|
857
877
|
# })
|
858
878
|
#
|
859
879
|
# @example Response structure
|
@@ -1828,6 +1848,15 @@ module Aws::AlexaForBusiness
|
|
1828
1848
|
# resp.profile.max_volume_limit #=> Integer
|
1829
1849
|
# resp.profile.pstn_enabled #=> Boolean
|
1830
1850
|
# resp.profile.address_book_arn #=> String
|
1851
|
+
# resp.profile.meeting_room_configuration.room_utilization_metrics_enabled #=> Boolean
|
1852
|
+
# resp.profile.meeting_room_configuration.end_of_meeting_reminder.reminder_at_minutes #=> Array
|
1853
|
+
# resp.profile.meeting_room_configuration.end_of_meeting_reminder.reminder_at_minutes[0] #=> Integer
|
1854
|
+
# resp.profile.meeting_room_configuration.end_of_meeting_reminder.reminder_type #=> String, one of "ANNOUNCEMENT_TIME_CHECK", "ANNOUNCEMENT_VARIABLE_TIME_LEFT", "CHIME", "KNOCK"
|
1855
|
+
# resp.profile.meeting_room_configuration.end_of_meeting_reminder.enabled #=> Boolean
|
1856
|
+
# resp.profile.meeting_room_configuration.instant_booking.duration_in_minutes #=> Integer
|
1857
|
+
# resp.profile.meeting_room_configuration.instant_booking.enabled #=> Boolean
|
1858
|
+
# resp.profile.meeting_room_configuration.require_check_in.release_after_minutes #=> Integer
|
1859
|
+
# resp.profile.meeting_room_configuration.require_check_in.enabled #=> Boolean
|
1831
1860
|
#
|
1832
1861
|
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GetProfile AWS API Documentation
|
1833
1862
|
#
|
@@ -1940,7 +1969,10 @@ module Aws::AlexaForBusiness
|
|
1940
1969
|
req.send_request(options)
|
1941
1970
|
end
|
1942
1971
|
|
1943
|
-
# Lists the details of the schedules that a user configured.
|
1972
|
+
# Lists the details of the schedules that a user configured. A download
|
1973
|
+
# URL of the report associated with each schedule is returned every time
|
1974
|
+
# this action is called. A new download URL is returned each time, and
|
1975
|
+
# is valid for 24 hours.
|
1944
1976
|
#
|
1945
1977
|
# @option params [String] :next_token
|
1946
1978
|
# The token used to list the remaining schedules from the previous API
|
@@ -1969,7 +2001,7 @@ module Aws::AlexaForBusiness
|
|
1969
2001
|
# resp.business_report_schedules[0].s3_bucket_name #=> String
|
1970
2002
|
# resp.business_report_schedules[0].s3_key_prefix #=> String
|
1971
2003
|
# resp.business_report_schedules[0].format #=> String, one of "CSV", "CSV_ZIP"
|
1972
|
-
# resp.business_report_schedules[0].content_range.interval #=> String, one of "ONE_DAY", "ONE_WEEK"
|
2004
|
+
# resp.business_report_schedules[0].content_range.interval #=> String, one of "ONE_DAY", "ONE_WEEK", "THIRTY_DAYS"
|
1973
2005
|
# resp.business_report_schedules[0].recurrence.start_date #=> String
|
1974
2006
|
# resp.business_report_schedules[0].last_business_report.status #=> String, one of "RUNNING", "SUCCEEDED", "FAILED"
|
1975
2007
|
# resp.business_report_schedules[0].last_business_report.failure_code #=> String, one of "ACCESS_DENIED", "NO_SUCH_BUCKET", "INTERNAL_FAILURE"
|
@@ -2178,11 +2210,10 @@ module Aws::AlexaForBusiness
|
|
2178
2210
|
# Lists all enabled skills in a specific skill group.
|
2179
2211
|
#
|
2180
2212
|
# @option params [String] :skill_group_arn
|
2181
|
-
# The ARN of the skill group for which to list enabled skills.
|
2213
|
+
# The ARN of the skill group for which to list enabled skills.
|
2182
2214
|
#
|
2183
2215
|
# @option params [String] :enablement_type
|
2184
|
-
# Whether the skill is enabled under the user's account
|
2185
|
-
# requires linking to be used.
|
2216
|
+
# Whether the skill is enabled under the user's account.
|
2186
2217
|
#
|
2187
2218
|
# @option params [String] :skill_type
|
2188
2219
|
# Whether the skill is publicly available or is a private skill.
|
@@ -2191,13 +2222,13 @@ module Aws::AlexaForBusiness
|
|
2191
2222
|
# An optional token returned from a prior request. Use this token for
|
2192
2223
|
# pagination of results from this action. If this parameter is
|
2193
2224
|
# specified, the response includes only results beyond the token, up to
|
2194
|
-
# the value specified by `MaxResults`.
|
2225
|
+
# the value specified by `MaxResults`.
|
2195
2226
|
#
|
2196
2227
|
# @option params [Integer] :max_results
|
2197
2228
|
# The maximum number of results to include in the response. If more
|
2198
2229
|
# results exist than the specified `MaxResults` value, a token is
|
2199
2230
|
# included in the response so that the remaining results can be
|
2200
|
-
# retrieved.
|
2231
|
+
# retrieved.
|
2201
2232
|
#
|
2202
2233
|
# @return [Types::ListSkillsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2203
2234
|
#
|
@@ -3845,7 +3876,8 @@ module Aws::AlexaForBusiness
|
|
3845
3876
|
# The updated wake word for the room profile.
|
3846
3877
|
#
|
3847
3878
|
# @option params [String] :locale
|
3848
|
-
# The updated locale for the room profile.
|
3879
|
+
# The updated locale for the room profile. (This is currently only
|
3880
|
+
# available to a limited preview audience.)
|
3849
3881
|
#
|
3850
3882
|
# @option params [Boolean] :setup_mode_disabled
|
3851
3883
|
# Whether the setup mode of the profile is enabled.
|
@@ -3856,6 +3888,9 @@ module Aws::AlexaForBusiness
|
|
3856
3888
|
# @option params [Boolean] :pstn_enabled
|
3857
3889
|
# Whether the PSTN setting of the room profile is enabled.
|
3858
3890
|
#
|
3891
|
+
# @option params [Types::UpdateMeetingRoomConfiguration] :meeting_room_configuration
|
3892
|
+
# The updated meeting room settings of a room profile.
|
3893
|
+
#
|
3859
3894
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3860
3895
|
#
|
3861
3896
|
# @example Request syntax with placeholder values
|
@@ -3873,6 +3908,22 @@ module Aws::AlexaForBusiness
|
|
3873
3908
|
# setup_mode_disabled: false,
|
3874
3909
|
# max_volume_limit: 1,
|
3875
3910
|
# pstn_enabled: false,
|
3911
|
+
# meeting_room_configuration: {
|
3912
|
+
# room_utilization_metrics_enabled: false,
|
3913
|
+
# end_of_meeting_reminder: {
|
3914
|
+
# reminder_at_minutes: [1],
|
3915
|
+
# reminder_type: "ANNOUNCEMENT_TIME_CHECK", # accepts ANNOUNCEMENT_TIME_CHECK, ANNOUNCEMENT_VARIABLE_TIME_LEFT, CHIME, KNOCK
|
3916
|
+
# enabled: false,
|
3917
|
+
# },
|
3918
|
+
# instant_booking: {
|
3919
|
+
# duration_in_minutes: 1,
|
3920
|
+
# enabled: false,
|
3921
|
+
# },
|
3922
|
+
# require_check_in: {
|
3923
|
+
# release_after_minutes: 1,
|
3924
|
+
# enabled: false,
|
3925
|
+
# },
|
3926
|
+
# },
|
3876
3927
|
# })
|
3877
3928
|
#
|
3878
3929
|
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateProfile AWS API Documentation
|
@@ -3965,7 +4016,7 @@ module Aws::AlexaForBusiness
|
|
3965
4016
|
params: params,
|
3966
4017
|
config: config)
|
3967
4018
|
context[:gem_name] = 'aws-sdk-alexaforbusiness'
|
3968
|
-
context[:gem_version] = '1.
|
4019
|
+
context[:gem_version] = '1.32.0'
|
3969
4020
|
Seahorse::Client::Request.new(handlers, context)
|
3970
4021
|
end
|
3971
4022
|
|
@@ -87,12 +87,16 @@ module Aws::AlexaForBusiness
|
|
87
87
|
CreateConferenceProviderResponse = Shapes::StructureShape.new(name: 'CreateConferenceProviderResponse')
|
88
88
|
CreateContactRequest = Shapes::StructureShape.new(name: 'CreateContactRequest')
|
89
89
|
CreateContactResponse = Shapes::StructureShape.new(name: 'CreateContactResponse')
|
90
|
+
CreateEndOfMeetingReminder = Shapes::StructureShape.new(name: 'CreateEndOfMeetingReminder')
|
90
91
|
CreateGatewayGroupRequest = Shapes::StructureShape.new(name: 'CreateGatewayGroupRequest')
|
91
92
|
CreateGatewayGroupResponse = Shapes::StructureShape.new(name: 'CreateGatewayGroupResponse')
|
93
|
+
CreateInstantBooking = Shapes::StructureShape.new(name: 'CreateInstantBooking')
|
94
|
+
CreateMeetingRoomConfiguration = Shapes::StructureShape.new(name: 'CreateMeetingRoomConfiguration')
|
92
95
|
CreateNetworkProfileRequest = Shapes::StructureShape.new(name: 'CreateNetworkProfileRequest')
|
93
96
|
CreateNetworkProfileResponse = Shapes::StructureShape.new(name: 'CreateNetworkProfileResponse')
|
94
97
|
CreateProfileRequest = Shapes::StructureShape.new(name: 'CreateProfileRequest')
|
95
98
|
CreateProfileResponse = Shapes::StructureShape.new(name: 'CreateProfileResponse')
|
99
|
+
CreateRequireCheckIn = Shapes::StructureShape.new(name: 'CreateRequireCheckIn')
|
96
100
|
CreateRoomRequest = Shapes::StructureShape.new(name: 'CreateRoomRequest')
|
97
101
|
CreateRoomResponse = Shapes::StructureShape.new(name: 'CreateRoomResponse')
|
98
102
|
CreateSkillGroupRequest = Shapes::StructureShape.new(name: 'CreateSkillGroupRequest')
|
@@ -167,6 +171,9 @@ module Aws::AlexaForBusiness
|
|
167
171
|
Email = Shapes::StringShape.new(name: 'Email')
|
168
172
|
EnablementType = Shapes::StringShape.new(name: 'EnablementType')
|
169
173
|
EnablementTypeFilter = Shapes::StringShape.new(name: 'EnablementTypeFilter')
|
174
|
+
EndOfMeetingReminder = Shapes::StructureShape.new(name: 'EndOfMeetingReminder')
|
175
|
+
EndOfMeetingReminderMinutesList = Shapes::ListShape.new(name: 'EndOfMeetingReminderMinutesList')
|
176
|
+
EndOfMeetingReminderType = Shapes::StringShape.new(name: 'EndOfMeetingReminderType')
|
170
177
|
EndUserLicenseAgreement = Shapes::StringShape.new(name: 'EndUserLicenseAgreement')
|
171
178
|
Endpoint = Shapes::StringShape.new(name: 'Endpoint')
|
172
179
|
EnrollmentId = Shapes::StringShape.new(name: 'EnrollmentId')
|
@@ -222,6 +229,7 @@ module Aws::AlexaForBusiness
|
|
222
229
|
GetSkillGroupResponse = Shapes::StructureShape.new(name: 'GetSkillGroupResponse')
|
223
230
|
IPDialIn = Shapes::StructureShape.new(name: 'IPDialIn')
|
224
231
|
IconUrl = Shapes::StringShape.new(name: 'IconUrl')
|
232
|
+
InstantBooking = Shapes::StructureShape.new(name: 'InstantBooking')
|
225
233
|
InvalidCertificateAuthorityException = Shapes::StructureShape.new(name: 'InvalidCertificateAuthorityException')
|
226
234
|
InvalidDeviceException = Shapes::StructureShape.new(name: 'InvalidDeviceException')
|
227
235
|
InvalidSecretsManagerResourceException = Shapes::StructureShape.new(name: 'InvalidSecretsManagerResourceException')
|
@@ -254,7 +262,9 @@ module Aws::AlexaForBusiness
|
|
254
262
|
MacAddress = Shapes::StringShape.new(name: 'MacAddress')
|
255
263
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
256
264
|
MaxVolumeLimit = Shapes::IntegerShape.new(name: 'MaxVolumeLimit')
|
265
|
+
MeetingRoomConfiguration = Shapes::StructureShape.new(name: 'MeetingRoomConfiguration')
|
257
266
|
MeetingSetting = Shapes::StructureShape.new(name: 'MeetingSetting')
|
267
|
+
Minutes = Shapes::IntegerShape.new(name: 'Minutes')
|
258
268
|
NameInUseException = Shapes::StructureShape.new(name: 'NameInUseException')
|
259
269
|
NetworkEapMethod = Shapes::StringShape.new(name: 'NetworkEapMethod')
|
260
270
|
NetworkProfile = Shapes::StructureShape.new(name: 'NetworkProfile')
|
@@ -298,6 +308,7 @@ module Aws::AlexaForBusiness
|
|
298
308
|
RejectSkillRequest = Shapes::StructureShape.new(name: 'RejectSkillRequest')
|
299
309
|
RejectSkillResponse = Shapes::StructureShape.new(name: 'RejectSkillResponse')
|
300
310
|
ReleaseDate = Shapes::StringShape.new(name: 'ReleaseDate')
|
311
|
+
RequireCheckIn = Shapes::StructureShape.new(name: 'RequireCheckIn')
|
301
312
|
RequirePin = Shapes::StringShape.new(name: 'RequirePin')
|
302
313
|
ResolveRoomRequest = Shapes::StructureShape.new(name: 'ResolveRoomRequest')
|
303
314
|
ResolveRoomResponse = Shapes::StructureShape.new(name: 'ResolveRoomResponse')
|
@@ -406,14 +417,18 @@ module Aws::AlexaForBusiness
|
|
406
417
|
UpdateContactResponse = Shapes::StructureShape.new(name: 'UpdateContactResponse')
|
407
418
|
UpdateDeviceRequest = Shapes::StructureShape.new(name: 'UpdateDeviceRequest')
|
408
419
|
UpdateDeviceResponse = Shapes::StructureShape.new(name: 'UpdateDeviceResponse')
|
420
|
+
UpdateEndOfMeetingReminder = Shapes::StructureShape.new(name: 'UpdateEndOfMeetingReminder')
|
409
421
|
UpdateGatewayGroupRequest = Shapes::StructureShape.new(name: 'UpdateGatewayGroupRequest')
|
410
422
|
UpdateGatewayGroupResponse = Shapes::StructureShape.new(name: 'UpdateGatewayGroupResponse')
|
411
423
|
UpdateGatewayRequest = Shapes::StructureShape.new(name: 'UpdateGatewayRequest')
|
412
424
|
UpdateGatewayResponse = Shapes::StructureShape.new(name: 'UpdateGatewayResponse')
|
425
|
+
UpdateInstantBooking = Shapes::StructureShape.new(name: 'UpdateInstantBooking')
|
426
|
+
UpdateMeetingRoomConfiguration = Shapes::StructureShape.new(name: 'UpdateMeetingRoomConfiguration')
|
413
427
|
UpdateNetworkProfileRequest = Shapes::StructureShape.new(name: 'UpdateNetworkProfileRequest')
|
414
428
|
UpdateNetworkProfileResponse = Shapes::StructureShape.new(name: 'UpdateNetworkProfileResponse')
|
415
429
|
UpdateProfileRequest = Shapes::StructureShape.new(name: 'UpdateProfileRequest')
|
416
430
|
UpdateProfileResponse = Shapes::StructureShape.new(name: 'UpdateProfileResponse')
|
431
|
+
UpdateRequireCheckIn = Shapes::StructureShape.new(name: 'UpdateRequireCheckIn')
|
417
432
|
UpdateRoomRequest = Shapes::StructureShape.new(name: 'UpdateRoomRequest')
|
418
433
|
UpdateRoomResponse = Shapes::StructureShape.new(name: 'UpdateRoomResponse')
|
419
434
|
UpdateSkillGroupRequest = Shapes::StructureShape.new(name: 'UpdateSkillGroupRequest')
|
@@ -616,6 +631,11 @@ module Aws::AlexaForBusiness
|
|
616
631
|
CreateContactResponse.add_member(:contact_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ContactArn"))
|
617
632
|
CreateContactResponse.struct_class = Types::CreateContactResponse
|
618
633
|
|
634
|
+
CreateEndOfMeetingReminder.add_member(:reminder_at_minutes, Shapes::ShapeRef.new(shape: EndOfMeetingReminderMinutesList, required: true, location_name: "ReminderAtMinutes"))
|
635
|
+
CreateEndOfMeetingReminder.add_member(:reminder_type, Shapes::ShapeRef.new(shape: EndOfMeetingReminderType, required: true, location_name: "ReminderType"))
|
636
|
+
CreateEndOfMeetingReminder.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Enabled"))
|
637
|
+
CreateEndOfMeetingReminder.struct_class = Types::CreateEndOfMeetingReminder
|
638
|
+
|
619
639
|
CreateGatewayGroupRequest.add_member(:name, Shapes::ShapeRef.new(shape: GatewayGroupName, required: true, location_name: "Name"))
|
620
640
|
CreateGatewayGroupRequest.add_member(:description, Shapes::ShapeRef.new(shape: GatewayGroupDescription, location_name: "Description"))
|
621
641
|
CreateGatewayGroupRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
@@ -624,6 +644,16 @@ module Aws::AlexaForBusiness
|
|
624
644
|
CreateGatewayGroupResponse.add_member(:gateway_group_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "GatewayGroupArn"))
|
625
645
|
CreateGatewayGroupResponse.struct_class = Types::CreateGatewayGroupResponse
|
626
646
|
|
647
|
+
CreateInstantBooking.add_member(:duration_in_minutes, Shapes::ShapeRef.new(shape: Minutes, required: true, location_name: "DurationInMinutes"))
|
648
|
+
CreateInstantBooking.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Enabled"))
|
649
|
+
CreateInstantBooking.struct_class = Types::CreateInstantBooking
|
650
|
+
|
651
|
+
CreateMeetingRoomConfiguration.add_member(:room_utilization_metrics_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "RoomUtilizationMetricsEnabled"))
|
652
|
+
CreateMeetingRoomConfiguration.add_member(:end_of_meeting_reminder, Shapes::ShapeRef.new(shape: CreateEndOfMeetingReminder, location_name: "EndOfMeetingReminder"))
|
653
|
+
CreateMeetingRoomConfiguration.add_member(:instant_booking, Shapes::ShapeRef.new(shape: CreateInstantBooking, location_name: "InstantBooking"))
|
654
|
+
CreateMeetingRoomConfiguration.add_member(:require_check_in, Shapes::ShapeRef.new(shape: CreateRequireCheckIn, location_name: "RequireCheckIn"))
|
655
|
+
CreateMeetingRoomConfiguration.struct_class = Types::CreateMeetingRoomConfiguration
|
656
|
+
|
627
657
|
CreateNetworkProfileRequest.add_member(:network_profile_name, Shapes::ShapeRef.new(shape: NetworkProfileName, required: true, location_name: "NetworkProfileName"))
|
628
658
|
CreateNetworkProfileRequest.add_member(:description, Shapes::ShapeRef.new(shape: NetworkProfileDescription, location_name: "Description"))
|
629
659
|
CreateNetworkProfileRequest.add_member(:ssid, Shapes::ShapeRef.new(shape: NetworkSsid, required: true, location_name: "Ssid"))
|
@@ -650,11 +680,16 @@ module Aws::AlexaForBusiness
|
|
650
680
|
CreateProfileRequest.add_member(:setup_mode_disabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "SetupModeDisabled"))
|
651
681
|
CreateProfileRequest.add_member(:max_volume_limit, Shapes::ShapeRef.new(shape: MaxVolumeLimit, location_name: "MaxVolumeLimit"))
|
652
682
|
CreateProfileRequest.add_member(:pstn_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PSTNEnabled"))
|
683
|
+
CreateProfileRequest.add_member(:meeting_room_configuration, Shapes::ShapeRef.new(shape: CreateMeetingRoomConfiguration, location_name: "MeetingRoomConfiguration"))
|
653
684
|
CreateProfileRequest.struct_class = Types::CreateProfileRequest
|
654
685
|
|
655
686
|
CreateProfileResponse.add_member(:profile_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ProfileArn"))
|
656
687
|
CreateProfileResponse.struct_class = Types::CreateProfileResponse
|
657
688
|
|
689
|
+
CreateRequireCheckIn.add_member(:release_after_minutes, Shapes::ShapeRef.new(shape: Minutes, required: true, location_name: "ReleaseAfterMinutes"))
|
690
|
+
CreateRequireCheckIn.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Enabled"))
|
691
|
+
CreateRequireCheckIn.struct_class = Types::CreateRequireCheckIn
|
692
|
+
|
658
693
|
CreateRoomRequest.add_member(:room_name, Shapes::ShapeRef.new(shape: RoomName, required: true, location_name: "RoomName"))
|
659
694
|
CreateRoomRequest.add_member(:description, Shapes::ShapeRef.new(shape: RoomDescription, location_name: "Description"))
|
660
695
|
CreateRoomRequest.add_member(:profile_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ProfileArn"))
|
@@ -847,6 +882,13 @@ module Aws::AlexaForBusiness
|
|
847
882
|
|
848
883
|
DisassociateSkillGroupFromRoomResponse.struct_class = Types::DisassociateSkillGroupFromRoomResponse
|
849
884
|
|
885
|
+
EndOfMeetingReminder.add_member(:reminder_at_minutes, Shapes::ShapeRef.new(shape: EndOfMeetingReminderMinutesList, location_name: "ReminderAtMinutes"))
|
886
|
+
EndOfMeetingReminder.add_member(:reminder_type, Shapes::ShapeRef.new(shape: EndOfMeetingReminderType, location_name: "ReminderType"))
|
887
|
+
EndOfMeetingReminder.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
888
|
+
EndOfMeetingReminder.struct_class = Types::EndOfMeetingReminder
|
889
|
+
|
890
|
+
EndOfMeetingReminderMinutesList.member = Shapes::ShapeRef.new(shape: Minutes)
|
891
|
+
|
850
892
|
Features.member = Shapes::ShapeRef.new(shape: Feature)
|
851
893
|
|
852
894
|
Filter.add_member(:key, Shapes::ShapeRef.new(shape: FilterKey, required: true, location_name: "Key"))
|
@@ -976,6 +1018,10 @@ module Aws::AlexaForBusiness
|
|
976
1018
|
IPDialIn.add_member(:comms_protocol, Shapes::ShapeRef.new(shape: CommsProtocol, required: true, location_name: "CommsProtocol"))
|
977
1019
|
IPDialIn.struct_class = Types::IPDialIn
|
978
1020
|
|
1021
|
+
InstantBooking.add_member(:duration_in_minutes, Shapes::ShapeRef.new(shape: Minutes, location_name: "DurationInMinutes"))
|
1022
|
+
InstantBooking.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
1023
|
+
InstantBooking.struct_class = Types::InstantBooking
|
1024
|
+
|
979
1025
|
InvalidCertificateAuthorityException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
980
1026
|
InvalidCertificateAuthorityException.struct_class = Types::InvalidCertificateAuthorityException
|
981
1027
|
|
@@ -1083,6 +1129,12 @@ module Aws::AlexaForBusiness
|
|
1083
1129
|
ListTagsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1084
1130
|
ListTagsResponse.struct_class = Types::ListTagsResponse
|
1085
1131
|
|
1132
|
+
MeetingRoomConfiguration.add_member(:room_utilization_metrics_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "RoomUtilizationMetricsEnabled"))
|
1133
|
+
MeetingRoomConfiguration.add_member(:end_of_meeting_reminder, Shapes::ShapeRef.new(shape: EndOfMeetingReminder, location_name: "EndOfMeetingReminder"))
|
1134
|
+
MeetingRoomConfiguration.add_member(:instant_booking, Shapes::ShapeRef.new(shape: InstantBooking, location_name: "InstantBooking"))
|
1135
|
+
MeetingRoomConfiguration.add_member(:require_check_in, Shapes::ShapeRef.new(shape: RequireCheckIn, location_name: "RequireCheckIn"))
|
1136
|
+
MeetingRoomConfiguration.struct_class = Types::MeetingRoomConfiguration
|
1137
|
+
|
1086
1138
|
MeetingSetting.add_member(:require_pin, Shapes::ShapeRef.new(shape: RequirePin, required: true, location_name: "RequirePin"))
|
1087
1139
|
MeetingSetting.struct_class = Types::MeetingSetting
|
1088
1140
|
|
@@ -1142,6 +1194,7 @@ module Aws::AlexaForBusiness
|
|
1142
1194
|
Profile.add_member(:max_volume_limit, Shapes::ShapeRef.new(shape: MaxVolumeLimit, location_name: "MaxVolumeLimit"))
|
1143
1195
|
Profile.add_member(:pstn_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PSTNEnabled"))
|
1144
1196
|
Profile.add_member(:address_book_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "AddressBookArn"))
|
1197
|
+
Profile.add_member(:meeting_room_configuration, Shapes::ShapeRef.new(shape: MeetingRoomConfiguration, location_name: "MeetingRoomConfiguration"))
|
1145
1198
|
Profile.struct_class = Types::Profile
|
1146
1199
|
|
1147
1200
|
ProfileData.add_member(:profile_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ProfileArn"))
|
@@ -1198,6 +1251,10 @@ module Aws::AlexaForBusiness
|
|
1198
1251
|
|
1199
1252
|
RejectSkillResponse.struct_class = Types::RejectSkillResponse
|
1200
1253
|
|
1254
|
+
RequireCheckIn.add_member(:release_after_minutes, Shapes::ShapeRef.new(shape: Minutes, location_name: "ReleaseAfterMinutes"))
|
1255
|
+
RequireCheckIn.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
1256
|
+
RequireCheckIn.struct_class = Types::RequireCheckIn
|
1257
|
+
|
1201
1258
|
ResolveRoomRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: UserId, required: true, location_name: "UserId"))
|
1202
1259
|
ResolveRoomRequest.add_member(:skill_id, Shapes::ShapeRef.new(shape: SkillId, required: true, location_name: "SkillId"))
|
1203
1260
|
ResolveRoomRequest.struct_class = Types::ResolveRoomRequest
|
@@ -1512,6 +1569,11 @@ module Aws::AlexaForBusiness
|
|
1512
1569
|
|
1513
1570
|
UpdateDeviceResponse.struct_class = Types::UpdateDeviceResponse
|
1514
1571
|
|
1572
|
+
UpdateEndOfMeetingReminder.add_member(:reminder_at_minutes, Shapes::ShapeRef.new(shape: EndOfMeetingReminderMinutesList, location_name: "ReminderAtMinutes"))
|
1573
|
+
UpdateEndOfMeetingReminder.add_member(:reminder_type, Shapes::ShapeRef.new(shape: EndOfMeetingReminderType, location_name: "ReminderType"))
|
1574
|
+
UpdateEndOfMeetingReminder.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
1575
|
+
UpdateEndOfMeetingReminder.struct_class = Types::UpdateEndOfMeetingReminder
|
1576
|
+
|
1515
1577
|
UpdateGatewayGroupRequest.add_member(:gateway_group_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "GatewayGroupArn"))
|
1516
1578
|
UpdateGatewayGroupRequest.add_member(:name, Shapes::ShapeRef.new(shape: GatewayGroupName, location_name: "Name"))
|
1517
1579
|
UpdateGatewayGroupRequest.add_member(:description, Shapes::ShapeRef.new(shape: GatewayGroupDescription, location_name: "Description"))
|
@@ -1527,6 +1589,16 @@ module Aws::AlexaForBusiness
|
|
1527
1589
|
|
1528
1590
|
UpdateGatewayResponse.struct_class = Types::UpdateGatewayResponse
|
1529
1591
|
|
1592
|
+
UpdateInstantBooking.add_member(:duration_in_minutes, Shapes::ShapeRef.new(shape: Minutes, location_name: "DurationInMinutes"))
|
1593
|
+
UpdateInstantBooking.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
1594
|
+
UpdateInstantBooking.struct_class = Types::UpdateInstantBooking
|
1595
|
+
|
1596
|
+
UpdateMeetingRoomConfiguration.add_member(:room_utilization_metrics_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "RoomUtilizationMetricsEnabled"))
|
1597
|
+
UpdateMeetingRoomConfiguration.add_member(:end_of_meeting_reminder, Shapes::ShapeRef.new(shape: UpdateEndOfMeetingReminder, location_name: "EndOfMeetingReminder"))
|
1598
|
+
UpdateMeetingRoomConfiguration.add_member(:instant_booking, Shapes::ShapeRef.new(shape: UpdateInstantBooking, location_name: "InstantBooking"))
|
1599
|
+
UpdateMeetingRoomConfiguration.add_member(:require_check_in, Shapes::ShapeRef.new(shape: UpdateRequireCheckIn, location_name: "RequireCheckIn"))
|
1600
|
+
UpdateMeetingRoomConfiguration.struct_class = Types::UpdateMeetingRoomConfiguration
|
1601
|
+
|
1530
1602
|
UpdateNetworkProfileRequest.add_member(:network_profile_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "NetworkProfileArn"))
|
1531
1603
|
UpdateNetworkProfileRequest.add_member(:network_profile_name, Shapes::ShapeRef.new(shape: NetworkProfileName, location_name: "NetworkProfileName"))
|
1532
1604
|
UpdateNetworkProfileRequest.add_member(:description, Shapes::ShapeRef.new(shape: NetworkProfileDescription, location_name: "Description"))
|
@@ -1550,10 +1622,15 @@ module Aws::AlexaForBusiness
|
|
1550
1622
|
UpdateProfileRequest.add_member(:setup_mode_disabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "SetupModeDisabled"))
|
1551
1623
|
UpdateProfileRequest.add_member(:max_volume_limit, Shapes::ShapeRef.new(shape: MaxVolumeLimit, location_name: "MaxVolumeLimit"))
|
1552
1624
|
UpdateProfileRequest.add_member(:pstn_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PSTNEnabled"))
|
1625
|
+
UpdateProfileRequest.add_member(:meeting_room_configuration, Shapes::ShapeRef.new(shape: UpdateMeetingRoomConfiguration, location_name: "MeetingRoomConfiguration"))
|
1553
1626
|
UpdateProfileRequest.struct_class = Types::UpdateProfileRequest
|
1554
1627
|
|
1555
1628
|
UpdateProfileResponse.struct_class = Types::UpdateProfileResponse
|
1556
1629
|
|
1630
|
+
UpdateRequireCheckIn.add_member(:release_after_minutes, Shapes::ShapeRef.new(shape: Minutes, location_name: "ReleaseAfterMinutes"))
|
1631
|
+
UpdateRequireCheckIn.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
1632
|
+
UpdateRequireCheckIn.struct_class = Types::UpdateRequireCheckIn
|
1633
|
+
|
1557
1634
|
UpdateRoomRequest.add_member(:room_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "RoomArn"))
|
1558
1635
|
UpdateRoomRequest.add_member(:room_name, Shapes::ShapeRef.new(shape: RoomName, location_name: "RoomName"))
|
1559
1636
|
UpdateRoomRequest.add_member(:description, Shapes::ShapeRef.new(shape: RoomDescription, location_name: "Description"))
|
@@ -338,7 +338,7 @@ module Aws::AlexaForBusiness
|
|
338
338
|
# data as a hash:
|
339
339
|
#
|
340
340
|
# {
|
341
|
-
# interval: "ONE_DAY", # accepts ONE_DAY, ONE_WEEK
|
341
|
+
# interval: "ONE_DAY", # accepts ONE_DAY, ONE_WEEK, THIRTY_DAYS
|
342
342
|
# }
|
343
343
|
#
|
344
344
|
# @!attribute [rw] interval
|
@@ -732,7 +732,7 @@ module Aws::AlexaForBusiness
|
|
732
732
|
# s3_key_prefix: "S3KeyPrefix",
|
733
733
|
# format: "CSV", # required, accepts CSV, CSV_ZIP
|
734
734
|
# content_range: { # required
|
735
|
-
# interval: "ONE_DAY", # accepts ONE_DAY, ONE_WEEK
|
735
|
+
# interval: "ONE_DAY", # accepts ONE_DAY, ONE_WEEK, THIRTY_DAYS
|
736
736
|
# },
|
737
737
|
# recurrence: {
|
738
738
|
# start_date: "Date",
|
@@ -955,6 +955,41 @@ module Aws::AlexaForBusiness
|
|
955
955
|
include Aws::Structure
|
956
956
|
end
|
957
957
|
|
958
|
+
# Creates settings for the end of meeting reminder feature that are
|
959
|
+
# applied to a room profile. The end of meeting reminder enables Alexa
|
960
|
+
# to remind users when a meeting is ending.
|
961
|
+
#
|
962
|
+
# @note When making an API call, you may pass CreateEndOfMeetingReminder
|
963
|
+
# data as a hash:
|
964
|
+
#
|
965
|
+
# {
|
966
|
+
# reminder_at_minutes: [1], # required
|
967
|
+
# reminder_type: "ANNOUNCEMENT_TIME_CHECK", # required, accepts ANNOUNCEMENT_TIME_CHECK, ANNOUNCEMENT_VARIABLE_TIME_LEFT, CHIME, KNOCK
|
968
|
+
# enabled: false, # required
|
969
|
+
# }
|
970
|
+
#
|
971
|
+
# @!attribute [rw] reminder_at_minutes
|
972
|
+
# A range of 3 to 15 minutes that determines when the reminder begins.
|
973
|
+
# @return [Array<Integer>]
|
974
|
+
#
|
975
|
+
# @!attribute [rw] reminder_type
|
976
|
+
# The type of sound that users hear during the end of meeting
|
977
|
+
# reminder.
|
978
|
+
# @return [String]
|
979
|
+
#
|
980
|
+
# @!attribute [rw] enabled
|
981
|
+
# Whether an end of meeting reminder is enabled or not.
|
982
|
+
# @return [Boolean]
|
983
|
+
#
|
984
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/CreateEndOfMeetingReminder AWS API Documentation
|
985
|
+
#
|
986
|
+
class CreateEndOfMeetingReminder < Struct.new(
|
987
|
+
:reminder_at_minutes,
|
988
|
+
:reminder_type,
|
989
|
+
:enabled)
|
990
|
+
include Aws::Structure
|
991
|
+
end
|
992
|
+
|
958
993
|
# @note When making an API call, you may pass CreateGatewayGroupRequest
|
959
994
|
# data as a hash:
|
960
995
|
#
|
@@ -1000,6 +1035,91 @@ module Aws::AlexaForBusiness
|
|
1000
1035
|
include Aws::Structure
|
1001
1036
|
end
|
1002
1037
|
|
1038
|
+
# Creates settings for the instant booking feature that are applied to a
|
1039
|
+
# room profile. When users start their meeting with Alexa, Alexa
|
1040
|
+
# automatically books the room for the configured duration if the room
|
1041
|
+
# is available.
|
1042
|
+
#
|
1043
|
+
# @note When making an API call, you may pass CreateInstantBooking
|
1044
|
+
# data as a hash:
|
1045
|
+
#
|
1046
|
+
# {
|
1047
|
+
# duration_in_minutes: 1, # required
|
1048
|
+
# enabled: false, # required
|
1049
|
+
# }
|
1050
|
+
#
|
1051
|
+
# @!attribute [rw] duration_in_minutes
|
1052
|
+
# Duration between 15 and 240 minutes at increments of 15 that
|
1053
|
+
# determines how long to book an available room when a meeting is
|
1054
|
+
# started with Alexa.
|
1055
|
+
# @return [Integer]
|
1056
|
+
#
|
1057
|
+
# @!attribute [rw] enabled
|
1058
|
+
# Whether instant booking is enabled or not.
|
1059
|
+
# @return [Boolean]
|
1060
|
+
#
|
1061
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/CreateInstantBooking AWS API Documentation
|
1062
|
+
#
|
1063
|
+
class CreateInstantBooking < Struct.new(
|
1064
|
+
:duration_in_minutes,
|
1065
|
+
:enabled)
|
1066
|
+
include Aws::Structure
|
1067
|
+
end
|
1068
|
+
|
1069
|
+
# Creates meeting room settings of a room profile.
|
1070
|
+
#
|
1071
|
+
# @note When making an API call, you may pass CreateMeetingRoomConfiguration
|
1072
|
+
# data as a hash:
|
1073
|
+
#
|
1074
|
+
# {
|
1075
|
+
# room_utilization_metrics_enabled: false,
|
1076
|
+
# end_of_meeting_reminder: {
|
1077
|
+
# reminder_at_minutes: [1], # required
|
1078
|
+
# reminder_type: "ANNOUNCEMENT_TIME_CHECK", # required, accepts ANNOUNCEMENT_TIME_CHECK, ANNOUNCEMENT_VARIABLE_TIME_LEFT, CHIME, KNOCK
|
1079
|
+
# enabled: false, # required
|
1080
|
+
# },
|
1081
|
+
# instant_booking: {
|
1082
|
+
# duration_in_minutes: 1, # required
|
1083
|
+
# enabled: false, # required
|
1084
|
+
# },
|
1085
|
+
# require_check_in: {
|
1086
|
+
# release_after_minutes: 1, # required
|
1087
|
+
# enabled: false, # required
|
1088
|
+
# },
|
1089
|
+
# }
|
1090
|
+
#
|
1091
|
+
# @!attribute [rw] room_utilization_metrics_enabled
|
1092
|
+
# Whether room utilization metrics are enabled or not.
|
1093
|
+
# @return [Boolean]
|
1094
|
+
#
|
1095
|
+
# @!attribute [rw] end_of_meeting_reminder
|
1096
|
+
# Creates settings for the end of meeting reminder feature that are
|
1097
|
+
# applied to a room profile. The end of meeting reminder enables Alexa
|
1098
|
+
# to remind users when a meeting is ending.
|
1099
|
+
# @return [Types::CreateEndOfMeetingReminder]
|
1100
|
+
#
|
1101
|
+
# @!attribute [rw] instant_booking
|
1102
|
+
# Settings to automatically book a room for a configured duration if
|
1103
|
+
# it's free when joining a meeting with Alexa.
|
1104
|
+
# @return [Types::CreateInstantBooking]
|
1105
|
+
#
|
1106
|
+
# @!attribute [rw] require_check_in
|
1107
|
+
# Settings for requiring a check in when a room is reserved. Alexa can
|
1108
|
+
# cancel a room reservation if it's not checked into to make the room
|
1109
|
+
# available for others. Users can check in by joining the meeting with
|
1110
|
+
# Alexa or an AVS device, or by saying “Alexa, check in.”
|
1111
|
+
# @return [Types::CreateRequireCheckIn]
|
1112
|
+
#
|
1113
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/CreateMeetingRoomConfiguration AWS API Documentation
|
1114
|
+
#
|
1115
|
+
class CreateMeetingRoomConfiguration < Struct.new(
|
1116
|
+
:room_utilization_metrics_enabled,
|
1117
|
+
:end_of_meeting_reminder,
|
1118
|
+
:instant_booking,
|
1119
|
+
:require_check_in)
|
1120
|
+
include Aws::Structure
|
1121
|
+
end
|
1122
|
+
|
1003
1123
|
# @note When making an API call, you may pass CreateNetworkProfileRequest
|
1004
1124
|
# data as a hash:
|
1005
1125
|
#
|
@@ -1110,6 +1230,22 @@ module Aws::AlexaForBusiness
|
|
1110
1230
|
# setup_mode_disabled: false,
|
1111
1231
|
# max_volume_limit: 1,
|
1112
1232
|
# pstn_enabled: false,
|
1233
|
+
# meeting_room_configuration: {
|
1234
|
+
# room_utilization_metrics_enabled: false,
|
1235
|
+
# end_of_meeting_reminder: {
|
1236
|
+
# reminder_at_minutes: [1], # required
|
1237
|
+
# reminder_type: "ANNOUNCEMENT_TIME_CHECK", # required, accepts ANNOUNCEMENT_TIME_CHECK, ANNOUNCEMENT_VARIABLE_TIME_LEFT, CHIME, KNOCK
|
1238
|
+
# enabled: false, # required
|
1239
|
+
# },
|
1240
|
+
# instant_booking: {
|
1241
|
+
# duration_in_minutes: 1, # required
|
1242
|
+
# enabled: false, # required
|
1243
|
+
# },
|
1244
|
+
# require_check_in: {
|
1245
|
+
# release_after_minutes: 1, # required
|
1246
|
+
# enabled: false, # required
|
1247
|
+
# },
|
1248
|
+
# },
|
1113
1249
|
# }
|
1114
1250
|
#
|
1115
1251
|
# @!attribute [rw] profile_name
|
@@ -1137,7 +1273,8 @@ module Aws::AlexaForBusiness
|
|
1137
1273
|
# @return [String]
|
1138
1274
|
#
|
1139
1275
|
# @!attribute [rw] locale
|
1140
|
-
# The locale of the room profile.
|
1276
|
+
# The locale of the room profile. (This is currently only available to
|
1277
|
+
# a limited preview audience.)
|
1141
1278
|
# @return [String]
|
1142
1279
|
#
|
1143
1280
|
# @!attribute [rw] client_request_token
|
@@ -1160,6 +1297,10 @@ module Aws::AlexaForBusiness
|
|
1160
1297
|
# Whether PSTN calling is enabled.
|
1161
1298
|
# @return [Boolean]
|
1162
1299
|
#
|
1300
|
+
# @!attribute [rw] meeting_room_configuration
|
1301
|
+
# The meeting room settings of a room profile.
|
1302
|
+
# @return [Types::CreateMeetingRoomConfiguration]
|
1303
|
+
#
|
1163
1304
|
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/CreateProfileRequest AWS API Documentation
|
1164
1305
|
#
|
1165
1306
|
class CreateProfileRequest < Struct.new(
|
@@ -1173,7 +1314,8 @@ module Aws::AlexaForBusiness
|
|
1173
1314
|
:client_request_token,
|
1174
1315
|
:setup_mode_disabled,
|
1175
1316
|
:max_volume_limit,
|
1176
|
-
:pstn_enabled
|
1317
|
+
:pstn_enabled,
|
1318
|
+
:meeting_room_configuration)
|
1177
1319
|
include Aws::Structure
|
1178
1320
|
end
|
1179
1321
|
|
@@ -1188,6 +1330,36 @@ module Aws::AlexaForBusiness
|
|
1188
1330
|
include Aws::Structure
|
1189
1331
|
end
|
1190
1332
|
|
1333
|
+
# Creates settings for the require check in feature that are applied to
|
1334
|
+
# a room profile. Require check in allows a meeting room’s Alexa or AVS
|
1335
|
+
# device to prompt the user to check in; otherwise, the room will be
|
1336
|
+
# released.
|
1337
|
+
#
|
1338
|
+
# @note When making an API call, you may pass CreateRequireCheckIn
|
1339
|
+
# data as a hash:
|
1340
|
+
#
|
1341
|
+
# {
|
1342
|
+
# release_after_minutes: 1, # required
|
1343
|
+
# enabled: false, # required
|
1344
|
+
# }
|
1345
|
+
#
|
1346
|
+
# @!attribute [rw] release_after_minutes
|
1347
|
+
# Duration between 5 and 20 minutes to determine when to release the
|
1348
|
+
# room if it's not checked into.
|
1349
|
+
# @return [Integer]
|
1350
|
+
#
|
1351
|
+
# @!attribute [rw] enabled
|
1352
|
+
# Whether require check in is enabled or not.
|
1353
|
+
# @return [Boolean]
|
1354
|
+
#
|
1355
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/CreateRequireCheckIn AWS API Documentation
|
1356
|
+
#
|
1357
|
+
class CreateRequireCheckIn < Struct.new(
|
1358
|
+
:release_after_minutes,
|
1359
|
+
:enabled)
|
1360
|
+
include Aws::Structure
|
1361
|
+
end
|
1362
|
+
|
1191
1363
|
# @note When making an API call, you may pass CreateRoomRequest
|
1192
1364
|
# data as a hash:
|
1193
1365
|
#
|
@@ -2090,6 +2262,32 @@ module Aws::AlexaForBusiness
|
|
2090
2262
|
#
|
2091
2263
|
class DisassociateSkillGroupFromRoomResponse < Aws::EmptyStructure; end
|
2092
2264
|
|
2265
|
+
# Settings for the end of meeting reminder feature that are applied to a
|
2266
|
+
# room profile. The end of meeting reminder enables Alexa to remind
|
2267
|
+
# users when a meeting is ending.
|
2268
|
+
#
|
2269
|
+
# @!attribute [rw] reminder_at_minutes
|
2270
|
+
# A range of 3 to 15 minutes that determines when the reminder begins.
|
2271
|
+
# @return [Array<Integer>]
|
2272
|
+
#
|
2273
|
+
# @!attribute [rw] reminder_type
|
2274
|
+
# The type of sound that users hear during the end of meeting
|
2275
|
+
# reminder.
|
2276
|
+
# @return [String]
|
2277
|
+
#
|
2278
|
+
# @!attribute [rw] enabled
|
2279
|
+
# Whether an end of meeting reminder is enabled or not.
|
2280
|
+
# @return [Boolean]
|
2281
|
+
#
|
2282
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/EndOfMeetingReminder AWS API Documentation
|
2283
|
+
#
|
2284
|
+
class EndOfMeetingReminder < Struct.new(
|
2285
|
+
:reminder_at_minutes,
|
2286
|
+
:reminder_type,
|
2287
|
+
:enabled)
|
2288
|
+
include Aws::Structure
|
2289
|
+
end
|
2290
|
+
|
2093
2291
|
# A filter name and value pair that is used to return a more specific
|
2094
2292
|
# list of results. Filters can be used to match a set of resources by
|
2095
2293
|
# various criteria.
|
@@ -2660,6 +2858,29 @@ module Aws::AlexaForBusiness
|
|
2660
2858
|
include Aws::Structure
|
2661
2859
|
end
|
2662
2860
|
|
2861
|
+
# Settings for the instant booking feature that are applied to a room
|
2862
|
+
# profile. When users start their meeting with Alexa, Alexa
|
2863
|
+
# automatically books the room for the configured duration if the room
|
2864
|
+
# is available.
|
2865
|
+
#
|
2866
|
+
# @!attribute [rw] duration_in_minutes
|
2867
|
+
# Duration between 15 and 240 minutes at increments of 15 that
|
2868
|
+
# determines how long to book an available room when a meeting is
|
2869
|
+
# started with Alexa.
|
2870
|
+
# @return [Integer]
|
2871
|
+
#
|
2872
|
+
# @!attribute [rw] enabled
|
2873
|
+
# Whether instant booking is enabled or not.
|
2874
|
+
# @return [Boolean]
|
2875
|
+
#
|
2876
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/InstantBooking AWS API Documentation
|
2877
|
+
#
|
2878
|
+
class InstantBooking < Struct.new(
|
2879
|
+
:duration_in_minutes,
|
2880
|
+
:enabled)
|
2881
|
+
include Aws::Structure
|
2882
|
+
end
|
2883
|
+
|
2663
2884
|
# The Certificate Authority can't issue or revoke a certificate.
|
2664
2885
|
#
|
2665
2886
|
# @!attribute [rw] message
|
@@ -2984,12 +3205,10 @@ module Aws::AlexaForBusiness
|
|
2984
3205
|
#
|
2985
3206
|
# @!attribute [rw] skill_group_arn
|
2986
3207
|
# The ARN of the skill group for which to list enabled skills.
|
2987
|
-
# Required.
|
2988
3208
|
# @return [String]
|
2989
3209
|
#
|
2990
3210
|
# @!attribute [rw] enablement_type
|
2991
|
-
# Whether the skill is enabled under the user's account
|
2992
|
-
# requires linking to be used.
|
3211
|
+
# Whether the skill is enabled under the user's account.
|
2993
3212
|
# @return [String]
|
2994
3213
|
#
|
2995
3214
|
# @!attribute [rw] skill_type
|
@@ -3000,14 +3219,14 @@ module Aws::AlexaForBusiness
|
|
3000
3219
|
# An optional token returned from a prior request. Use this token for
|
3001
3220
|
# pagination of results from this action. If this parameter is
|
3002
3221
|
# specified, the response includes only results beyond the token, up
|
3003
|
-
# to the value specified by `MaxResults`.
|
3222
|
+
# to the value specified by `MaxResults`.
|
3004
3223
|
# @return [String]
|
3005
3224
|
#
|
3006
3225
|
# @!attribute [rw] max_results
|
3007
3226
|
# The maximum number of results to include in the response. If more
|
3008
3227
|
# results exist than the specified `MaxResults` value, a token is
|
3009
3228
|
# included in the response so that the remaining results can be
|
3010
|
-
# retrieved.
|
3229
|
+
# retrieved.
|
3011
3230
|
# @return [Integer]
|
3012
3231
|
#
|
3013
3232
|
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ListSkillsRequest AWS API Documentation
|
@@ -3223,6 +3442,40 @@ module Aws::AlexaForBusiness
|
|
3223
3442
|
include Aws::Structure
|
3224
3443
|
end
|
3225
3444
|
|
3445
|
+
# Meeting room settings of a room profile.
|
3446
|
+
#
|
3447
|
+
# @!attribute [rw] room_utilization_metrics_enabled
|
3448
|
+
# Whether room utilization metrics are enabled or not.
|
3449
|
+
# @return [Boolean]
|
3450
|
+
#
|
3451
|
+
# @!attribute [rw] end_of_meeting_reminder
|
3452
|
+
# Settings for the end of meeting reminder feature that are applied to
|
3453
|
+
# a room profile. The end of meeting reminder enables Alexa to remind
|
3454
|
+
# users when a meeting is ending.
|
3455
|
+
# @return [Types::EndOfMeetingReminder]
|
3456
|
+
#
|
3457
|
+
# @!attribute [rw] instant_booking
|
3458
|
+
# Settings to automatically book the room if available for a
|
3459
|
+
# configured duration when joining a meeting with Alexa.
|
3460
|
+
# @return [Types::InstantBooking]
|
3461
|
+
#
|
3462
|
+
# @!attribute [rw] require_check_in
|
3463
|
+
# Settings for requiring a check in when a room is reserved. Alexa can
|
3464
|
+
# cancel a room reservation if it's not checked into. This makes the
|
3465
|
+
# room available for others. Users can check in by joining the meeting
|
3466
|
+
# with Alexa or an AVS device, or by saying “Alexa, check in.”
|
3467
|
+
# @return [Types::RequireCheckIn]
|
3468
|
+
#
|
3469
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/MeetingRoomConfiguration AWS API Documentation
|
3470
|
+
#
|
3471
|
+
class MeetingRoomConfiguration < Struct.new(
|
3472
|
+
:room_utilization_metrics_enabled,
|
3473
|
+
:end_of_meeting_reminder,
|
3474
|
+
:instant_booking,
|
3475
|
+
:require_check_in)
|
3476
|
+
include Aws::Structure
|
3477
|
+
end
|
3478
|
+
|
3226
3479
|
# The values that indicate whether a pin is always required (YES), never
|
3227
3480
|
# required (NO), or OPTIONAL.
|
3228
3481
|
#
|
@@ -3495,7 +3748,8 @@ module Aws::AlexaForBusiness
|
|
3495
3748
|
# @return [String]
|
3496
3749
|
#
|
3497
3750
|
# @!attribute [rw] locale
|
3498
|
-
# The locale of a room profile.
|
3751
|
+
# The locale of a room profile. (This is currently available only to a
|
3752
|
+
# limited preview audience.)
|
3499
3753
|
# @return [String]
|
3500
3754
|
#
|
3501
3755
|
# @!attribute [rw] setup_mode_disabled
|
@@ -3514,6 +3768,10 @@ module Aws::AlexaForBusiness
|
|
3514
3768
|
# The ARN of the address book.
|
3515
3769
|
# @return [String]
|
3516
3770
|
#
|
3771
|
+
# @!attribute [rw] meeting_room_configuration
|
3772
|
+
# Meeting room settings of a room profile.
|
3773
|
+
# @return [Types::MeetingRoomConfiguration]
|
3774
|
+
#
|
3517
3775
|
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/Profile AWS API Documentation
|
3518
3776
|
#
|
3519
3777
|
class Profile < Struct.new(
|
@@ -3529,7 +3787,8 @@ module Aws::AlexaForBusiness
|
|
3529
3787
|
:setup_mode_disabled,
|
3530
3788
|
:max_volume_limit,
|
3531
3789
|
:pstn_enabled,
|
3532
|
-
:address_book_arn
|
3790
|
+
:address_book_arn,
|
3791
|
+
:meeting_room_configuration)
|
3533
3792
|
include Aws::Structure
|
3534
3793
|
end
|
3535
3794
|
|
@@ -3552,7 +3811,7 @@ module Aws::AlexaForBusiness
|
|
3552
3811
|
# @return [String]
|
3553
3812
|
#
|
3554
3813
|
# @!attribute [rw] timezone
|
3555
|
-
# The
|
3814
|
+
# The time zone of a room profile.
|
3556
3815
|
# @return [String]
|
3557
3816
|
#
|
3558
3817
|
# @!attribute [rw] distance_unit
|
@@ -3568,7 +3827,8 @@ module Aws::AlexaForBusiness
|
|
3568
3827
|
# @return [String]
|
3569
3828
|
#
|
3570
3829
|
# @!attribute [rw] locale
|
3571
|
-
# The locale of a room profile.
|
3830
|
+
# The locale of a room profile. (This is currently available only to a
|
3831
|
+
# limited preview audience.)
|
3572
3832
|
# @return [String]
|
3573
3833
|
#
|
3574
3834
|
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ProfileData AWS API Documentation
|
@@ -3805,6 +4065,27 @@ module Aws::AlexaForBusiness
|
|
3805
4065
|
#
|
3806
4066
|
class RejectSkillResponse < Aws::EmptyStructure; end
|
3807
4067
|
|
4068
|
+
# Settings for the require check in feature that are applied to a room
|
4069
|
+
# profile. Require check in allows a meeting room’s Alexa or AVS device
|
4070
|
+
# to prompt the user to check in; otherwise, the room will be released.
|
4071
|
+
#
|
4072
|
+
# @!attribute [rw] release_after_minutes
|
4073
|
+
# Duration between 5 and 20 minutes to determine when to release the
|
4074
|
+
# room if it's not checked into.
|
4075
|
+
# @return [Integer]
|
4076
|
+
#
|
4077
|
+
# @!attribute [rw] enabled
|
4078
|
+
# Whether require check in is enabled or not.
|
4079
|
+
# @return [Boolean]
|
4080
|
+
#
|
4081
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/RequireCheckIn AWS API Documentation
|
4082
|
+
#
|
4083
|
+
class RequireCheckIn < Struct.new(
|
4084
|
+
:release_after_minutes,
|
4085
|
+
:enabled)
|
4086
|
+
include Aws::Structure
|
4087
|
+
end
|
4088
|
+
|
3808
4089
|
# @note When making an API call, you may pass ResolveRoomRequest
|
3809
4090
|
# data as a hash:
|
3810
4091
|
#
|
@@ -5104,7 +5385,7 @@ module Aws::AlexaForBusiness
|
|
5104
5385
|
# @return [String]
|
5105
5386
|
#
|
5106
5387
|
# @!attribute [rw] value
|
5107
|
-
# The value of a tag. Tag values are case
|
5388
|
+
# The value of a tag. Tag values are case sensitive and can be null.
|
5108
5389
|
# @return [String]
|
5109
5390
|
#
|
5110
5391
|
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/Tag AWS API Documentation
|
@@ -5462,6 +5743,43 @@ module Aws::AlexaForBusiness
|
|
5462
5743
|
#
|
5463
5744
|
class UpdateDeviceResponse < Aws::EmptyStructure; end
|
5464
5745
|
|
5746
|
+
# Settings for the end of meeting reminder feature that are applied to a
|
5747
|
+
# room profile. The end of meeting reminder enables Alexa to remind
|
5748
|
+
# users when a meeting is ending.
|
5749
|
+
#
|
5750
|
+
# @note When making an API call, you may pass UpdateEndOfMeetingReminder
|
5751
|
+
# data as a hash:
|
5752
|
+
#
|
5753
|
+
# {
|
5754
|
+
# reminder_at_minutes: [1],
|
5755
|
+
# reminder_type: "ANNOUNCEMENT_TIME_CHECK", # accepts ANNOUNCEMENT_TIME_CHECK, ANNOUNCEMENT_VARIABLE_TIME_LEFT, CHIME, KNOCK
|
5756
|
+
# enabled: false,
|
5757
|
+
# }
|
5758
|
+
#
|
5759
|
+
# @!attribute [rw] reminder_at_minutes
|
5760
|
+
# Updates settings for the end of meeting reminder feature that are
|
5761
|
+
# applied to a room profile. The end of meeting reminder enables Alexa
|
5762
|
+
# to remind users when a meeting is ending.
|
5763
|
+
# @return [Array<Integer>]
|
5764
|
+
#
|
5765
|
+
# @!attribute [rw] reminder_type
|
5766
|
+
# The type of sound that users hear during the end of meeting
|
5767
|
+
# reminder.
|
5768
|
+
# @return [String]
|
5769
|
+
#
|
5770
|
+
# @!attribute [rw] enabled
|
5771
|
+
# Whether an end of meeting reminder is enabled or not.
|
5772
|
+
# @return [Boolean]
|
5773
|
+
#
|
5774
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateEndOfMeetingReminder AWS API Documentation
|
5775
|
+
#
|
5776
|
+
class UpdateEndOfMeetingReminder < Struct.new(
|
5777
|
+
:reminder_at_minutes,
|
5778
|
+
:reminder_type,
|
5779
|
+
:enabled)
|
5780
|
+
include Aws::Structure
|
5781
|
+
end
|
5782
|
+
|
5465
5783
|
# @note When making an API call, you may pass UpdateGatewayGroupRequest
|
5466
5784
|
# data as a hash:
|
5467
5785
|
#
|
@@ -5537,6 +5855,90 @@ module Aws::AlexaForBusiness
|
|
5537
5855
|
#
|
5538
5856
|
class UpdateGatewayResponse < Aws::EmptyStructure; end
|
5539
5857
|
|
5858
|
+
# Updates settings for the instant booking feature that are applied to a
|
5859
|
+
# room profile. If instant booking is enabled, Alexa automatically
|
5860
|
+
# reserves a room if it is free when a user joins a meeting with Alexa.
|
5861
|
+
#
|
5862
|
+
# @note When making an API call, you may pass UpdateInstantBooking
|
5863
|
+
# data as a hash:
|
5864
|
+
#
|
5865
|
+
# {
|
5866
|
+
# duration_in_minutes: 1,
|
5867
|
+
# enabled: false,
|
5868
|
+
# }
|
5869
|
+
#
|
5870
|
+
# @!attribute [rw] duration_in_minutes
|
5871
|
+
# Duration between 15 and 240 minutes at increments of 15 that
|
5872
|
+
# determines how long to book an available room when a meeting is
|
5873
|
+
# started with Alexa.
|
5874
|
+
# @return [Integer]
|
5875
|
+
#
|
5876
|
+
# @!attribute [rw] enabled
|
5877
|
+
# Whether instant booking is enabled or not.
|
5878
|
+
# @return [Boolean]
|
5879
|
+
#
|
5880
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateInstantBooking AWS API Documentation
|
5881
|
+
#
|
5882
|
+
class UpdateInstantBooking < Struct.new(
|
5883
|
+
:duration_in_minutes,
|
5884
|
+
:enabled)
|
5885
|
+
include Aws::Structure
|
5886
|
+
end
|
5887
|
+
|
5888
|
+
# Updates meeting room settings of a room profile.
|
5889
|
+
#
|
5890
|
+
# @note When making an API call, you may pass UpdateMeetingRoomConfiguration
|
5891
|
+
# data as a hash:
|
5892
|
+
#
|
5893
|
+
# {
|
5894
|
+
# room_utilization_metrics_enabled: false,
|
5895
|
+
# end_of_meeting_reminder: {
|
5896
|
+
# reminder_at_minutes: [1],
|
5897
|
+
# reminder_type: "ANNOUNCEMENT_TIME_CHECK", # accepts ANNOUNCEMENT_TIME_CHECK, ANNOUNCEMENT_VARIABLE_TIME_LEFT, CHIME, KNOCK
|
5898
|
+
# enabled: false,
|
5899
|
+
# },
|
5900
|
+
# instant_booking: {
|
5901
|
+
# duration_in_minutes: 1,
|
5902
|
+
# enabled: false,
|
5903
|
+
# },
|
5904
|
+
# require_check_in: {
|
5905
|
+
# release_after_minutes: 1,
|
5906
|
+
# enabled: false,
|
5907
|
+
# },
|
5908
|
+
# }
|
5909
|
+
#
|
5910
|
+
# @!attribute [rw] room_utilization_metrics_enabled
|
5911
|
+
# Whether room utilization metrics are enabled or not.
|
5912
|
+
# @return [Boolean]
|
5913
|
+
#
|
5914
|
+
# @!attribute [rw] end_of_meeting_reminder
|
5915
|
+
# Settings for the end of meeting reminder feature that are applied to
|
5916
|
+
# a room profile. The end of meeting reminder enables Alexa to remind
|
5917
|
+
# users when a meeting is ending.
|
5918
|
+
# @return [Types::UpdateEndOfMeetingReminder]
|
5919
|
+
#
|
5920
|
+
# @!attribute [rw] instant_booking
|
5921
|
+
# Settings to automatically book an available room available for a
|
5922
|
+
# configured duration when joining a meeting with Alexa.
|
5923
|
+
# @return [Types::UpdateInstantBooking]
|
5924
|
+
#
|
5925
|
+
# @!attribute [rw] require_check_in
|
5926
|
+
# Settings for requiring a check in when a room is reserved. Alexa can
|
5927
|
+
# cancel a room reservation if it's not checked into to make the room
|
5928
|
+
# available for others. Users can check in by joining the meeting with
|
5929
|
+
# Alexa or an AVS device, or by saying “Alexa, check in.”
|
5930
|
+
# @return [Types::UpdateRequireCheckIn]
|
5931
|
+
#
|
5932
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateMeetingRoomConfiguration AWS API Documentation
|
5933
|
+
#
|
5934
|
+
class UpdateMeetingRoomConfiguration < Struct.new(
|
5935
|
+
:room_utilization_metrics_enabled,
|
5936
|
+
:end_of_meeting_reminder,
|
5937
|
+
:instant_booking,
|
5938
|
+
:require_check_in)
|
5939
|
+
include Aws::Structure
|
5940
|
+
end
|
5941
|
+
|
5540
5942
|
# @note When making an API call, you may pass UpdateNetworkProfileRequest
|
5541
5943
|
# data as a hash:
|
5542
5944
|
#
|
@@ -5617,6 +6019,22 @@ module Aws::AlexaForBusiness
|
|
5617
6019
|
# setup_mode_disabled: false,
|
5618
6020
|
# max_volume_limit: 1,
|
5619
6021
|
# pstn_enabled: false,
|
6022
|
+
# meeting_room_configuration: {
|
6023
|
+
# room_utilization_metrics_enabled: false,
|
6024
|
+
# end_of_meeting_reminder: {
|
6025
|
+
# reminder_at_minutes: [1],
|
6026
|
+
# reminder_type: "ANNOUNCEMENT_TIME_CHECK", # accepts ANNOUNCEMENT_TIME_CHECK, ANNOUNCEMENT_VARIABLE_TIME_LEFT, CHIME, KNOCK
|
6027
|
+
# enabled: false,
|
6028
|
+
# },
|
6029
|
+
# instant_booking: {
|
6030
|
+
# duration_in_minutes: 1,
|
6031
|
+
# enabled: false,
|
6032
|
+
# },
|
6033
|
+
# require_check_in: {
|
6034
|
+
# release_after_minutes: 1,
|
6035
|
+
# enabled: false,
|
6036
|
+
# },
|
6037
|
+
# },
|
5620
6038
|
# }
|
5621
6039
|
#
|
5622
6040
|
# @!attribute [rw] profile_arn
|
@@ -5653,7 +6071,8 @@ module Aws::AlexaForBusiness
|
|
5653
6071
|
# @return [String]
|
5654
6072
|
#
|
5655
6073
|
# @!attribute [rw] locale
|
5656
|
-
# The updated locale for the room profile.
|
6074
|
+
# The updated locale for the room profile. (This is currently only
|
6075
|
+
# available to a limited preview audience.)
|
5657
6076
|
# @return [String]
|
5658
6077
|
#
|
5659
6078
|
# @!attribute [rw] setup_mode_disabled
|
@@ -5668,6 +6087,10 @@ module Aws::AlexaForBusiness
|
|
5668
6087
|
# Whether the PSTN setting of the room profile is enabled.
|
5669
6088
|
# @return [Boolean]
|
5670
6089
|
#
|
6090
|
+
# @!attribute [rw] meeting_room_configuration
|
6091
|
+
# The updated meeting room settings of a room profile.
|
6092
|
+
# @return [Types::UpdateMeetingRoomConfiguration]
|
6093
|
+
#
|
5671
6094
|
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateProfileRequest AWS API Documentation
|
5672
6095
|
#
|
5673
6096
|
class UpdateProfileRequest < Struct.new(
|
@@ -5682,7 +6105,8 @@ module Aws::AlexaForBusiness
|
|
5682
6105
|
:locale,
|
5683
6106
|
:setup_mode_disabled,
|
5684
6107
|
:max_volume_limit,
|
5685
|
-
:pstn_enabled
|
6108
|
+
:pstn_enabled,
|
6109
|
+
:meeting_room_configuration)
|
5686
6110
|
include Aws::Structure
|
5687
6111
|
end
|
5688
6112
|
|
@@ -5690,6 +6114,36 @@ module Aws::AlexaForBusiness
|
|
5690
6114
|
#
|
5691
6115
|
class UpdateProfileResponse < Aws::EmptyStructure; end
|
5692
6116
|
|
6117
|
+
# Updates settings for the require check in feature that are applied to
|
6118
|
+
# a room profile. Require check in allows a meeting room’s Alexa or AVS
|
6119
|
+
# device to prompt the user to check in; otherwise, the room will be
|
6120
|
+
# released.
|
6121
|
+
#
|
6122
|
+
# @note When making an API call, you may pass UpdateRequireCheckIn
|
6123
|
+
# data as a hash:
|
6124
|
+
#
|
6125
|
+
# {
|
6126
|
+
# release_after_minutes: 1,
|
6127
|
+
# enabled: false,
|
6128
|
+
# }
|
6129
|
+
#
|
6130
|
+
# @!attribute [rw] release_after_minutes
|
6131
|
+
# Duration between 5 and 20 minutes to determine when to release the
|
6132
|
+
# room if it's not checked into.
|
6133
|
+
# @return [Integer]
|
6134
|
+
#
|
6135
|
+
# @!attribute [rw] enabled
|
6136
|
+
# Whether require check in is enabled or not.
|
6137
|
+
# @return [Boolean]
|
6138
|
+
#
|
6139
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateRequireCheckIn AWS API Documentation
|
6140
|
+
#
|
6141
|
+
class UpdateRequireCheckIn < Struct.new(
|
6142
|
+
:release_after_minutes,
|
6143
|
+
:enabled)
|
6144
|
+
include Aws::Structure
|
6145
|
+
end
|
6146
|
+
|
5693
6147
|
# @note When making an API call, you may pass UpdateRoomRequest
|
5694
6148
|
# data as a hash:
|
5695
6149
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-alexaforbusiness
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.32.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-11-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|