aws-sdk-chime 1.16.0 → 1.17.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: d0ec55df10c50792ebc94f9f8059d7f0a8dce6ed
4
- data.tar.gz: 74bded06d476dcc6bee9c6e8658bf605cebc040b
3
+ metadata.gz: de50404c1467eb235bc5efe2793f4409927afcb5
4
+ data.tar.gz: b0e78211658c377a24f2fb1565a62f52bd884297
5
5
  SHA512:
6
- metadata.gz: 64ee11fdf7b27282636c805da2c8d80fef6faa8e93bafcaf5f353c9a41cb80831e35e6d8eaa0c7e94578ce0e32ce1b2906e44870b54a782e3ebd8578661ad49a
7
- data.tar.gz: 6b968c061178e5e761a9354f5acdecc2ecc57c1e2a583e75953b38346ab40a467eaa9d708867e0a98c1f083ca03a42ef85a438a14748cd7115380affb9a2e4f2
6
+ metadata.gz: a5c7cc5884573069f761ef98bbdd555f520bb35f3e76fef02cf6cee75f99914ce36cc008f5f4fa60a46f9678f7957b70f2cd6a390356e2ace31ae57e086884a8
7
+ data.tar.gz: 6689afab309c024ce81f5e0789a1d7c1c11e3dd9bcdb87a669598ade05df0ae7f461c7257a9037bbb3d80479894bde566448093def548bc4f9c2b02d05a58908
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-chime/customizations'
42
42
  # @service
43
43
  module Aws::Chime
44
44
 
45
- GEM_VERSION = '1.16.0'
45
+ GEM_VERSION = '1.17.0'
46
46
 
47
47
  end
@@ -370,6 +370,56 @@ module Aws::Chime
370
370
  req.send_request(options)
371
371
  end
372
372
 
373
+ # Creates up to 100 new attendees for an active Amazon Chime SDK
374
+ # meeting. For more information about the Amazon Chime SDK, see [Using
375
+ # the Amazon Chime SDK][1] in the *Amazon Chime Developer Guide*.
376
+ #
377
+ #
378
+ #
379
+ # [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
380
+ #
381
+ # @option params [required, String] :meeting_id
382
+ # The Amazon Chime SDK meeting ID.
383
+ #
384
+ # @option params [required, Array<Types::CreateAttendeeRequestItem>] :attendees
385
+ # The request containing the attendees to create.
386
+ #
387
+ # @return [Types::BatchCreateAttendeeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
388
+ #
389
+ # * {Types::BatchCreateAttendeeResponse#attendees #attendees} => Array&lt;Types::Attendee&gt;
390
+ # * {Types::BatchCreateAttendeeResponse#errors #errors} => Array&lt;Types::CreateAttendeeError&gt;
391
+ #
392
+ # @example Request syntax with placeholder values
393
+ #
394
+ # resp = client.batch_create_attendee({
395
+ # meeting_id: "GuidString", # required
396
+ # attendees: [ # required
397
+ # {
398
+ # external_user_id: "ExternalUserIdType", # required
399
+ # },
400
+ # ],
401
+ # })
402
+ #
403
+ # @example Response structure
404
+ #
405
+ # resp.attendees #=> Array
406
+ # resp.attendees[0].external_user_id #=> String
407
+ # resp.attendees[0].attendee_id #=> String
408
+ # resp.attendees[0].join_token #=> String
409
+ # resp.errors #=> Array
410
+ # resp.errors[0].external_user_id #=> String
411
+ # resp.errors[0].error_code #=> String
412
+ # resp.errors[0].error_message #=> String
413
+ #
414
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/BatchCreateAttendee AWS API Documentation
415
+ #
416
+ # @overload batch_create_attendee(params = {})
417
+ # @param [Hash] params ({})
418
+ def batch_create_attendee(params = {}, options = {})
419
+ req = build_request(:batch_create_attendee, params)
420
+ req.send_request(options)
421
+ end
422
+
373
423
  # Adds up to 50 members to a chat room. Members can be either users or
374
424
  # bots. The member role designates whether the member is a chat room
375
425
  # administrator or a general chat room member.
@@ -687,6 +737,47 @@ module Aws::Chime
687
737
  req.send_request(options)
688
738
  end
689
739
 
740
+ # Creates a new attendee for an active Amazon Chime SDK meeting. For
741
+ # more information about the Amazon Chime SDK, see [Using the Amazon
742
+ # Chime SDK][1] in the *Amazon Chime Developer Guide*.
743
+ #
744
+ #
745
+ #
746
+ # [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
747
+ #
748
+ # @option params [required, String] :meeting_id
749
+ # The Amazon Chime SDK meeting ID.
750
+ #
751
+ # @option params [required, String] :external_user_id
752
+ # The Amazon Chime SDK external user ID. Links the attendee to an
753
+ # identity managed by a builder application.
754
+ #
755
+ # @return [Types::CreateAttendeeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
756
+ #
757
+ # * {Types::CreateAttendeeResponse#attendee #attendee} => Types::Attendee
758
+ #
759
+ # @example Request syntax with placeholder values
760
+ #
761
+ # resp = client.create_attendee({
762
+ # meeting_id: "GuidString", # required
763
+ # external_user_id: "ExternalUserIdType", # required
764
+ # })
765
+ #
766
+ # @example Response structure
767
+ #
768
+ # resp.attendee.external_user_id #=> String
769
+ # resp.attendee.attendee_id #=> String
770
+ # resp.attendee.join_token #=> String
771
+ #
772
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateAttendee AWS API Documentation
773
+ #
774
+ # @overload create_attendee(params = {})
775
+ # @param [Hash] params ({})
776
+ def create_attendee(params = {}, options = {})
777
+ req = build_request(:create_attendee, params)
778
+ req.send_request(options)
779
+ end
780
+
690
781
  # Creates a bot for an Amazon Chime Enterprise account.
691
782
  #
692
783
  # @option params [required, String] :account_id
@@ -731,6 +822,69 @@ module Aws::Chime
731
822
  req.send_request(options)
732
823
  end
733
824
 
825
+ # Creates a new Amazon Chime SDK meeting in the specified media Region
826
+ # with no initial attendees. For more information about the Amazon Chime
827
+ # SDK, see [Using the Amazon Chime SDK][1] in the *Amazon Chime
828
+ # Developer Guide*.
829
+ #
830
+ #
831
+ #
832
+ # [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
833
+ #
834
+ # @option params [required, String] :client_request_token
835
+ # The unique identifier for the client request. Use a different token
836
+ # for different meetings.
837
+ #
838
+ # **A suitable default value is auto-generated.** You should normally
839
+ # not need to pass this option.**
840
+ #
841
+ # @option params [String] :meeting_host_id
842
+ # Reserved.
843
+ #
844
+ # @option params [String] :media_region
845
+ # The Region in which to create the meeting. Available values:
846
+ # `us-east-1`, `us-west-2`.
847
+ #
848
+ # @option params [Types::MeetingNotificationConfiguration] :notifications_configuration
849
+ # The configuration for resource targets to receive notifications when
850
+ # meeting and attendee events occur.
851
+ #
852
+ # @return [Types::CreateMeetingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
853
+ #
854
+ # * {Types::CreateMeetingResponse#meeting #meeting} => Types::Meeting
855
+ #
856
+ # @example Request syntax with placeholder values
857
+ #
858
+ # resp = client.create_meeting({
859
+ # client_request_token: "ClientRequestToken", # required
860
+ # meeting_host_id: "ExternalUserIdType",
861
+ # media_region: "String",
862
+ # notifications_configuration: {
863
+ # sns_topic_arn: "Arn",
864
+ # sqs_queue_arn: "Arn",
865
+ # },
866
+ # })
867
+ #
868
+ # @example Response structure
869
+ #
870
+ # resp.meeting.meeting_id #=> String
871
+ # resp.meeting.media_placement.audio_host_url #=> String
872
+ # resp.meeting.media_placement.screen_data_url #=> String
873
+ # resp.meeting.media_placement.screen_sharing_url #=> String
874
+ # resp.meeting.media_placement.screen_viewing_url #=> String
875
+ # resp.meeting.media_placement.signaling_url #=> String
876
+ # resp.meeting.media_placement.turn_control_url #=> String
877
+ # resp.meeting.media_region #=> String
878
+ #
879
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMeeting AWS API Documentation
880
+ #
881
+ # @overload create_meeting(params = {})
882
+ # @param [Hash] params ({})
883
+ def create_meeting(params = {}, options = {})
884
+ req = build_request(:create_meeting, params)
885
+ req.send_request(options)
886
+ end
887
+
734
888
  # Creates an order for phone numbers to be provisioned. Choose from
735
889
  # Amazon Chime Business Calling and Amazon Chime Voice Connector product
736
890
  # types. For toll-free numbers, you must use the Amazon Chime Voice
@@ -1003,6 +1157,40 @@ module Aws::Chime
1003
1157
  req.send_request(options)
1004
1158
  end
1005
1159
 
1160
+ # Deletes an attendee from the specified Amazon Chime SDK meeting and
1161
+ # deletes their `JoinToken`. Attendees are automatically deleted when a
1162
+ # Amazon Chime SDK meeting is deleted. For more information about the
1163
+ # Amazon Chime SDK, see [Using the Amazon Chime SDK][1] in the *Amazon
1164
+ # Chime Developer Guide*.
1165
+ #
1166
+ #
1167
+ #
1168
+ # [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
1169
+ #
1170
+ # @option params [required, String] :meeting_id
1171
+ # The Amazon Chime SDK meeting ID.
1172
+ #
1173
+ # @option params [required, String] :attendee_id
1174
+ # The Amazon Chime SDK attendee ID.
1175
+ #
1176
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1177
+ #
1178
+ # @example Request syntax with placeholder values
1179
+ #
1180
+ # resp = client.delete_attendee({
1181
+ # meeting_id: "GuidString", # required
1182
+ # attendee_id: "GuidString", # required
1183
+ # })
1184
+ #
1185
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/DeleteAttendee AWS API Documentation
1186
+ #
1187
+ # @overload delete_attendee(params = {})
1188
+ # @param [Hash] params ({})
1189
+ def delete_attendee(params = {}, options = {})
1190
+ req = build_request(:delete_attendee, params)
1191
+ req.send_request(options)
1192
+ end
1193
+
1006
1194
  # Deletes the events configuration that allows a bot to receive outgoing
1007
1195
  # events.
1008
1196
  #
@@ -1030,6 +1218,35 @@ module Aws::Chime
1030
1218
  req.send_request(options)
1031
1219
  end
1032
1220
 
1221
+ # Deletes the specified Amazon Chime SDK meeting. When a meeting is
1222
+ # deleted, its attendees are also deleted and clients can no longer join
1223
+ # it. For more information about the Amazon Chime SDK, see [Using the
1224
+ # Amazon Chime SDK][1] in the *Amazon Chime Developer Guide*.
1225
+ #
1226
+ #
1227
+ #
1228
+ # [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
1229
+ #
1230
+ # @option params [required, String] :meeting_id
1231
+ # The Amazon Chime SDK meeting ID.
1232
+ #
1233
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1234
+ #
1235
+ # @example Request syntax with placeholder values
1236
+ #
1237
+ # resp = client.delete_meeting({
1238
+ # meeting_id: "GuidString", # required
1239
+ # })
1240
+ #
1241
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/DeleteMeeting AWS API Documentation
1242
+ #
1243
+ # @overload delete_meeting(params = {})
1244
+ # @param [Hash] params ({})
1245
+ def delete_meeting(params = {}, options = {})
1246
+ req = build_request(:delete_meeting, params)
1247
+ req.send_request(options)
1248
+ end
1249
+
1033
1250
  # Moves the specified phone number into the **Deletion queue**. A phone
1034
1251
  # number must be disassociated from any users or Amazon Chime Voice
1035
1252
  # Connectors before it can be deleted.
@@ -1429,6 +1646,46 @@ module Aws::Chime
1429
1646
  req.send_request(options)
1430
1647
  end
1431
1648
 
1649
+ # Gets the Amazon Chime SDK attendee details for a specified meeting ID
1650
+ # and attendee ID. For more information about the Amazon Chime SDK, see
1651
+ # [Using the Amazon Chime SDK][1] in the *Amazon Chime Developer Guide*.
1652
+ #
1653
+ #
1654
+ #
1655
+ # [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
1656
+ #
1657
+ # @option params [required, String] :meeting_id
1658
+ # The Amazon Chime SDK meeting ID.
1659
+ #
1660
+ # @option params [required, String] :attendee_id
1661
+ # The Amazon Chime SDK attendee ID.
1662
+ #
1663
+ # @return [Types::GetAttendeeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1664
+ #
1665
+ # * {Types::GetAttendeeResponse#attendee #attendee} => Types::Attendee
1666
+ #
1667
+ # @example Request syntax with placeholder values
1668
+ #
1669
+ # resp = client.get_attendee({
1670
+ # meeting_id: "GuidString", # required
1671
+ # attendee_id: "GuidString", # required
1672
+ # })
1673
+ #
1674
+ # @example Response structure
1675
+ #
1676
+ # resp.attendee.external_user_id #=> String
1677
+ # resp.attendee.attendee_id #=> String
1678
+ # resp.attendee.join_token #=> String
1679
+ #
1680
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetAttendee AWS API Documentation
1681
+ #
1682
+ # @overload get_attendee(params = {})
1683
+ # @param [Hash] params ({})
1684
+ def get_attendee(params = {}, options = {})
1685
+ req = build_request(:get_attendee, params)
1686
+ req.send_request(options)
1687
+ end
1688
+
1432
1689
  # Retrieves details for the specified bot, such as bot email address,
1433
1690
  # bot type, status, and display name.
1434
1691
  #
@@ -1528,6 +1785,47 @@ module Aws::Chime
1528
1785
  req.send_request(options)
1529
1786
  end
1530
1787
 
1788
+ # Gets the Amazon Chime SDK meeting details for the specified meeting
1789
+ # ID. For more information about the Amazon Chime SDK, see [Using the
1790
+ # Amazon Chime SDK][1] in the *Amazon Chime Developer Guide*.
1791
+ #
1792
+ #
1793
+ #
1794
+ # [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
1795
+ #
1796
+ # @option params [required, String] :meeting_id
1797
+ # The Amazon Chime SDK meeting ID.
1798
+ #
1799
+ # @return [Types::GetMeetingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1800
+ #
1801
+ # * {Types::GetMeetingResponse#meeting #meeting} => Types::Meeting
1802
+ #
1803
+ # @example Request syntax with placeholder values
1804
+ #
1805
+ # resp = client.get_meeting({
1806
+ # meeting_id: "GuidString", # required
1807
+ # })
1808
+ #
1809
+ # @example Response structure
1810
+ #
1811
+ # resp.meeting.meeting_id #=> String
1812
+ # resp.meeting.media_placement.audio_host_url #=> String
1813
+ # resp.meeting.media_placement.screen_data_url #=> String
1814
+ # resp.meeting.media_placement.screen_sharing_url #=> String
1815
+ # resp.meeting.media_placement.screen_viewing_url #=> String
1816
+ # resp.meeting.media_placement.signaling_url #=> String
1817
+ # resp.meeting.media_placement.turn_control_url #=> String
1818
+ # resp.meeting.media_region #=> String
1819
+ #
1820
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetMeeting AWS API Documentation
1821
+ #
1822
+ # @overload get_meeting(params = {})
1823
+ # @param [Hash] params ({})
1824
+ def get_meeting(params = {}, options = {})
1825
+ req = build_request(:get_meeting, params)
1826
+ req.send_request(options)
1827
+ end
1828
+
1531
1829
  # Retrieves details for the specified phone number ID, such as
1532
1830
  # associations, capabilities, and product type.
1533
1831
  #
@@ -2078,6 +2376,53 @@ module Aws::Chime
2078
2376
  req.send_request(options)
2079
2377
  end
2080
2378
 
2379
+ # Lists the attendees for the specified Amazon Chime SDK meeting. For
2380
+ # more information about the Amazon Chime SDK, see [Using the Amazon
2381
+ # Chime SDK][1] in the *Amazon Chime Developer Guide*.
2382
+ #
2383
+ #
2384
+ #
2385
+ # [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
2386
+ #
2387
+ # @option params [required, String] :meeting_id
2388
+ # The Amazon Chime SDK meeting ID.
2389
+ #
2390
+ # @option params [String] :next_token
2391
+ # The token to use to retrieve the next page of results.
2392
+ #
2393
+ # @option params [Integer] :max_results
2394
+ # The maximum number of results to return in a single call.
2395
+ #
2396
+ # @return [Types::ListAttendeesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2397
+ #
2398
+ # * {Types::ListAttendeesResponse#attendees #attendees} => Array&lt;Types::Attendee&gt;
2399
+ # * {Types::ListAttendeesResponse#next_token #next_token} => String
2400
+ #
2401
+ # @example Request syntax with placeholder values
2402
+ #
2403
+ # resp = client.list_attendees({
2404
+ # meeting_id: "GuidString", # required
2405
+ # next_token: "String",
2406
+ # max_results: 1,
2407
+ # })
2408
+ #
2409
+ # @example Response structure
2410
+ #
2411
+ # resp.attendees #=> Array
2412
+ # resp.attendees[0].external_user_id #=> String
2413
+ # resp.attendees[0].attendee_id #=> String
2414
+ # resp.attendees[0].join_token #=> String
2415
+ # resp.next_token #=> String
2416
+ #
2417
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListAttendees AWS API Documentation
2418
+ #
2419
+ # @overload list_attendees(params = {})
2420
+ # @param [Hash] params ({})
2421
+ def list_attendees(params = {}, options = {})
2422
+ req = build_request(:list_attendees, params)
2423
+ req.send_request(options)
2424
+ end
2425
+
2081
2426
  # Lists the bots associated with the administrator's Amazon Chime
2082
2427
  # Enterprise account ID.
2083
2428
  #
@@ -2127,6 +2472,54 @@ module Aws::Chime
2127
2472
  req.send_request(options)
2128
2473
  end
2129
2474
 
2475
+ # Lists up to 100 active Amazon Chime SDK meetings. For more information
2476
+ # about the Amazon Chime SDK, see [Using the Amazon Chime SDK][1] in the
2477
+ # *Amazon Chime Developer Guide*.
2478
+ #
2479
+ #
2480
+ #
2481
+ # [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
2482
+ #
2483
+ # @option params [String] :next_token
2484
+ # The token to use to retrieve the next page of results.
2485
+ #
2486
+ # @option params [Integer] :max_results
2487
+ # The maximum number of results to return in a single call.
2488
+ #
2489
+ # @return [Types::ListMeetingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2490
+ #
2491
+ # * {Types::ListMeetingsResponse#meetings #meetings} => Array&lt;Types::Meeting&gt;
2492
+ # * {Types::ListMeetingsResponse#next_token #next_token} => String
2493
+ #
2494
+ # @example Request syntax with placeholder values
2495
+ #
2496
+ # resp = client.list_meetings({
2497
+ # next_token: "String",
2498
+ # max_results: 1,
2499
+ # })
2500
+ #
2501
+ # @example Response structure
2502
+ #
2503
+ # resp.meetings #=> Array
2504
+ # resp.meetings[0].meeting_id #=> String
2505
+ # resp.meetings[0].media_placement.audio_host_url #=> String
2506
+ # resp.meetings[0].media_placement.screen_data_url #=> String
2507
+ # resp.meetings[0].media_placement.screen_sharing_url #=> String
2508
+ # resp.meetings[0].media_placement.screen_viewing_url #=> String
2509
+ # resp.meetings[0].media_placement.signaling_url #=> String
2510
+ # resp.meetings[0].media_placement.turn_control_url #=> String
2511
+ # resp.meetings[0].media_region #=> String
2512
+ # resp.next_token #=> String
2513
+ #
2514
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListMeetings AWS API Documentation
2515
+ #
2516
+ # @overload list_meetings(params = {})
2517
+ # @param [Hash] params ({})
2518
+ def list_meetings(params = {}, options = {})
2519
+ req = build_request(:list_meetings, params)
2520
+ req.send_request(options)
2521
+ end
2522
+
2130
2523
  # Lists the phone number orders for the administrator's Amazon Chime
2131
2524
  # account.
2132
2525
  #
@@ -3496,7 +3889,7 @@ module Aws::Chime
3496
3889
  params: params,
3497
3890
  config: config)
3498
3891
  context[:gem_name] = 'aws-sdk-chime'
3499
- context[:gem_version] = '1.16.0'
3892
+ context[:gem_version] = '1.17.0'
3500
3893
  Seahorse::Client::Request.new(handlers, context)
3501
3894
  end
3502
3895