aws-sdk-alexaforbusiness 1.13.0 → 1.14.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: 75f5f8eae48821ebfe87f733c8103e7ac220e87b
4
- data.tar.gz: 60659d643db61ca1fcdeb0f0258d4b4903941121
3
+ metadata.gz: 50e58b8811c179dc63c388471c1423074711ba1d
4
+ data.tar.gz: e6ee2dc1487b0d63be22ee754c40893cc6f20205
5
5
  SHA512:
6
- metadata.gz: 7b204562ff7ff9ac9aec7b93b6c7961ee28e6b9c63883f2333a94c755378cfd5879b4b3365fcde41f4a1a403a7078b5d3c3b9325f1bd24825829c9fd271b1c45
7
- data.tar.gz: 6c2136288e740f4addcbe5abc20186173f1b8757a1f19c13e29f2f4630c80f230a0b206ceee98d217d1f9f5377c1bd3bbc937264ff302bf883b687a59295039c
6
+ metadata.gz: 835a6a44e89d33cf32083a7d7af533a88b20c1556f6076374589226a13a67267063422c120316f45a473a33626cc80d1b8e98b81e2735930f9e05e22d2713fe3
7
+ data.tar.gz: 48c4cf13b7a18fb0a3c1961c2392b01c0ebb1d78d193aff42d873aa3b7312331615b97a2496eb08e1b218f96bc360ed24ea1557ef3b633f8af53cc0f00077fe3
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-alexaforbusiness/customizations'
42
42
  # @service
43
43
  module Aws::AlexaForBusiness
44
44
 
45
- GEM_VERSION = '1.13.0'
45
+ GEM_VERSION = '1.14.0'
46
46
 
47
47
  end
@@ -387,6 +387,67 @@ module Aws::AlexaForBusiness
387
387
  req.send_request(options)
388
388
  end
389
389
 
390
+ # Creates a recurring schedule for usage reports to deliver to the
391
+ # specified S3 location with a specified daily or weekly interval.
392
+ #
393
+ # @option params [String] :schedule_name
394
+ # The name identifier of the schedule.
395
+ #
396
+ # @option params [String] :s3_bucket_name
397
+ # The S3 bucket name of the output reports.
398
+ #
399
+ # @option params [String] :s3_key_prefix
400
+ # The S3 key where the report is delivered.
401
+ #
402
+ # @option params [required, String] :format
403
+ # The format of the generated report (individual CSV files or zipped
404
+ # files of individual files).
405
+ #
406
+ # @option params [required, Types::BusinessReportContentRange] :content_range
407
+ # The content range of the reports.
408
+ #
409
+ # @option params [Types::BusinessReportRecurrence] :recurrence
410
+ # The recurrence of the reports.
411
+ #
412
+ # @option params [String] :client_request_token
413
+ # The client request token.
414
+ #
415
+ # **A suitable default value is auto-generated.** You should normally
416
+ # not need to pass this option.**
417
+ #
418
+ # @return [Types::CreateBusinessReportScheduleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
419
+ #
420
+ # * {Types::CreateBusinessReportScheduleResponse#schedule_arn #schedule_arn} => String
421
+ #
422
+ # @example Request syntax with placeholder values
423
+ #
424
+ # resp = client.create_business_report_schedule({
425
+ # schedule_name: "BusinessReportScheduleName",
426
+ # s3_bucket_name: "CustomerS3BucketName",
427
+ # s3_key_prefix: "S3KeyPrefix",
428
+ # format: "CSV", # required, accepts CSV, CSV_ZIP
429
+ # content_range: { # required
430
+ # interval: "ONE_DAY", # accepts ONE_DAY, ONE_WEEK
431
+ # },
432
+ # recurrence: {
433
+ # start_date: "Date",
434
+ # },
435
+ # client_request_token: "ClientRequestToken",
436
+ # })
437
+ #
438
+ # @example Response structure
439
+ #
440
+ # resp.schedule_arn #=> String
441
+ #
442
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/CreateBusinessReportSchedule AWS API Documentation
443
+ #
444
+ # @overload create_business_report_schedule(params = {})
445
+ # @param [Hash] params ({})
446
+ def create_business_report_schedule(params = {}, options = {})
447
+ req = build_request(:create_business_report_schedule, params)
448
+ req.send_request(options)
449
+ end
450
+
390
451
  # Adds a new conference provider under the user's AWS account.
391
452
  #
392
453
  # @option params [required, String] :conference_provider_name
@@ -425,7 +486,7 @@ module Aws::AlexaForBusiness
425
486
  # },
426
487
  # pstn_dial_in: {
427
488
  # country_code: "CountryCode", # required
428
- # phone_number: "PhoneNumber", # required
489
+ # phone_number: "OutboundPhoneNumber", # required
429
490
  # one_click_id_delay: "OneClickIdDelay", # required
430
491
  # one_click_pin_delay: "OneClickPinDelay", # required
431
492
  # },
@@ -461,7 +522,7 @@ module Aws::AlexaForBusiness
461
522
  # The last name of the contact that is used to call the contact on the
462
523
  # device.
463
524
  #
464
- # @option params [required, String] :phone_number
525
+ # @option params [String] :phone_number
465
526
  # The phone number of the contact in E.164 format.
466
527
  #
467
528
  # @option params [String] :client_request_token
@@ -481,7 +542,7 @@ module Aws::AlexaForBusiness
481
542
  # display_name: "ContactName",
482
543
  # first_name: "ContactName", # required
483
544
  # last_name: "ContactName",
484
- # phone_number: "E164PhoneNumber", # required
545
+ # phone_number: "E164PhoneNumber",
485
546
  # client_request_token: "ClientRequestToken",
486
547
  # })
487
548
  #
@@ -742,6 +803,29 @@ module Aws::AlexaForBusiness
742
803
  req.send_request(options)
743
804
  end
744
805
 
806
+ # Deletes the recurring report delivery schedule with the specified
807
+ # schedule ARN.
808
+ #
809
+ # @option params [required, String] :schedule_arn
810
+ # The ARN of the business report schedule.
811
+ #
812
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
813
+ #
814
+ # @example Request syntax with placeholder values
815
+ #
816
+ # resp = client.delete_business_report_schedule({
817
+ # schedule_arn: "Arn", # required
818
+ # })
819
+ #
820
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/DeleteBusinessReportSchedule AWS API Documentation
821
+ #
822
+ # @overload delete_business_report_schedule(params = {})
823
+ # @param [Hash] params ({})
824
+ def delete_business_report_schedule(params = {}, options = {})
825
+ req = build_request(:delete_business_report_schedule, params)
826
+ req.send_request(options)
827
+ end
828
+
745
829
  # Deletes a conference provider.
746
830
  #
747
831
  # @option params [required, String] :conference_provider_arn
@@ -1382,6 +1466,54 @@ module Aws::AlexaForBusiness
1382
1466
  req.send_request(options)
1383
1467
  end
1384
1468
 
1469
+ # Lists the details of the schedules that a user configured.
1470
+ #
1471
+ # @option params [String] :next_token
1472
+ # The token used to list the remaining schedules from the previous API
1473
+ # call.
1474
+ #
1475
+ # @option params [Integer] :max_results
1476
+ # The maximum number of schedules listed in the call.
1477
+ #
1478
+ # @return [Types::ListBusinessReportSchedulesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1479
+ #
1480
+ # * {Types::ListBusinessReportSchedulesResponse#business_report_schedules #business_report_schedules} => Array<Types::BusinessReportSchedule>
1481
+ # * {Types::ListBusinessReportSchedulesResponse#next_token #next_token} => String
1482
+ #
1483
+ # @example Request syntax with placeholder values
1484
+ #
1485
+ # resp = client.list_business_report_schedules({
1486
+ # next_token: "NextToken",
1487
+ # max_results: 1,
1488
+ # })
1489
+ #
1490
+ # @example Response structure
1491
+ #
1492
+ # resp.business_report_schedules #=> Array
1493
+ # resp.business_report_schedules[0].schedule_arn #=> String
1494
+ # resp.business_report_schedules[0].schedule_name #=> String
1495
+ # resp.business_report_schedules[0].s3_bucket_name #=> String
1496
+ # resp.business_report_schedules[0].s3_key_prefix #=> String
1497
+ # resp.business_report_schedules[0].format #=> String, one of "CSV", "CSV_ZIP"
1498
+ # resp.business_report_schedules[0].content_range.interval #=> String, one of "ONE_DAY", "ONE_WEEK"
1499
+ # resp.business_report_schedules[0].recurrence.start_date #=> String
1500
+ # resp.business_report_schedules[0].last_business_report.status #=> String, one of "RUNNING", "SUCCEEDED", "FAILED"
1501
+ # resp.business_report_schedules[0].last_business_report.failure_code #=> String, one of "ACCESS_DENIED", "NO_SUCH_BUCKET", "INTERNAL_FAILURE"
1502
+ # resp.business_report_schedules[0].last_business_report.s3_location.path #=> String
1503
+ # resp.business_report_schedules[0].last_business_report.s3_location.bucket_name #=> String
1504
+ # resp.business_report_schedules[0].last_business_report.delivery_time #=> Time
1505
+ # resp.business_report_schedules[0].last_business_report.download_url #=> String
1506
+ # resp.next_token #=> String
1507
+ #
1508
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ListBusinessReportSchedules AWS API Documentation
1509
+ #
1510
+ # @overload list_business_report_schedules(params = {})
1511
+ # @param [Hash] params ({})
1512
+ def list_business_report_schedules(params = {}, options = {})
1513
+ req = build_request(:list_business_report_schedules, params)
1514
+ req.send_request(options)
1515
+ end
1516
+
1385
1517
  # Lists conference providers under a specific AWS account.
1386
1518
  #
1387
1519
  # @option params [String] :next_token
@@ -2623,6 +2755,52 @@ module Aws::AlexaForBusiness
2623
2755
  req.send_request(options)
2624
2756
  end
2625
2757
 
2758
+ # Updates the configuration of the report delivery schedule with the
2759
+ # specified schedule ARN.
2760
+ #
2761
+ # @option params [required, String] :schedule_arn
2762
+ # The ARN of the business report schedule.
2763
+ #
2764
+ # @option params [String] :s3_bucket_name
2765
+ # The S3 location of the output reports.
2766
+ #
2767
+ # @option params [String] :s3_key_prefix
2768
+ # The S3 key where the report is delivered.
2769
+ #
2770
+ # @option params [String] :format
2771
+ # The format of the generated report (individual CSV files or zipped
2772
+ # files of individual files).
2773
+ #
2774
+ # @option params [String] :schedule_name
2775
+ # The name identifier of the schedule.
2776
+ #
2777
+ # @option params [Types::BusinessReportRecurrence] :recurrence
2778
+ # The recurrence of the reports.
2779
+ #
2780
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2781
+ #
2782
+ # @example Request syntax with placeholder values
2783
+ #
2784
+ # resp = client.update_business_report_schedule({
2785
+ # schedule_arn: "Arn", # required
2786
+ # s3_bucket_name: "CustomerS3BucketName",
2787
+ # s3_key_prefix: "S3KeyPrefix",
2788
+ # format: "CSV", # accepts CSV, CSV_ZIP
2789
+ # schedule_name: "BusinessReportScheduleName",
2790
+ # recurrence: {
2791
+ # start_date: "Date",
2792
+ # },
2793
+ # })
2794
+ #
2795
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateBusinessReportSchedule AWS API Documentation
2796
+ #
2797
+ # @overload update_business_report_schedule(params = {})
2798
+ # @param [Hash] params ({})
2799
+ def update_business_report_schedule(params = {}, options = {})
2800
+ req = build_request(:update_business_report_schedule, params)
2801
+ req.send_request(options)
2802
+ end
2803
+
2626
2804
  # Updates an existing conference provider's settings.
2627
2805
  #
2628
2806
  # @option params [required, String] :conference_provider_arn
@@ -2653,7 +2831,7 @@ module Aws::AlexaForBusiness
2653
2831
  # },
2654
2832
  # pstn_dial_in: {
2655
2833
  # country_code: "CountryCode", # required
2656
- # phone_number: "PhoneNumber", # required
2834
+ # phone_number: "OutboundPhoneNumber", # required
2657
2835
  # one_click_id_delay: "OneClickIdDelay", # required
2658
2836
  # one_click_pin_delay: "OneClickPinDelay", # required
2659
2837
  # },
@@ -2879,7 +3057,7 @@ module Aws::AlexaForBusiness
2879
3057
  params: params,
2880
3058
  config: config)
2881
3059
  context[:gem_name] = 'aws-sdk-alexaforbusiness'
2882
- context[:gem_version] = '1.13.0'
3060
+ context[:gem_version] = '1.14.0'
2883
3061
  Seahorse::Client::Request.new(handlers, context)
2884
3062
  end
2885
3063
 
@@ -37,6 +37,19 @@ module Aws::AlexaForBusiness
37
37
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
38
38
  BulletPoint = Shapes::StringShape.new(name: 'BulletPoint')
39
39
  BulletPoints = Shapes::ListShape.new(name: 'BulletPoints')
40
+ BusinessReport = Shapes::StructureShape.new(name: 'BusinessReport')
41
+ BusinessReportContentRange = Shapes::StructureShape.new(name: 'BusinessReportContentRange')
42
+ BusinessReportDownloadUrl = Shapes::StringShape.new(name: 'BusinessReportDownloadUrl')
43
+ BusinessReportFailureCode = Shapes::StringShape.new(name: 'BusinessReportFailureCode')
44
+ BusinessReportFormat = Shapes::StringShape.new(name: 'BusinessReportFormat')
45
+ BusinessReportInterval = Shapes::StringShape.new(name: 'BusinessReportInterval')
46
+ BusinessReportRecurrence = Shapes::StructureShape.new(name: 'BusinessReportRecurrence')
47
+ BusinessReportS3Location = Shapes::StructureShape.new(name: 'BusinessReportS3Location')
48
+ BusinessReportS3Path = Shapes::StringShape.new(name: 'BusinessReportS3Path')
49
+ BusinessReportSchedule = Shapes::StructureShape.new(name: 'BusinessReportSchedule')
50
+ BusinessReportScheduleList = Shapes::ListShape.new(name: 'BusinessReportScheduleList')
51
+ BusinessReportScheduleName = Shapes::StringShape.new(name: 'BusinessReportScheduleName')
52
+ BusinessReportStatus = Shapes::StringShape.new(name: 'BusinessReportStatus')
40
53
  Category = Shapes::StructureShape.new(name: 'Category')
41
54
  CategoryId = Shapes::IntegerShape.new(name: 'CategoryId')
42
55
  CategoryList = Shapes::ListShape.new(name: 'CategoryList')
@@ -58,6 +71,8 @@ module Aws::AlexaForBusiness
58
71
  CountryCode = Shapes::StringShape.new(name: 'CountryCode')
59
72
  CreateAddressBookRequest = Shapes::StructureShape.new(name: 'CreateAddressBookRequest')
60
73
  CreateAddressBookResponse = Shapes::StructureShape.new(name: 'CreateAddressBookResponse')
74
+ CreateBusinessReportScheduleRequest = Shapes::StructureShape.new(name: 'CreateBusinessReportScheduleRequest')
75
+ CreateBusinessReportScheduleResponse = Shapes::StructureShape.new(name: 'CreateBusinessReportScheduleResponse')
61
76
  CreateConferenceProviderRequest = Shapes::StructureShape.new(name: 'CreateConferenceProviderRequest')
62
77
  CreateConferenceProviderResponse = Shapes::StructureShape.new(name: 'CreateConferenceProviderResponse')
63
78
  CreateContactRequest = Shapes::StructureShape.new(name: 'CreateContactRequest')
@@ -70,8 +85,12 @@ module Aws::AlexaForBusiness
70
85
  CreateSkillGroupResponse = Shapes::StructureShape.new(name: 'CreateSkillGroupResponse')
71
86
  CreateUserRequest = Shapes::StructureShape.new(name: 'CreateUserRequest')
72
87
  CreateUserResponse = Shapes::StructureShape.new(name: 'CreateUserResponse')
88
+ CustomerS3BucketName = Shapes::StringShape.new(name: 'CustomerS3BucketName')
89
+ Date = Shapes::StringShape.new(name: 'Date')
73
90
  DeleteAddressBookRequest = Shapes::StructureShape.new(name: 'DeleteAddressBookRequest')
74
91
  DeleteAddressBookResponse = Shapes::StructureShape.new(name: 'DeleteAddressBookResponse')
92
+ DeleteBusinessReportScheduleRequest = Shapes::StructureShape.new(name: 'DeleteBusinessReportScheduleRequest')
93
+ DeleteBusinessReportScheduleResponse = Shapes::StructureShape.new(name: 'DeleteBusinessReportScheduleResponse')
75
94
  DeleteConferenceProviderRequest = Shapes::StructureShape.new(name: 'DeleteConferenceProviderRequest')
76
95
  DeleteConferenceProviderResponse = Shapes::StructureShape.new(name: 'DeleteConferenceProviderResponse')
77
96
  DeleteContactRequest = Shapes::StructureShape.new(name: 'DeleteContactRequest')
@@ -164,6 +183,8 @@ module Aws::AlexaForBusiness
164
183
  InvocationPhrase = Shapes::StringShape.new(name: 'InvocationPhrase')
165
184
  Key = Shapes::StringShape.new(name: 'Key')
166
185
  LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
186
+ ListBusinessReportSchedulesRequest = Shapes::StructureShape.new(name: 'ListBusinessReportSchedulesRequest')
187
+ ListBusinessReportSchedulesResponse = Shapes::StructureShape.new(name: 'ListBusinessReportSchedulesResponse')
167
188
  ListConferenceProvidersRequest = Shapes::StructureShape.new(name: 'ListConferenceProvidersRequest')
168
189
  ListConferenceProvidersResponse = Shapes::StructureShape.new(name: 'ListConferenceProvidersResponse')
169
190
  ListDeviceEventsRequest = Shapes::StructureShape.new(name: 'ListDeviceEventsRequest')
@@ -188,8 +209,8 @@ module Aws::AlexaForBusiness
188
209
  NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
189
210
  OneClickIdDelay = Shapes::StringShape.new(name: 'OneClickIdDelay')
190
211
  OneClickPinDelay = Shapes::StringShape.new(name: 'OneClickPinDelay')
212
+ OutboundPhoneNumber = Shapes::StringShape.new(name: 'OutboundPhoneNumber')
191
213
  PSTNDialIn = Shapes::StructureShape.new(name: 'PSTNDialIn')
192
- PhoneNumber = Shapes::StringShape.new(name: 'PhoneNumber')
193
214
  PrivacyPolicy = Shapes::StringShape.new(name: 'PrivacyPolicy')
194
215
  ProductDescription = Shapes::StringShape.new(name: 'ProductDescription')
195
216
  ProductId = Shapes::StringShape.new(name: 'ProductId')
@@ -227,6 +248,7 @@ module Aws::AlexaForBusiness
227
248
  RoomSkillParameterKey = Shapes::StringShape.new(name: 'RoomSkillParameterKey')
228
249
  RoomSkillParameterValue = Shapes::StringShape.new(name: 'RoomSkillParameterValue')
229
250
  RoomSkillParameters = Shapes::ListShape.new(name: 'RoomSkillParameters')
251
+ S3KeyPrefix = Shapes::StringShape.new(name: 'S3KeyPrefix')
230
252
  SampleUtterances = Shapes::ListShape.new(name: 'SampleUtterances')
231
253
  SearchAddressBooksRequest = Shapes::StructureShape.new(name: 'SearchAddressBooksRequest')
232
254
  SearchAddressBooksResponse = Shapes::StructureShape.new(name: 'SearchAddressBooksResponse')
@@ -289,6 +311,8 @@ module Aws::AlexaForBusiness
289
311
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
290
312
  UpdateAddressBookRequest = Shapes::StructureShape.new(name: 'UpdateAddressBookRequest')
291
313
  UpdateAddressBookResponse = Shapes::StructureShape.new(name: 'UpdateAddressBookResponse')
314
+ UpdateBusinessReportScheduleRequest = Shapes::StructureShape.new(name: 'UpdateBusinessReportScheduleRequest')
315
+ UpdateBusinessReportScheduleResponse = Shapes::StructureShape.new(name: 'UpdateBusinessReportScheduleResponse')
292
316
  UpdateConferenceProviderRequest = Shapes::StructureShape.new(name: 'UpdateConferenceProviderRequest')
293
317
  UpdateConferenceProviderResponse = Shapes::StructureShape.new(name: 'UpdateConferenceProviderResponse')
294
318
  UpdateContactRequest = Shapes::StructureShape.new(name: 'UpdateContactRequest')
@@ -360,6 +384,35 @@ module Aws::AlexaForBusiness
360
384
 
361
385
  BulletPoints.member = Shapes::ShapeRef.new(shape: BulletPoint)
362
386
 
387
+ BusinessReport.add_member(:status, Shapes::ShapeRef.new(shape: BusinessReportStatus, location_name: "Status"))
388
+ BusinessReport.add_member(:failure_code, Shapes::ShapeRef.new(shape: BusinessReportFailureCode, location_name: "FailureCode"))
389
+ BusinessReport.add_member(:s3_location, Shapes::ShapeRef.new(shape: BusinessReportS3Location, location_name: "S3Location"))
390
+ BusinessReport.add_member(:delivery_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "DeliveryTime"))
391
+ BusinessReport.add_member(:download_url, Shapes::ShapeRef.new(shape: BusinessReportDownloadUrl, location_name: "DownloadUrl"))
392
+ BusinessReport.struct_class = Types::BusinessReport
393
+
394
+ BusinessReportContentRange.add_member(:interval, Shapes::ShapeRef.new(shape: BusinessReportInterval, location_name: "Interval"))
395
+ BusinessReportContentRange.struct_class = Types::BusinessReportContentRange
396
+
397
+ BusinessReportRecurrence.add_member(:start_date, Shapes::ShapeRef.new(shape: Date, location_name: "StartDate"))
398
+ BusinessReportRecurrence.struct_class = Types::BusinessReportRecurrence
399
+
400
+ BusinessReportS3Location.add_member(:path, Shapes::ShapeRef.new(shape: BusinessReportS3Path, location_name: "Path"))
401
+ BusinessReportS3Location.add_member(:bucket_name, Shapes::ShapeRef.new(shape: CustomerS3BucketName, location_name: "BucketName"))
402
+ BusinessReportS3Location.struct_class = Types::BusinessReportS3Location
403
+
404
+ BusinessReportSchedule.add_member(:schedule_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ScheduleArn"))
405
+ BusinessReportSchedule.add_member(:schedule_name, Shapes::ShapeRef.new(shape: BusinessReportScheduleName, location_name: "ScheduleName"))
406
+ BusinessReportSchedule.add_member(:s3_bucket_name, Shapes::ShapeRef.new(shape: CustomerS3BucketName, location_name: "S3BucketName"))
407
+ BusinessReportSchedule.add_member(:s3_key_prefix, Shapes::ShapeRef.new(shape: S3KeyPrefix, location_name: "S3KeyPrefix"))
408
+ BusinessReportSchedule.add_member(:format, Shapes::ShapeRef.new(shape: BusinessReportFormat, location_name: "Format"))
409
+ BusinessReportSchedule.add_member(:content_range, Shapes::ShapeRef.new(shape: BusinessReportContentRange, location_name: "ContentRange"))
410
+ BusinessReportSchedule.add_member(:recurrence, Shapes::ShapeRef.new(shape: BusinessReportRecurrence, location_name: "Recurrence"))
411
+ BusinessReportSchedule.add_member(:last_business_report, Shapes::ShapeRef.new(shape: BusinessReport, location_name: "LastBusinessReport"))
412
+ BusinessReportSchedule.struct_class = Types::BusinessReportSchedule
413
+
414
+ BusinessReportScheduleList.member = Shapes::ShapeRef.new(shape: BusinessReportSchedule)
415
+
363
416
  Category.add_member(:category_id, Shapes::ShapeRef.new(shape: CategoryId, location_name: "CategoryId"))
364
417
  Category.add_member(:category_name, Shapes::ShapeRef.new(shape: CategoryName, location_name: "CategoryName"))
365
418
  Category.struct_class = Types::Category
@@ -403,6 +456,18 @@ module Aws::AlexaForBusiness
403
456
  CreateAddressBookResponse.add_member(:address_book_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "AddressBookArn"))
404
457
  CreateAddressBookResponse.struct_class = Types::CreateAddressBookResponse
405
458
 
459
+ CreateBusinessReportScheduleRequest.add_member(:schedule_name, Shapes::ShapeRef.new(shape: BusinessReportScheduleName, location_name: "ScheduleName"))
460
+ CreateBusinessReportScheduleRequest.add_member(:s3_bucket_name, Shapes::ShapeRef.new(shape: CustomerS3BucketName, location_name: "S3BucketName"))
461
+ CreateBusinessReportScheduleRequest.add_member(:s3_key_prefix, Shapes::ShapeRef.new(shape: S3KeyPrefix, location_name: "S3KeyPrefix"))
462
+ CreateBusinessReportScheduleRequest.add_member(:format, Shapes::ShapeRef.new(shape: BusinessReportFormat, required: true, location_name: "Format"))
463
+ CreateBusinessReportScheduleRequest.add_member(:content_range, Shapes::ShapeRef.new(shape: BusinessReportContentRange, required: true, location_name: "ContentRange"))
464
+ CreateBusinessReportScheduleRequest.add_member(:recurrence, Shapes::ShapeRef.new(shape: BusinessReportRecurrence, location_name: "Recurrence"))
465
+ CreateBusinessReportScheduleRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
466
+ CreateBusinessReportScheduleRequest.struct_class = Types::CreateBusinessReportScheduleRequest
467
+
468
+ CreateBusinessReportScheduleResponse.add_member(:schedule_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ScheduleArn"))
469
+ CreateBusinessReportScheduleResponse.struct_class = Types::CreateBusinessReportScheduleResponse
470
+
406
471
  CreateConferenceProviderRequest.add_member(:conference_provider_name, Shapes::ShapeRef.new(shape: ConferenceProviderName, required: true, location_name: "ConferenceProviderName"))
407
472
  CreateConferenceProviderRequest.add_member(:conference_provider_type, Shapes::ShapeRef.new(shape: ConferenceProviderType, required: true, location_name: "ConferenceProviderType"))
408
473
  CreateConferenceProviderRequest.add_member(:ip_dial_in, Shapes::ShapeRef.new(shape: IPDialIn, location_name: "IPDialIn"))
@@ -417,7 +482,7 @@ module Aws::AlexaForBusiness
417
482
  CreateContactRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: ContactName, location_name: "DisplayName"))
418
483
  CreateContactRequest.add_member(:first_name, Shapes::ShapeRef.new(shape: ContactName, required: true, location_name: "FirstName"))
419
484
  CreateContactRequest.add_member(:last_name, Shapes::ShapeRef.new(shape: ContactName, location_name: "LastName"))
420
- CreateContactRequest.add_member(:phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, required: true, location_name: "PhoneNumber"))
485
+ CreateContactRequest.add_member(:phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, location_name: "PhoneNumber"))
421
486
  CreateContactRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
422
487
  CreateContactRequest.struct_class = Types::CreateContactRequest
423
488
 
@@ -474,6 +539,11 @@ module Aws::AlexaForBusiness
474
539
 
475
540
  DeleteAddressBookResponse.struct_class = Types::DeleteAddressBookResponse
476
541
 
542
+ DeleteBusinessReportScheduleRequest.add_member(:schedule_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "ScheduleArn"))
543
+ DeleteBusinessReportScheduleRequest.struct_class = Types::DeleteBusinessReportScheduleRequest
544
+
545
+ DeleteBusinessReportScheduleResponse.struct_class = Types::DeleteBusinessReportScheduleResponse
546
+
477
547
  DeleteConferenceProviderRequest.add_member(:conference_provider_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "ConferenceProviderArn"))
478
548
  DeleteConferenceProviderRequest.struct_class = Types::DeleteConferenceProviderRequest
479
549
 
@@ -669,6 +739,14 @@ module Aws::AlexaForBusiness
669
739
  IPDialIn.add_member(:comms_protocol, Shapes::ShapeRef.new(shape: CommsProtocol, required: true, location_name: "CommsProtocol"))
670
740
  IPDialIn.struct_class = Types::IPDialIn
671
741
 
742
+ ListBusinessReportSchedulesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
743
+ ListBusinessReportSchedulesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
744
+ ListBusinessReportSchedulesRequest.struct_class = Types::ListBusinessReportSchedulesRequest
745
+
746
+ ListBusinessReportSchedulesResponse.add_member(:business_report_schedules, Shapes::ShapeRef.new(shape: BusinessReportScheduleList, location_name: "BusinessReportSchedules"))
747
+ ListBusinessReportSchedulesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
748
+ ListBusinessReportSchedulesResponse.struct_class = Types::ListBusinessReportSchedulesResponse
749
+
672
750
  ListConferenceProvidersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
673
751
  ListConferenceProvidersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
674
752
  ListConferenceProvidersRequest.struct_class = Types::ListConferenceProvidersRequest
@@ -739,7 +817,7 @@ module Aws::AlexaForBusiness
739
817
  NewInThisVersionBulletPoints.member = Shapes::ShapeRef.new(shape: BulletPoint)
740
818
 
741
819
  PSTNDialIn.add_member(:country_code, Shapes::ShapeRef.new(shape: CountryCode, required: true, location_name: "CountryCode"))
742
- PSTNDialIn.add_member(:phone_number, Shapes::ShapeRef.new(shape: PhoneNumber, required: true, location_name: "PhoneNumber"))
820
+ PSTNDialIn.add_member(:phone_number, Shapes::ShapeRef.new(shape: OutboundPhoneNumber, required: true, location_name: "PhoneNumber"))
743
821
  PSTNDialIn.add_member(:one_click_id_delay, Shapes::ShapeRef.new(shape: OneClickIdDelay, required: true, location_name: "OneClickIdDelay"))
744
822
  PSTNDialIn.add_member(:one_click_pin_delay, Shapes::ShapeRef.new(shape: OneClickPinDelay, required: true, location_name: "OneClickPinDelay"))
745
823
  PSTNDialIn.struct_class = Types::PSTNDialIn
@@ -1027,6 +1105,16 @@ module Aws::AlexaForBusiness
1027
1105
 
1028
1106
  UpdateAddressBookResponse.struct_class = Types::UpdateAddressBookResponse
1029
1107
 
1108
+ UpdateBusinessReportScheduleRequest.add_member(:schedule_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "ScheduleArn"))
1109
+ UpdateBusinessReportScheduleRequest.add_member(:s3_bucket_name, Shapes::ShapeRef.new(shape: CustomerS3BucketName, location_name: "S3BucketName"))
1110
+ UpdateBusinessReportScheduleRequest.add_member(:s3_key_prefix, Shapes::ShapeRef.new(shape: S3KeyPrefix, location_name: "S3KeyPrefix"))
1111
+ UpdateBusinessReportScheduleRequest.add_member(:format, Shapes::ShapeRef.new(shape: BusinessReportFormat, location_name: "Format"))
1112
+ UpdateBusinessReportScheduleRequest.add_member(:schedule_name, Shapes::ShapeRef.new(shape: BusinessReportScheduleName, location_name: "ScheduleName"))
1113
+ UpdateBusinessReportScheduleRequest.add_member(:recurrence, Shapes::ShapeRef.new(shape: BusinessReportRecurrence, location_name: "Recurrence"))
1114
+ UpdateBusinessReportScheduleRequest.struct_class = Types::UpdateBusinessReportScheduleRequest
1115
+
1116
+ UpdateBusinessReportScheduleResponse.struct_class = Types::UpdateBusinessReportScheduleResponse
1117
+
1030
1118
  UpdateConferenceProviderRequest.add_member(:conference_provider_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "ConferenceProviderArn"))
1031
1119
  UpdateConferenceProviderRequest.add_member(:conference_provider_type, Shapes::ShapeRef.new(shape: ConferenceProviderType, required: true, location_name: "ConferenceProviderType"))
1032
1120
  UpdateConferenceProviderRequest.add_member(:ip_dial_in, Shapes::ShapeRef.new(shape: IPDialIn, location_name: "IPDialIn"))
@@ -1170,6 +1258,15 @@ module Aws::AlexaForBusiness
1170
1258
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
1171
1259
  end)
1172
1260
 
1261
+ api.add_operation(:create_business_report_schedule, Seahorse::Model::Operation.new.tap do |o|
1262
+ o.name = "CreateBusinessReportSchedule"
1263
+ o.http_method = "POST"
1264
+ o.http_request_uri = "/"
1265
+ o.input = Shapes::ShapeRef.new(shape: CreateBusinessReportScheduleRequest)
1266
+ o.output = Shapes::ShapeRef.new(shape: CreateBusinessReportScheduleResponse)
1267
+ o.errors << Shapes::ShapeRef.new(shape: AlreadyExistsException)
1268
+ end)
1269
+
1173
1270
  api.add_operation(:create_conference_provider, Seahorse::Model::Operation.new.tap do |o|
1174
1271
  o.name = "CreateConferenceProvider"
1175
1272
  o.http_method = "POST"
@@ -1242,6 +1339,16 @@ module Aws::AlexaForBusiness
1242
1339
  o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
1243
1340
  end)
1244
1341
 
1342
+ api.add_operation(:delete_business_report_schedule, Seahorse::Model::Operation.new.tap do |o|
1343
+ o.name = "DeleteBusinessReportSchedule"
1344
+ o.http_method = "POST"
1345
+ o.http_request_uri = "/"
1346
+ o.input = Shapes::ShapeRef.new(shape: DeleteBusinessReportScheduleRequest)
1347
+ o.output = Shapes::ShapeRef.new(shape: DeleteBusinessReportScheduleResponse)
1348
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
1349
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
1350
+ end)
1351
+
1245
1352
  api.add_operation(:delete_conference_provider, Seahorse::Model::Operation.new.tap do |o|
1246
1353
  o.name = "DeleteConferenceProvider"
1247
1354
  o.http_method = "POST"
@@ -1458,6 +1565,20 @@ module Aws::AlexaForBusiness
1458
1565
  o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
1459
1566
  end)
1460
1567
 
1568
+ api.add_operation(:list_business_report_schedules, Seahorse::Model::Operation.new.tap do |o|
1569
+ o.name = "ListBusinessReportSchedules"
1570
+ o.http_method = "POST"
1571
+ o.http_request_uri = "/"
1572
+ o.input = Shapes::ShapeRef.new(shape: ListBusinessReportSchedulesRequest)
1573
+ o.output = Shapes::ShapeRef.new(shape: ListBusinessReportSchedulesResponse)
1574
+ o[:pager] = Aws::Pager.new(
1575
+ limit_key: "max_results",
1576
+ tokens: {
1577
+ "next_token" => "next_token"
1578
+ }
1579
+ )
1580
+ end)
1581
+
1461
1582
  api.add_operation(:list_conference_providers, Seahorse::Model::Operation.new.tap do |o|
1462
1583
  o.name = "ListConferenceProviders"
1463
1584
  o.http_method = "POST"
@@ -1783,6 +1904,16 @@ module Aws::AlexaForBusiness
1783
1904
  o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
1784
1905
  end)
1785
1906
 
1907
+ api.add_operation(:update_business_report_schedule, Seahorse::Model::Operation.new.tap do |o|
1908
+ o.name = "UpdateBusinessReportSchedule"
1909
+ o.http_method = "POST"
1910
+ o.http_request_uri = "/"
1911
+ o.input = Shapes::ShapeRef.new(shape: UpdateBusinessReportScheduleRequest)
1912
+ o.output = Shapes::ShapeRef.new(shape: UpdateBusinessReportScheduleResponse)
1913
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
1914
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
1915
+ end)
1916
+
1786
1917
  api.add_operation(:update_conference_provider, Seahorse::Model::Operation.new.tap do |o|
1787
1918
  o.name = "UpdateConferenceProvider"
1788
1919
  o.http_method = "POST"
@@ -189,6 +189,148 @@ module Aws::AlexaForBusiness
189
189
  #
190
190
  class AssociateSkillWithSkillGroupResponse < Aws::EmptyStructure; end
191
191
 
192
+ # Usage report with specified parameters.
193
+ #
194
+ # @!attribute [rw] status
195
+ # The status of the report generation execution (RUNNING, SUCCEEDED,
196
+ # or FAILED).
197
+ # @return [String]
198
+ #
199
+ # @!attribute [rw] failure_code
200
+ # The failure code.
201
+ # @return [String]
202
+ #
203
+ # @!attribute [rw] s3_location
204
+ # The S3 location of the output reports.
205
+ # @return [Types::BusinessReportS3Location]
206
+ #
207
+ # @!attribute [rw] delivery_time
208
+ # The time of report delivery.
209
+ # @return [Time]
210
+ #
211
+ # @!attribute [rw] download_url
212
+ # The download link where a user can download the report.
213
+ # @return [String]
214
+ #
215
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/BusinessReport AWS API Documentation
216
+ #
217
+ class BusinessReport < Struct.new(
218
+ :status,
219
+ :failure_code,
220
+ :s3_location,
221
+ :delivery_time,
222
+ :download_url)
223
+ include Aws::Structure
224
+ end
225
+
226
+ # The content range of the report.
227
+ #
228
+ # @note When making an API call, you may pass BusinessReportContentRange
229
+ # data as a hash:
230
+ #
231
+ # {
232
+ # interval: "ONE_DAY", # accepts ONE_DAY, ONE_WEEK
233
+ # }
234
+ #
235
+ # @!attribute [rw] interval
236
+ # The interval of the content range.
237
+ # @return [String]
238
+ #
239
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/BusinessReportContentRange AWS API Documentation
240
+ #
241
+ class BusinessReportContentRange < Struct.new(
242
+ :interval)
243
+ include Aws::Structure
244
+ end
245
+
246
+ # The recurrence of the reports.
247
+ #
248
+ # @note When making an API call, you may pass BusinessReportRecurrence
249
+ # data as a hash:
250
+ #
251
+ # {
252
+ # start_date: "Date",
253
+ # }
254
+ #
255
+ # @!attribute [rw] start_date
256
+ # The start date.
257
+ # @return [String]
258
+ #
259
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/BusinessReportRecurrence AWS API Documentation
260
+ #
261
+ class BusinessReportRecurrence < Struct.new(
262
+ :start_date)
263
+ include Aws::Structure
264
+ end
265
+
266
+ # The S3 location of the output reports.
267
+ #
268
+ # @!attribute [rw] path
269
+ # The path of the business report.
270
+ # @return [String]
271
+ #
272
+ # @!attribute [rw] bucket_name
273
+ # The S3 bucket name of the output reports.
274
+ # @return [String]
275
+ #
276
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/BusinessReportS3Location AWS API Documentation
277
+ #
278
+ class BusinessReportS3Location < Struct.new(
279
+ :path,
280
+ :bucket_name)
281
+ include Aws::Structure
282
+ end
283
+
284
+ # The schedule of the usage report.
285
+ #
286
+ # @!attribute [rw] schedule_arn
287
+ # The ARN of the business report schedule.
288
+ # @return [String]
289
+ #
290
+ # @!attribute [rw] schedule_name
291
+ # The name identifier of the schedule.
292
+ # @return [String]
293
+ #
294
+ # @!attribute [rw] s3_bucket_name
295
+ # The S3 bucket name of the output reports.
296
+ # @return [String]
297
+ #
298
+ # @!attribute [rw] s3_key_prefix
299
+ # The S3 key where the report is delivered.
300
+ # @return [String]
301
+ #
302
+ # @!attribute [rw] format
303
+ # The format of the generated report (individual CSV files or zipped
304
+ # files of individual files).
305
+ # @return [String]
306
+ #
307
+ # @!attribute [rw] content_range
308
+ # The content range of the reports.
309
+ # @return [Types::BusinessReportContentRange]
310
+ #
311
+ # @!attribute [rw] recurrence
312
+ # The recurrence of the reports.
313
+ # @return [Types::BusinessReportRecurrence]
314
+ #
315
+ # @!attribute [rw] last_business_report
316
+ # The details of the last business report delivery for a specified
317
+ # time interval.
318
+ # @return [Types::BusinessReport]
319
+ #
320
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/BusinessReportSchedule AWS API Documentation
321
+ #
322
+ class BusinessReportSchedule < Struct.new(
323
+ :schedule_arn,
324
+ :schedule_name,
325
+ :s3_bucket_name,
326
+ :s3_key_prefix,
327
+ :format,
328
+ :content_range,
329
+ :recurrence,
330
+ :last_business_report)
331
+ include Aws::Structure
332
+ end
333
+
192
334
  # The skill store category that is shown. Alexa skills are assigned a
193
335
  # specific skill category during creation, such as News, Social, and
194
336
  # Sports.
@@ -386,6 +528,79 @@ module Aws::AlexaForBusiness
386
528
  include Aws::Structure
387
529
  end
388
530
 
531
+ # @note When making an API call, you may pass CreateBusinessReportScheduleRequest
532
+ # data as a hash:
533
+ #
534
+ # {
535
+ # schedule_name: "BusinessReportScheduleName",
536
+ # s3_bucket_name: "CustomerS3BucketName",
537
+ # s3_key_prefix: "S3KeyPrefix",
538
+ # format: "CSV", # required, accepts CSV, CSV_ZIP
539
+ # content_range: { # required
540
+ # interval: "ONE_DAY", # accepts ONE_DAY, ONE_WEEK
541
+ # },
542
+ # recurrence: {
543
+ # start_date: "Date",
544
+ # },
545
+ # client_request_token: "ClientRequestToken",
546
+ # }
547
+ #
548
+ # @!attribute [rw] schedule_name
549
+ # The name identifier of the schedule.
550
+ # @return [String]
551
+ #
552
+ # @!attribute [rw] s3_bucket_name
553
+ # The S3 bucket name of the output reports.
554
+ # @return [String]
555
+ #
556
+ # @!attribute [rw] s3_key_prefix
557
+ # The S3 key where the report is delivered.
558
+ # @return [String]
559
+ #
560
+ # @!attribute [rw] format
561
+ # The format of the generated report (individual CSV files or zipped
562
+ # files of individual files).
563
+ # @return [String]
564
+ #
565
+ # @!attribute [rw] content_range
566
+ # The content range of the reports.
567
+ # @return [Types::BusinessReportContentRange]
568
+ #
569
+ # @!attribute [rw] recurrence
570
+ # The recurrence of the reports.
571
+ # @return [Types::BusinessReportRecurrence]
572
+ #
573
+ # @!attribute [rw] client_request_token
574
+ # The client request token.
575
+ #
576
+ # **A suitable default value is auto-generated.** You should normally
577
+ # not need to pass this option.
578
+ # @return [String]
579
+ #
580
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/CreateBusinessReportScheduleRequest AWS API Documentation
581
+ #
582
+ class CreateBusinessReportScheduleRequest < Struct.new(
583
+ :schedule_name,
584
+ :s3_bucket_name,
585
+ :s3_key_prefix,
586
+ :format,
587
+ :content_range,
588
+ :recurrence,
589
+ :client_request_token)
590
+ include Aws::Structure
591
+ end
592
+
593
+ # @!attribute [rw] schedule_arn
594
+ # The ARN of the business report schedule.
595
+ # @return [String]
596
+ #
597
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/CreateBusinessReportScheduleResponse AWS API Documentation
598
+ #
599
+ class CreateBusinessReportScheduleResponse < Struct.new(
600
+ :schedule_arn)
601
+ include Aws::Structure
602
+ end
603
+
389
604
  # @note When making an API call, you may pass CreateConferenceProviderRequest
390
605
  # data as a hash:
391
606
  #
@@ -398,7 +613,7 @@ module Aws::AlexaForBusiness
398
613
  # },
399
614
  # pstn_dial_in: {
400
615
  # country_code: "CountryCode", # required
401
- # phone_number: "PhoneNumber", # required
616
+ # phone_number: "OutboundPhoneNumber", # required
402
617
  # one_click_id_delay: "OneClickIdDelay", # required
403
618
  # one_click_pin_delay: "OneClickPinDelay", # required
404
619
  # },
@@ -465,7 +680,7 @@ module Aws::AlexaForBusiness
465
680
  # display_name: "ContactName",
466
681
  # first_name: "ContactName", # required
467
682
  # last_name: "ContactName",
468
- # phone_number: "E164PhoneNumber", # required
683
+ # phone_number: "E164PhoneNumber",
469
684
  # client_request_token: "ClientRequestToken",
470
685
  # }
471
686
  #
@@ -807,6 +1022,28 @@ module Aws::AlexaForBusiness
807
1022
  #
808
1023
  class DeleteAddressBookResponse < Aws::EmptyStructure; end
809
1024
 
1025
+ # @note When making an API call, you may pass DeleteBusinessReportScheduleRequest
1026
+ # data as a hash:
1027
+ #
1028
+ # {
1029
+ # schedule_arn: "Arn", # required
1030
+ # }
1031
+ #
1032
+ # @!attribute [rw] schedule_arn
1033
+ # The ARN of the business report schedule.
1034
+ # @return [String]
1035
+ #
1036
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/DeleteBusinessReportScheduleRequest AWS API Documentation
1037
+ #
1038
+ class DeleteBusinessReportScheduleRequest < Struct.new(
1039
+ :schedule_arn)
1040
+ include Aws::Structure
1041
+ end
1042
+
1043
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/DeleteBusinessReportScheduleResponse AWS API Documentation
1044
+ #
1045
+ class DeleteBusinessReportScheduleResponse < Aws::EmptyStructure; end
1046
+
810
1047
  # @note When making an API call, you may pass DeleteConferenceProviderRequest
811
1048
  # data as a hash:
812
1049
  #
@@ -1672,6 +1909,48 @@ module Aws::AlexaForBusiness
1672
1909
  include Aws::Structure
1673
1910
  end
1674
1911
 
1912
+ # @note When making an API call, you may pass ListBusinessReportSchedulesRequest
1913
+ # data as a hash:
1914
+ #
1915
+ # {
1916
+ # next_token: "NextToken",
1917
+ # max_results: 1,
1918
+ # }
1919
+ #
1920
+ # @!attribute [rw] next_token
1921
+ # The token used to list the remaining schedules from the previous API
1922
+ # call.
1923
+ # @return [String]
1924
+ #
1925
+ # @!attribute [rw] max_results
1926
+ # The maximum number of schedules listed in the call.
1927
+ # @return [Integer]
1928
+ #
1929
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ListBusinessReportSchedulesRequest AWS API Documentation
1930
+ #
1931
+ class ListBusinessReportSchedulesRequest < Struct.new(
1932
+ :next_token,
1933
+ :max_results)
1934
+ include Aws::Structure
1935
+ end
1936
+
1937
+ # @!attribute [rw] business_report_schedules
1938
+ # The schedule of the reports.
1939
+ # @return [Array<Types::BusinessReportSchedule>]
1940
+ #
1941
+ # @!attribute [rw] next_token
1942
+ # The token used to list the remaining schedules from the previous API
1943
+ # call.
1944
+ # @return [String]
1945
+ #
1946
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ListBusinessReportSchedulesResponse AWS API Documentation
1947
+ #
1948
+ class ListBusinessReportSchedulesResponse < Struct.new(
1949
+ :business_report_schedules,
1950
+ :next_token)
1951
+ include Aws::Structure
1952
+ end
1953
+
1675
1954
  # @note When making an API call, you may pass ListConferenceProvidersRequest
1676
1955
  # data as a hash:
1677
1956
  #
@@ -2063,7 +2342,7 @@ module Aws::AlexaForBusiness
2063
2342
  #
2064
2343
  # {
2065
2344
  # country_code: "CountryCode", # required
2066
- # phone_number: "PhoneNumber", # required
2345
+ # phone_number: "OutboundPhoneNumber", # required
2067
2346
  # one_click_id_delay: "OneClickIdDelay", # required
2068
2347
  # one_click_pin_delay: "OneClickPinDelay", # required
2069
2348
  # }
@@ -3544,6 +3823,61 @@ module Aws::AlexaForBusiness
3544
3823
  #
3545
3824
  class UpdateAddressBookResponse < Aws::EmptyStructure; end
3546
3825
 
3826
+ # @note When making an API call, you may pass UpdateBusinessReportScheduleRequest
3827
+ # data as a hash:
3828
+ #
3829
+ # {
3830
+ # schedule_arn: "Arn", # required
3831
+ # s3_bucket_name: "CustomerS3BucketName",
3832
+ # s3_key_prefix: "S3KeyPrefix",
3833
+ # format: "CSV", # accepts CSV, CSV_ZIP
3834
+ # schedule_name: "BusinessReportScheduleName",
3835
+ # recurrence: {
3836
+ # start_date: "Date",
3837
+ # },
3838
+ # }
3839
+ #
3840
+ # @!attribute [rw] schedule_arn
3841
+ # The ARN of the business report schedule.
3842
+ # @return [String]
3843
+ #
3844
+ # @!attribute [rw] s3_bucket_name
3845
+ # The S3 location of the output reports.
3846
+ # @return [String]
3847
+ #
3848
+ # @!attribute [rw] s3_key_prefix
3849
+ # The S3 key where the report is delivered.
3850
+ # @return [String]
3851
+ #
3852
+ # @!attribute [rw] format
3853
+ # The format of the generated report (individual CSV files or zipped
3854
+ # files of individual files).
3855
+ # @return [String]
3856
+ #
3857
+ # @!attribute [rw] schedule_name
3858
+ # The name identifier of the schedule.
3859
+ # @return [String]
3860
+ #
3861
+ # @!attribute [rw] recurrence
3862
+ # The recurrence of the reports.
3863
+ # @return [Types::BusinessReportRecurrence]
3864
+ #
3865
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateBusinessReportScheduleRequest AWS API Documentation
3866
+ #
3867
+ class UpdateBusinessReportScheduleRequest < Struct.new(
3868
+ :schedule_arn,
3869
+ :s3_bucket_name,
3870
+ :s3_key_prefix,
3871
+ :format,
3872
+ :schedule_name,
3873
+ :recurrence)
3874
+ include Aws::Structure
3875
+ end
3876
+
3877
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateBusinessReportScheduleResponse AWS API Documentation
3878
+ #
3879
+ class UpdateBusinessReportScheduleResponse < Aws::EmptyStructure; end
3880
+
3547
3881
  # @note When making an API call, you may pass UpdateConferenceProviderRequest
3548
3882
  # data as a hash:
3549
3883
  #
@@ -3556,7 +3890,7 @@ module Aws::AlexaForBusiness
3556
3890
  # },
3557
3891
  # pstn_dial_in: {
3558
3892
  # country_code: "CountryCode", # required
3559
- # phone_number: "PhoneNumber", # required
3893
+ # phone_number: "OutboundPhoneNumber", # required
3560
3894
  # one_click_id_delay: "OneClickIdDelay", # required
3561
3895
  # one_click_pin_delay: "OneClickPinDelay", # required
3562
3896
  # },
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.13.0
4
+ version: 1.14.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: 2018-11-20 00:00:00.000000000 Z
11
+ date: 2018-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core