aws-sdk-chimesdkmeetings 1.54.0 → 1.56.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkmeetings/client.rb +75 -18
- data/lib/aws-sdk-chimesdkmeetings/client_api.rb +3 -0
- data/lib/aws-sdk-chimesdkmeetings/types.rb +37 -2
- data/lib/aws-sdk-chimesdkmeetings.rb +1 -1
- data/sig/client.rbs +4 -2
- data/sig/types.rbs +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7107fd61ac908705587c94fbe6f9bc0083c2c2dbbd38461284eeb9fa60f87c1a
|
4
|
+
data.tar.gz: ef11066957e4208f5d3ab27520424d01bf0405c9c4fb87c81dec571e60fed505
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f46deb8b946a99fe56689a35a6df8fe196c878f8ce2aa2007a4c19158d8f3ee11af029a7240bd6619a8a3d0c0cbb38fa78ab2d5b7f3bc4ba33a137ae0efa3038
|
7
|
+
data.tar.gz: 653cf50c4f95181dd2c4c9e487689f74e2ae21e8ff367d193623014c24ecb7299d79bb347ae49576f574c273f95edbe5599b5c33b71440ff76cf5f044d194c91
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.56.0 (2025-10-01)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add support to receive dual stack MediaPlacement URLs in Chime Meetings SDK
|
8
|
+
|
9
|
+
1.55.0 (2025-08-27)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Remove incorrect endpoint tests
|
13
|
+
|
4
14
|
1.54.0 (2025-08-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.56.0
|
@@ -482,7 +482,7 @@ module Aws::ChimeSDKMeetings
|
|
482
482
|
#
|
483
483
|
#
|
484
484
|
#
|
485
|
-
# [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
485
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
|
486
486
|
#
|
487
487
|
# @option params [required, String] :meeting_id
|
488
488
|
# The Amazon Chime SDK ID of the meeting to which you're adding
|
@@ -563,6 +563,13 @@ module Aws::ChimeSDKMeetings
|
|
563
563
|
# you can set your `video` capability to receive and you set your
|
564
564
|
# `content` capability to not receive.
|
565
565
|
#
|
566
|
+
# * If meeting features is defined as `Video:MaxResolution:None` but
|
567
|
+
# `Content:MaxResolution` is defined as something other than `None`
|
568
|
+
# and attendee capabilities are not defined in the API request, then
|
569
|
+
# the default attendee video capability is set to `Receive` and
|
570
|
+
# attendee content capability is set to `SendReceive`. This is because
|
571
|
+
# content `SendReceive` requires video to be at least `Receive`.
|
572
|
+
#
|
566
573
|
# * When you change an `audio` capability from `None` or `Receive` to
|
567
574
|
# `Send` or `SendReceive` , and if the attendee left their microphone
|
568
575
|
# unmuted, audio will flow from the attendee to the other meeting
|
@@ -618,7 +625,7 @@ module Aws::ChimeSDKMeetings
|
|
618
625
|
#
|
619
626
|
#
|
620
627
|
#
|
621
|
-
# [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
628
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
|
622
629
|
#
|
623
630
|
# @option params [required, String] :meeting_id
|
624
631
|
# The unique ID of the meeting.
|
@@ -662,6 +669,13 @@ module Aws::ChimeSDKMeetings
|
|
662
669
|
# you can set your `video` capability to receive and you set your
|
663
670
|
# `content` capability to not receive.
|
664
671
|
#
|
672
|
+
# * If meeting features is defined as `Video:MaxResolution:None` but
|
673
|
+
# `Content:MaxResolution` is defined as something other than `None`
|
674
|
+
# and attendee capabilities are not defined in the API request, then
|
675
|
+
# the default attendee video capability is set to `Receive` and
|
676
|
+
# attendee content capability is set to `SendReceive`. This is because
|
677
|
+
# content `SendReceive` requires video to be at least `Receive`.
|
678
|
+
#
|
665
679
|
# * When you change an `audio` capability from `None` or `Receive` to
|
666
680
|
# `Send` or `SendReceive` , and if the attendee left their microphone
|
667
681
|
# unmuted, audio will flow from the attendee to the other meeting
|
@@ -709,14 +723,27 @@ module Aws::ChimeSDKMeetings
|
|
709
723
|
|
710
724
|
# Creates a new Amazon Chime SDK meeting in the specified media Region
|
711
725
|
# with no initial attendees. For more information about specifying media
|
712
|
-
# Regions, see [
|
713
|
-
# Developer Guide*. For more information
|
714
|
-
# [Using the Amazon Chime SDK][
|
726
|
+
# Regions, see [Available Regions][1] and [Using meeting Regions][2],
|
727
|
+
# both in the *Amazon Chime SDK Developer Guide*. For more information
|
728
|
+
# about the Amazon Chime SDK, see [Using the Amazon Chime SDK][3] in the
|
729
|
+
# *Amazon Chime SDK Developer Guide*.
|
730
|
+
#
|
731
|
+
# <note markdown="1"> If you use this API in conjuction with the and APIs, and you don't
|
732
|
+
# specify the `MeetingFeatures.Content.MaxResolution` or
|
733
|
+
# `MeetingFeatures.Video.MaxResolution` parameters, the following
|
734
|
+
# defaults are used:
|
735
|
+
#
|
736
|
+
# * Content.MaxResolution: FHD
|
715
737
|
#
|
738
|
+
# * Video.MaxResolution: HD
|
739
|
+
#
|
740
|
+
# </note>
|
716
741
|
#
|
717
742
|
#
|
718
|
-
#
|
719
|
-
# [
|
743
|
+
#
|
744
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/sdk-available-regions
|
745
|
+
# [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/chime-sdk-meetings-regions.html
|
746
|
+
# [3]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
|
720
747
|
#
|
721
748
|
# @option params [required, String] :client_request_token
|
722
749
|
# The unique identifier for the client request. Use a different token
|
@@ -816,6 +843,10 @@ module Aws::ChimeSDKMeetings
|
|
816
843
|
# [1]: https://docs.aws.amazon.com/resourcegroupstagging/latest/APIReference/supported-services.html
|
817
844
|
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html#tag-conventions
|
818
845
|
#
|
846
|
+
# @option params [String] :media_placement_network_type
|
847
|
+
# The type of network for the media placement. Either IPv4 only or
|
848
|
+
# dual-stack (IPv4 and IPv6).
|
849
|
+
#
|
819
850
|
# @return [Types::CreateMeetingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
820
851
|
#
|
821
852
|
# * {Types::CreateMeetingResponse#meeting #meeting} => Types::Meeting
|
@@ -854,6 +885,7 @@ module Aws::ChimeSDKMeetings
|
|
854
885
|
# value: "TagValue", # required
|
855
886
|
# },
|
856
887
|
# ],
|
888
|
+
# media_placement_network_type: "Ipv4Only", # accepts Ipv4Only, DualStack
|
857
889
|
# })
|
858
890
|
#
|
859
891
|
# @example Response structure
|
@@ -890,14 +922,27 @@ module Aws::ChimeSDKMeetings
|
|
890
922
|
|
891
923
|
# Creates a new Amazon Chime SDK meeting in the specified media Region,
|
892
924
|
# with attendees. For more information about specifying media Regions,
|
893
|
-
# see [
|
894
|
-
# Guide*. For more information about the
|
895
|
-
# the Amazon Chime SDK][
|
925
|
+
# see [Available Regions][1] and [Using meeting Regions][2], both in the
|
926
|
+
# *Amazon Chime SDK Developer Guide*. For more information about the
|
927
|
+
# Amazon Chime SDK, see [Using the Amazon Chime SDK][3] in the *Amazon
|
928
|
+
# Chime SDK Developer Guide*.
|
896
929
|
#
|
930
|
+
# <note markdown="1"> If you use this API in conjuction with the and APIs, and you don't
|
931
|
+
# specify the `MeetingFeatures.Content.MaxResolution` or
|
932
|
+
# `MeetingFeatures.Video.MaxResolution` parameters, the following
|
933
|
+
# defaults are used:
|
897
934
|
#
|
935
|
+
# * Content.MaxResolution: FHD
|
898
936
|
#
|
899
|
-
#
|
900
|
-
#
|
937
|
+
# * Video.MaxResolution: HD
|
938
|
+
#
|
939
|
+
# </note>
|
940
|
+
#
|
941
|
+
#
|
942
|
+
#
|
943
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/sdk-available-regions
|
944
|
+
# [2]: https://docs.aws.amazon.com/chime-sdk/latest/dg/chime-sdk-meetings-regions.html
|
945
|
+
# [3]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
|
901
946
|
#
|
902
947
|
# @option params [required, String] :client_request_token
|
903
948
|
# The unique identifier for the client request. Use a different token
|
@@ -951,6 +996,10 @@ module Aws::ChimeSDKMeetings
|
|
951
996
|
# @option params [Array<Types::Tag>] :tags
|
952
997
|
# The tags in the request.
|
953
998
|
#
|
999
|
+
# @option params [String] :media_placement_network_type
|
1000
|
+
# The type of network for the media placement. Either IPv4 only or
|
1001
|
+
# dual-stack (IPv4 and IPv6).
|
1002
|
+
#
|
954
1003
|
# @return [Types::CreateMeetingWithAttendeesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
955
1004
|
#
|
956
1005
|
# * {Types::CreateMeetingWithAttendeesResponse#meeting #meeting} => Types::Meeting
|
@@ -1001,6 +1050,7 @@ module Aws::ChimeSDKMeetings
|
|
1001
1050
|
# value: "TagValue", # required
|
1002
1051
|
# },
|
1003
1052
|
# ],
|
1053
|
+
# media_placement_network_type: "Ipv4Only", # accepts Ipv4Only, DualStack
|
1004
1054
|
# })
|
1005
1055
|
#
|
1006
1056
|
# @example Response structure
|
@@ -1054,7 +1104,7 @@ module Aws::ChimeSDKMeetings
|
|
1054
1104
|
#
|
1055
1105
|
#
|
1056
1106
|
#
|
1057
|
-
# [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
1107
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
|
1058
1108
|
#
|
1059
1109
|
# @option params [required, String] :meeting_id
|
1060
1110
|
# The Amazon Chime SDK meeting ID.
|
@@ -1088,7 +1138,7 @@ module Aws::ChimeSDKMeetings
|
|
1088
1138
|
#
|
1089
1139
|
#
|
1090
1140
|
#
|
1091
|
-
# [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
1141
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
|
1092
1142
|
#
|
1093
1143
|
# @option params [required, String] :meeting_id
|
1094
1144
|
# The Amazon Chime SDK meeting ID.
|
@@ -1116,7 +1166,7 @@ module Aws::ChimeSDKMeetings
|
|
1116
1166
|
#
|
1117
1167
|
#
|
1118
1168
|
#
|
1119
|
-
# [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
1169
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
|
1120
1170
|
#
|
1121
1171
|
# @option params [required, String] :meeting_id
|
1122
1172
|
# The Amazon Chime SDK meeting ID.
|
@@ -1159,7 +1209,7 @@ module Aws::ChimeSDKMeetings
|
|
1159
1209
|
#
|
1160
1210
|
#
|
1161
1211
|
#
|
1162
|
-
# [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
1212
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
|
1163
1213
|
#
|
1164
1214
|
# @option params [required, String] :meeting_id
|
1165
1215
|
# The Amazon Chime SDK meeting ID.
|
@@ -1212,7 +1262,7 @@ module Aws::ChimeSDKMeetings
|
|
1212
1262
|
#
|
1213
1263
|
#
|
1214
1264
|
#
|
1215
|
-
# [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
1265
|
+
# [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html
|
1216
1266
|
#
|
1217
1267
|
# @option params [required, String] :meeting_id
|
1218
1268
|
# The Amazon Chime SDK meeting ID.
|
@@ -1523,6 +1573,13 @@ module Aws::ChimeSDKMeetings
|
|
1523
1573
|
# you can set your `video` capability to receive and you set your
|
1524
1574
|
# `content` capability to not receive.
|
1525
1575
|
#
|
1576
|
+
# * If meeting features is defined as `Video:MaxResolution:None` but
|
1577
|
+
# `Content:MaxResolution` is defined as something other than `None`
|
1578
|
+
# and attendee capabilities are not defined in the API request, then
|
1579
|
+
# the default attendee video capability is set to `Receive` and
|
1580
|
+
# attendee content capability is set to `SendReceive`. This is because
|
1581
|
+
# content `SendReceive` requires video to be at least `Receive`.
|
1582
|
+
#
|
1526
1583
|
# * When you change an `audio` capability from `None` or `Receive` to
|
1527
1584
|
# `Send` or `SendReceive` , and if the attendee left their microphone
|
1528
1585
|
# unmuted, audio will flow from the attendee to the other meeting
|
@@ -1595,7 +1652,7 @@ module Aws::ChimeSDKMeetings
|
|
1595
1652
|
tracer: tracer
|
1596
1653
|
)
|
1597
1654
|
context[:gem_name] = 'aws-sdk-chimesdkmeetings'
|
1598
|
-
context[:gem_version] = '1.
|
1655
|
+
context[:gem_version] = '1.56.0'
|
1599
1656
|
Seahorse::Client::Request.new(handlers, context)
|
1600
1657
|
end
|
1601
1658
|
|
@@ -64,6 +64,7 @@ module Aws::ChimeSDKMeetings
|
|
64
64
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
65
65
|
MediaCapabilities = Shapes::StringShape.new(name: 'MediaCapabilities')
|
66
66
|
MediaPlacement = Shapes::StructureShape.new(name: 'MediaPlacement')
|
67
|
+
MediaPlacementNetworkType = Shapes::StringShape.new(name: 'MediaPlacementNetworkType')
|
67
68
|
MediaRegion = Shapes::StringShape.new(name: 'MediaRegion')
|
68
69
|
Meeting = Shapes::StructureShape.new(name: 'Meeting')
|
69
70
|
MeetingFeatureStatus = Shapes::StringShape.new(name: 'MeetingFeatureStatus')
|
@@ -195,6 +196,7 @@ module Aws::ChimeSDKMeetings
|
|
195
196
|
CreateMeetingRequest.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
|
196
197
|
CreateMeetingRequest.add_member(:tenant_ids, Shapes::ShapeRef.new(shape: TenantIdList, location_name: "TenantIds"))
|
197
198
|
CreateMeetingRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
199
|
+
CreateMeetingRequest.add_member(:media_placement_network_type, Shapes::ShapeRef.new(shape: MediaPlacementNetworkType, location_name: "MediaPlacementNetworkType"))
|
198
200
|
CreateMeetingRequest.struct_class = Types::CreateMeetingRequest
|
199
201
|
|
200
202
|
CreateMeetingResponse.add_member(:meeting, Shapes::ShapeRef.new(shape: Meeting, location_name: "Meeting"))
|
@@ -210,6 +212,7 @@ module Aws::ChimeSDKMeetings
|
|
210
212
|
CreateMeetingWithAttendeesRequest.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
|
211
213
|
CreateMeetingWithAttendeesRequest.add_member(:tenant_ids, Shapes::ShapeRef.new(shape: TenantIdList, location_name: "TenantIds"))
|
212
214
|
CreateMeetingWithAttendeesRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
215
|
+
CreateMeetingWithAttendeesRequest.add_member(:media_placement_network_type, Shapes::ShapeRef.new(shape: MediaPlacementNetworkType, location_name: "MediaPlacementNetworkType"))
|
213
216
|
CreateMeetingWithAttendeesRequest.struct_class = Types::CreateMeetingWithAttendeesRequest
|
214
217
|
|
215
218
|
CreateMeetingWithAttendeesRequestItemList.member = Shapes::ShapeRef.new(shape: CreateAttendeeRequestItem)
|
@@ -66,6 +66,14 @@ module Aws::ChimeSDKMeetings
|
|
66
66
|
# Request status code. However, you can set your `video` capability
|
67
67
|
# to receive and you set your `content` capability to not receive.
|
68
68
|
#
|
69
|
+
# * If meeting features is defined as `Video:MaxResolution:None` but
|
70
|
+
# `Content:MaxResolution` is defined as something other than `None`
|
71
|
+
# and attendee capabilities are not defined in the API request, then
|
72
|
+
# the default attendee video capability is set to `Receive` and
|
73
|
+
# attendee content capability is set to `SendReceive`. This is
|
74
|
+
# because content `SendReceive` requires video to be at least
|
75
|
+
# `Receive`.
|
76
|
+
#
|
69
77
|
# * When you change an `audio` capability from `None` or `Receive` to
|
70
78
|
# `Send` or `SendReceive` , and if the attendee left their
|
71
79
|
# microphone unmuted, audio will flow from the attendee to the other
|
@@ -116,6 +124,13 @@ module Aws::ChimeSDKMeetings
|
|
116
124
|
# you can set your `video` capability to receive and you set your
|
117
125
|
# `content` capability to not receive.
|
118
126
|
#
|
127
|
+
# * If meeting features is defined as `Video:MaxResolution:None` but
|
128
|
+
# `Content:MaxResolution` is defined as something other than `None`
|
129
|
+
# and attendee capabilities are not defined in the API request, then
|
130
|
+
# the default attendee video capability is set to `Receive` and
|
131
|
+
# attendee content capability is set to `SendReceive`. This is because
|
132
|
+
# content `SendReceive` requires video to be at least `Receive`.
|
133
|
+
#
|
119
134
|
# * When you change an `audio` capability from `None` or `Receive` to
|
120
135
|
# `Send` or `SendReceive` , and an attendee unmutes their microphone,
|
121
136
|
# audio flows from the attendee to the other meeting participants.
|
@@ -408,6 +423,14 @@ module Aws::ChimeSDKMeetings
|
|
408
423
|
# Request status code. However, you can set your `video` capability
|
409
424
|
# to receive and you set your `content` capability to not receive.
|
410
425
|
#
|
426
|
+
# * If meeting features is defined as `Video:MaxResolution:None` but
|
427
|
+
# `Content:MaxResolution` is defined as something other than `None`
|
428
|
+
# and attendee capabilities are not defined in the API request, then
|
429
|
+
# the default attendee video capability is set to `Receive` and
|
430
|
+
# attendee content capability is set to `SendReceive`. This is
|
431
|
+
# because content `SendReceive` requires video to be at least
|
432
|
+
# `Receive`.
|
433
|
+
#
|
411
434
|
# * When you change an `audio` capability from `None` or `Receive` to
|
412
435
|
# `Send` or `SendReceive` , and if the attendee left their
|
413
436
|
# microphone unmuted, audio will flow from the attendee to the other
|
@@ -575,6 +598,11 @@ module Aws::ChimeSDKMeetings
|
|
575
598
|
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html#tag-conventions
|
576
599
|
# @return [Array<Types::Tag>]
|
577
600
|
#
|
601
|
+
# @!attribute [rw] media_placement_network_type
|
602
|
+
# The type of network for the media placement. Either IPv4 only or
|
603
|
+
# dual-stack (IPv4 and IPv6).
|
604
|
+
# @return [String]
|
605
|
+
#
|
578
606
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeetingRequest AWS API Documentation
|
579
607
|
#
|
580
608
|
class CreateMeetingRequest < Struct.new(
|
@@ -586,7 +614,8 @@ module Aws::ChimeSDKMeetings
|
|
586
614
|
:meeting_features,
|
587
615
|
:primary_meeting_id,
|
588
616
|
:tenant_ids,
|
589
|
-
:tags
|
617
|
+
:tags,
|
618
|
+
:media_placement_network_type)
|
590
619
|
SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
|
591
620
|
include Aws::Structure
|
592
621
|
end
|
@@ -666,6 +695,11 @@ module Aws::ChimeSDKMeetings
|
|
666
695
|
# The tags in the request.
|
667
696
|
# @return [Array<Types::Tag>]
|
668
697
|
#
|
698
|
+
# @!attribute [rw] media_placement_network_type
|
699
|
+
# The type of network for the media placement. Either IPv4 only or
|
700
|
+
# dual-stack (IPv4 and IPv6).
|
701
|
+
# @return [String]
|
702
|
+
#
|
669
703
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeetingWithAttendeesRequest AWS API Documentation
|
670
704
|
#
|
671
705
|
class CreateMeetingWithAttendeesRequest < Struct.new(
|
@@ -678,7 +712,8 @@ module Aws::ChimeSDKMeetings
|
|
678
712
|
:attendees,
|
679
713
|
:primary_meeting_id,
|
680
714
|
:tenant_ids,
|
681
|
-
:tags
|
715
|
+
:tags,
|
716
|
+
:media_placement_network_type)
|
682
717
|
SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
|
683
718
|
include Aws::Structure
|
684
719
|
end
|
data/sig/client.rbs
CHANGED
@@ -167,7 +167,8 @@ module Aws
|
|
167
167
|
key: ::String,
|
168
168
|
value: ::String
|
169
169
|
},
|
170
|
-
]
|
170
|
+
],
|
171
|
+
?media_placement_network_type: ("Ipv4Only" | "DualStack")
|
171
172
|
) -> _CreateMeetingResponseSuccess
|
172
173
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMeetingResponseSuccess
|
173
174
|
|
@@ -219,7 +220,8 @@ module Aws
|
|
219
220
|
key: ::String,
|
220
221
|
value: ::String
|
221
222
|
},
|
222
|
-
]
|
223
|
+
],
|
224
|
+
?media_placement_network_type: ("Ipv4Only" | "DualStack")
|
223
225
|
) -> _CreateMeetingWithAttendeesResponseSuccess
|
224
226
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMeetingWithAttendeesResponseSuccess
|
225
227
|
|
data/sig/types.rbs
CHANGED
@@ -111,6 +111,7 @@ module Aws::ChimeSDKMeetings
|
|
111
111
|
attr_accessor primary_meeting_id: ::String
|
112
112
|
attr_accessor tenant_ids: ::Array[::String]
|
113
113
|
attr_accessor tags: ::Array[Types::Tag]
|
114
|
+
attr_accessor media_placement_network_type: ("Ipv4Only" | "DualStack")
|
114
115
|
SENSITIVE: [:client_request_token, :meeting_host_id, :external_meeting_id]
|
115
116
|
end
|
116
117
|
|
@@ -130,6 +131,7 @@ module Aws::ChimeSDKMeetings
|
|
130
131
|
attr_accessor primary_meeting_id: ::String
|
131
132
|
attr_accessor tenant_ids: ::Array[::String]
|
132
133
|
attr_accessor tags: ::Array[Types::Tag]
|
134
|
+
attr_accessor media_placement_network_type: ("Ipv4Only" | "DualStack")
|
133
135
|
SENSITIVE: [:client_request_token, :meeting_host_id, :external_meeting_id]
|
134
136
|
end
|
135
137
|
|