aws-sdk-ivsrealtime 1.22.0 → 1.23.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
  SHA256:
3
- metadata.gz: 2ff46719151495e15ddc4a92abdf3ce5f9cf6f1cbcb62c73c2655e480b2aa080
4
- data.tar.gz: fb4e2267a0583fa7092d87551799f25f1b3a9aebf84623bae14e4a4c3fa0af0c
3
+ metadata.gz: fcc43e77e1749d9b2e9e36b53a91cd3b8022b51060db548beafb492972d18ab1
4
+ data.tar.gz: 2e6f7bb3b87309ec6220949da2d5bed9616287ddd150403291b62fd41e606a20
5
5
  SHA512:
6
- metadata.gz: 977567abeda0fc61a12b964b63667ef2fa765a73f55817d3d767052ec562fe1d5b75b71d3883c1393552d1a5eccc59ab948f6b7d57b5e68e7a608c73ac0d9352
7
- data.tar.gz: 519019e4335217c86ae0329c2071aa93adac69caec04c62ef0d08ad950acf2b67de9493492596ca4094dbac5296a15d8ea1a9b3cbd8993cac33cbc9ac6eebaa6
6
+ metadata.gz: 49e5a90a6ffad7d24ae8370ae44555c03c63280f521274487d14e833879cf4bb86236358407a6010b1ee276b042f09230fcb1746c8f31dbdc6b76a98f0a2efe0
7
+ data.tar.gz: '0693f3695d82153272424472dff0d322d7ed1339089366d18520967776c7495be8f409dd29ec8043c683be5152ed0d1bae8dd5aabc9dcfba0e860af0f0e3c27e'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.23.0 (2024-06-26)
5
+ ------------------
6
+
7
+ * Feature - IVS Real-Time now offers customers the ability to upload public keys for customer vended participant tokens.
8
+
4
9
  1.22.0 (2024-06-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.22.0
1
+ 1.23.0
@@ -564,7 +564,8 @@ module Aws::IVSRealTime
564
564
  # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
565
565
  #
566
566
  # @option params [Types::AutoParticipantRecordingConfiguration] :auto_participant_recording_configuration
567
- # Auto participant recording configuration object attached to the stage.
567
+ # Configuration object for individual participant recording, to attach
568
+ # to the new stage.
568
569
  #
569
570
  # @return [Types::CreateStageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
570
571
  #
@@ -604,6 +605,8 @@ module Aws::IVSRealTime
604
605
  # resp.stage.auto_participant_recording_configuration.storage_configuration_arn #=> String
605
606
  # resp.stage.auto_participant_recording_configuration.media_types #=> Array
606
607
  # resp.stage.auto_participant_recording_configuration.media_types[0] #=> String, one of "AUDIO_VIDEO", "AUDIO_ONLY"
608
+ # resp.stage.endpoints.events #=> String
609
+ # resp.stage.endpoints.whip #=> String
607
610
  # resp.participant_tokens #=> Array
608
611
  # resp.participant_tokens[0].participant_id #=> String
609
612
  # resp.participant_tokens[0].token #=> String
@@ -703,6 +706,30 @@ module Aws::IVSRealTime
703
706
  req.send_request(options)
704
707
  end
705
708
 
709
+ # Deletes the specified public key used to sign stage participant
710
+ # tokens. This invalidates future participant tokens generated using the
711
+ # key pair’s private key.
712
+ #
713
+ # @option params [required, String] :arn
714
+ # ARN of the public key to be deleted.
715
+ #
716
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
717
+ #
718
+ # @example Request syntax with placeholder values
719
+ #
720
+ # resp = client.delete_public_key({
721
+ # arn: "PublicKeyArn", # required
722
+ # })
723
+ #
724
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/DeletePublicKey AWS API Documentation
725
+ #
726
+ # @overload delete_public_key(params = {})
727
+ # @param [Hash] params ({})
728
+ def delete_public_key(params = {}, options = {})
729
+ req = build_request(:delete_public_key, params)
730
+ req.send_request(options)
731
+ end
732
+
706
733
  # Shuts down and deletes the specified stage (disconnecting all
707
734
  # participants).
708
735
  #
@@ -935,6 +962,39 @@ module Aws::IVSRealTime
935
962
  req.send_request(options)
936
963
  end
937
964
 
965
+ # Gets information for the specified public key.
966
+ #
967
+ # @option params [required, String] :arn
968
+ # ARN of the public key for which the information is to be retrieved.
969
+ #
970
+ # @return [Types::GetPublicKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
971
+ #
972
+ # * {Types::GetPublicKeyResponse#public_key #public_key} => Types::PublicKey
973
+ #
974
+ # @example Request syntax with placeholder values
975
+ #
976
+ # resp = client.get_public_key({
977
+ # arn: "PublicKeyArn", # required
978
+ # })
979
+ #
980
+ # @example Response structure
981
+ #
982
+ # resp.public_key.arn #=> String
983
+ # resp.public_key.name #=> String
984
+ # resp.public_key.public_key_material #=> String
985
+ # resp.public_key.fingerprint #=> String
986
+ # resp.public_key.tags #=> Hash
987
+ # resp.public_key.tags["TagKey"] #=> String
988
+ #
989
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/GetPublicKey AWS API Documentation
990
+ #
991
+ # @overload get_public_key(params = {})
992
+ # @param [Hash] params ({})
993
+ def get_public_key(params = {}, options = {})
994
+ req = build_request(:get_public_key, params)
995
+ req.send_request(options)
996
+ end
997
+
938
998
  # Gets information for the specified stage.
939
999
  #
940
1000
  # @option params [required, String] :arn
@@ -960,6 +1020,8 @@ module Aws::IVSRealTime
960
1020
  # resp.stage.auto_participant_recording_configuration.storage_configuration_arn #=> String
961
1021
  # resp.stage.auto_participant_recording_configuration.media_types #=> Array
962
1022
  # resp.stage.auto_participant_recording_configuration.media_types[0] #=> String, one of "AUDIO_VIDEO", "AUDIO_ONLY"
1023
+ # resp.stage.endpoints.events #=> String
1024
+ # resp.stage.endpoints.whip #=> String
963
1025
  #
964
1026
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/GetStage AWS API Documentation
965
1027
  #
@@ -1036,6 +1098,57 @@ module Aws::IVSRealTime
1036
1098
  req.send_request(options)
1037
1099
  end
1038
1100
 
1101
+ # Import a public key to be used for signing stage participant tokens.
1102
+ #
1103
+ # @option params [required, String] :public_key_material
1104
+ # The content of the public key to be imported.
1105
+ #
1106
+ # @option params [String] :name
1107
+ # Name of the public key to be imported.
1108
+ #
1109
+ # @option params [Hash<String,String>] :tags
1110
+ # Tags attached to the resource. Array of maps, each of the form
1111
+ # `string:string (key:value)`. See [Tagging AWS Resources][1] for
1112
+ # details, including restrictions that apply to tags and "Tag naming
1113
+ # limits and requirements"; Amazon IVS has no constraints on tags
1114
+ # beyond what is documented there.
1115
+ #
1116
+ #
1117
+ #
1118
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
1119
+ #
1120
+ # @return [Types::ImportPublicKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1121
+ #
1122
+ # * {Types::ImportPublicKeyResponse#public_key #public_key} => Types::PublicKey
1123
+ #
1124
+ # @example Request syntax with placeholder values
1125
+ #
1126
+ # resp = client.import_public_key({
1127
+ # public_key_material: "PublicKeyMaterial", # required
1128
+ # name: "PublicKeyName",
1129
+ # tags: {
1130
+ # "TagKey" => "TagValue",
1131
+ # },
1132
+ # })
1133
+ #
1134
+ # @example Response structure
1135
+ #
1136
+ # resp.public_key.arn #=> String
1137
+ # resp.public_key.name #=> String
1138
+ # resp.public_key.public_key_material #=> String
1139
+ # resp.public_key.fingerprint #=> String
1140
+ # resp.public_key.tags #=> Hash
1141
+ # resp.public_key.tags["TagKey"] #=> String
1142
+ #
1143
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/ImportPublicKey AWS API Documentation
1144
+ #
1145
+ # @overload import_public_key(params = {})
1146
+ # @param [Hash] params ({})
1147
+ def import_public_key(params = {}, options = {})
1148
+ req = build_request(:import_public_key, params)
1149
+ req.send_request(options)
1150
+ end
1151
+
1039
1152
  # Gets summary information about all Compositions in your account, in
1040
1153
  # the AWS region where the API request is processed.
1041
1154
  #
@@ -1273,6 +1386,48 @@ module Aws::IVSRealTime
1273
1386
  req.send_request(options)
1274
1387
  end
1275
1388
 
1389
+ # Gets summary information about all public keys in your account, in the
1390
+ # AWS region where the API request is processed.
1391
+ #
1392
+ # @option params [String] :next_token
1393
+ # The first public key to retrieve. This is used for pagination; see the
1394
+ # `nextToken` response field.
1395
+ #
1396
+ # @option params [Integer] :max_results
1397
+ # Maximum number of results to return. Default: 50.
1398
+ #
1399
+ # @return [Types::ListPublicKeysResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1400
+ #
1401
+ # * {Types::ListPublicKeysResponse#public_keys #public_keys} => Array&lt;Types::PublicKeySummary&gt;
1402
+ # * {Types::ListPublicKeysResponse#next_token #next_token} => String
1403
+ #
1404
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1405
+ #
1406
+ # @example Request syntax with placeholder values
1407
+ #
1408
+ # resp = client.list_public_keys({
1409
+ # next_token: "PaginationToken",
1410
+ # max_results: 1,
1411
+ # })
1412
+ #
1413
+ # @example Response structure
1414
+ #
1415
+ # resp.public_keys #=> Array
1416
+ # resp.public_keys[0].arn #=> String
1417
+ # resp.public_keys[0].name #=> String
1418
+ # resp.public_keys[0].tags #=> Hash
1419
+ # resp.public_keys[0].tags["TagKey"] #=> String
1420
+ # resp.next_token #=> String
1421
+ #
1422
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/ListPublicKeys AWS API Documentation
1423
+ #
1424
+ # @overload list_public_keys(params = {})
1425
+ # @param [Hash] params ({})
1426
+ def list_public_keys(params = {}, options = {})
1427
+ req = build_request(:list_public_keys, params)
1428
+ req.send_request(options)
1429
+ end
1430
+
1276
1431
  # Gets all sessions for a specified stage.
1277
1432
  #
1278
1433
  # @option params [required, String] :stage_arn
@@ -1679,9 +1834,9 @@ module Aws::IVSRealTime
1679
1834
  # Name of the stage to be updated.
1680
1835
  #
1681
1836
  # @option params [Types::AutoParticipantRecordingConfiguration] :auto_participant_recording_configuration
1682
- # Auto-participant-recording configuration object to attach to the
1683
- # stage. Auto-participant-recording configuration cannot be updated
1684
- # while recording is active.
1837
+ # Configuration object for individual participant recording, to attach
1838
+ # to the stage. Note that this cannot be updated while recording is
1839
+ # active.
1685
1840
  #
1686
1841
  # @return [Types::UpdateStageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1687
1842
  #
@@ -1708,6 +1863,8 @@ module Aws::IVSRealTime
1708
1863
  # resp.stage.auto_participant_recording_configuration.storage_configuration_arn #=> String
1709
1864
  # resp.stage.auto_participant_recording_configuration.media_types #=> Array
1710
1865
  # resp.stage.auto_participant_recording_configuration.media_types[0] #=> String, one of "AUDIO_VIDEO", "AUDIO_ONLY"
1866
+ # resp.stage.endpoints.events #=> String
1867
+ # resp.stage.endpoints.whip #=> String
1711
1868
  #
1712
1869
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/UpdateStage AWS API Documentation
1713
1870
  #
@@ -1731,7 +1888,7 @@ module Aws::IVSRealTime
1731
1888
  params: params,
1732
1889
  config: config)
1733
1890
  context[:gem_name] = 'aws-sdk-ivsrealtime'
1734
- context[:gem_version] = '1.22.0'
1891
+ context[:gem_version] = '1.23.0'
1735
1892
  Seahorse::Client::Request.new(handlers, context)
1736
1893
  end
1737
1894
 
@@ -37,6 +37,8 @@ module Aws::IVSRealTime
37
37
  CreateStorageConfigurationResponse = Shapes::StructureShape.new(name: 'CreateStorageConfigurationResponse')
38
38
  DeleteEncoderConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteEncoderConfigurationRequest')
39
39
  DeleteEncoderConfigurationResponse = Shapes::StructureShape.new(name: 'DeleteEncoderConfigurationResponse')
40
+ DeletePublicKeyRequest = Shapes::StructureShape.new(name: 'DeletePublicKeyRequest')
41
+ DeletePublicKeyResponse = Shapes::StructureShape.new(name: 'DeletePublicKeyResponse')
40
42
  DeleteStageRequest = Shapes::StructureShape.new(name: 'DeleteStageRequest')
41
43
  DeleteStageResponse = Shapes::StructureShape.new(name: 'DeleteStageResponse')
42
44
  DeleteStorageConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteStorageConfigurationRequest')
@@ -70,6 +72,8 @@ module Aws::IVSRealTime
70
72
  GetEncoderConfigurationResponse = Shapes::StructureShape.new(name: 'GetEncoderConfigurationResponse')
71
73
  GetParticipantRequest = Shapes::StructureShape.new(name: 'GetParticipantRequest')
72
74
  GetParticipantResponse = Shapes::StructureShape.new(name: 'GetParticipantResponse')
75
+ GetPublicKeyRequest = Shapes::StructureShape.new(name: 'GetPublicKeyRequest')
76
+ GetPublicKeyResponse = Shapes::StructureShape.new(name: 'GetPublicKeyResponse')
73
77
  GetStageRequest = Shapes::StructureShape.new(name: 'GetStageRequest')
74
78
  GetStageResponse = Shapes::StructureShape.new(name: 'GetStageResponse')
75
79
  GetStageSessionRequest = Shapes::StructureShape.new(name: 'GetStageSessionRequest')
@@ -79,6 +83,8 @@ module Aws::IVSRealTime
79
83
  GridConfiguration = Shapes::StructureShape.new(name: 'GridConfiguration')
80
84
  GridGap = Shapes::IntegerShape.new(name: 'GridGap')
81
85
  Height = Shapes::IntegerShape.new(name: 'Height')
86
+ ImportPublicKeyRequest = Shapes::StructureShape.new(name: 'ImportPublicKeyRequest')
87
+ ImportPublicKeyResponse = Shapes::StructureShape.new(name: 'ImportPublicKeyResponse')
82
88
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
83
89
  LayoutConfiguration = Shapes::StructureShape.new(name: 'LayoutConfiguration')
84
90
  ListCompositionsRequest = Shapes::StructureShape.new(name: 'ListCompositionsRequest')
@@ -89,6 +95,8 @@ module Aws::IVSRealTime
89
95
  ListParticipantEventsResponse = Shapes::StructureShape.new(name: 'ListParticipantEventsResponse')
90
96
  ListParticipantsRequest = Shapes::StructureShape.new(name: 'ListParticipantsRequest')
91
97
  ListParticipantsResponse = Shapes::StructureShape.new(name: 'ListParticipantsResponse')
98
+ ListPublicKeysRequest = Shapes::StructureShape.new(name: 'ListPublicKeysRequest')
99
+ ListPublicKeysResponse = Shapes::StructureShape.new(name: 'ListPublicKeysResponse')
92
100
  ListStageSessionsRequest = Shapes::StructureShape.new(name: 'ListStageSessionsRequest')
93
101
  ListStageSessionsResponse = Shapes::StructureShape.new(name: 'ListStageSessionsResponse')
94
102
  ListStagesRequest = Shapes::StructureShape.new(name: 'ListStagesRequest')
@@ -101,6 +109,7 @@ module Aws::IVSRealTime
101
109
  MaxEncoderConfigurationResults = Shapes::IntegerShape.new(name: 'MaxEncoderConfigurationResults')
102
110
  MaxParticipantEventResults = Shapes::IntegerShape.new(name: 'MaxParticipantEventResults')
103
111
  MaxParticipantResults = Shapes::IntegerShape.new(name: 'MaxParticipantResults')
112
+ MaxPublicKeyResults = Shapes::IntegerShape.new(name: 'MaxPublicKeyResults')
104
113
  MaxStageResults = Shapes::IntegerShape.new(name: 'MaxStageResults')
105
114
  MaxStageSessionResults = Shapes::IntegerShape.new(name: 'MaxStageSessionResults')
106
115
  MaxStorageConfigurationResults = Shapes::IntegerShape.new(name: 'MaxStorageConfigurationResults')
@@ -138,6 +147,13 @@ module Aws::IVSRealTime
138
147
  PipOffset = Shapes::IntegerShape.new(name: 'PipOffset')
139
148
  PipPosition = Shapes::StringShape.new(name: 'PipPosition')
140
149
  PipWidth = Shapes::IntegerShape.new(name: 'PipWidth')
150
+ PublicKey = Shapes::StructureShape.new(name: 'PublicKey')
151
+ PublicKeyArn = Shapes::StringShape.new(name: 'PublicKeyArn')
152
+ PublicKeyFingerprint = Shapes::StringShape.new(name: 'PublicKeyFingerprint')
153
+ PublicKeyList = Shapes::ListShape.new(name: 'PublicKeyList')
154
+ PublicKeyMaterial = Shapes::StringShape.new(name: 'PublicKeyMaterial')
155
+ PublicKeyName = Shapes::StringShape.new(name: 'PublicKeyName')
156
+ PublicKeySummary = Shapes::StructureShape.new(name: 'PublicKeySummary')
141
157
  Published = Shapes::BooleanShape.new(name: 'Published')
142
158
  RecordingConfiguration = Shapes::StructureShape.new(name: 'RecordingConfiguration')
143
159
  RecordingConfigurationFormat = Shapes::StringShape.new(name: 'RecordingConfigurationFormat')
@@ -150,6 +166,8 @@ module Aws::IVSRealTime
150
166
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
151
167
  Stage = Shapes::StructureShape.new(name: 'Stage')
152
168
  StageArn = Shapes::StringShape.new(name: 'StageArn')
169
+ StageEndpoint = Shapes::StringShape.new(name: 'StageEndpoint')
170
+ StageEndpoints = Shapes::StructureShape.new(name: 'StageEndpoints')
153
171
  StageName = Shapes::StringShape.new(name: 'StageName')
154
172
  StageSession = Shapes::StructureShape.new(name: 'StageSession')
155
173
  StageSessionId = Shapes::StringShape.new(name: 'StageSessionId')
@@ -262,6 +280,11 @@ module Aws::IVSRealTime
262
280
 
263
281
  DeleteEncoderConfigurationResponse.struct_class = Types::DeleteEncoderConfigurationResponse
264
282
 
283
+ DeletePublicKeyRequest.add_member(:arn, Shapes::ShapeRef.new(shape: PublicKeyArn, required: true, location_name: "arn"))
284
+ DeletePublicKeyRequest.struct_class = Types::DeletePublicKeyRequest
285
+
286
+ DeletePublicKeyResponse.struct_class = Types::DeletePublicKeyResponse
287
+
265
288
  DeleteStageRequest.add_member(:arn, Shapes::ShapeRef.new(shape: StageArn, required: true, location_name: "arn"))
266
289
  DeleteStageRequest.struct_class = Types::DeleteStageRequest
267
290
 
@@ -351,6 +374,12 @@ module Aws::IVSRealTime
351
374
  GetParticipantResponse.add_member(:participant, Shapes::ShapeRef.new(shape: Participant, location_name: "participant"))
352
375
  GetParticipantResponse.struct_class = Types::GetParticipantResponse
353
376
 
377
+ GetPublicKeyRequest.add_member(:arn, Shapes::ShapeRef.new(shape: PublicKeyArn, required: true, location_name: "arn"))
378
+ GetPublicKeyRequest.struct_class = Types::GetPublicKeyRequest
379
+
380
+ GetPublicKeyResponse.add_member(:public_key, Shapes::ShapeRef.new(shape: PublicKey, location_name: "publicKey"))
381
+ GetPublicKeyResponse.struct_class = Types::GetPublicKeyResponse
382
+
354
383
  GetStageRequest.add_member(:arn, Shapes::ShapeRef.new(shape: StageArn, required: true, location_name: "arn"))
355
384
  GetStageRequest.struct_class = Types::GetStageRequest
356
385
 
@@ -377,6 +406,14 @@ module Aws::IVSRealTime
377
406
  GridConfiguration.add_member(:grid_gap, Shapes::ShapeRef.new(shape: GridGap, location_name: "gridGap"))
378
407
  GridConfiguration.struct_class = Types::GridConfiguration
379
408
 
409
+ ImportPublicKeyRequest.add_member(:public_key_material, Shapes::ShapeRef.new(shape: PublicKeyMaterial, required: true, location_name: "publicKeyMaterial"))
410
+ ImportPublicKeyRequest.add_member(:name, Shapes::ShapeRef.new(shape: PublicKeyName, location_name: "name"))
411
+ ImportPublicKeyRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
412
+ ImportPublicKeyRequest.struct_class = Types::ImportPublicKeyRequest
413
+
414
+ ImportPublicKeyResponse.add_member(:public_key, Shapes::ShapeRef.new(shape: PublicKey, location_name: "publicKey"))
415
+ ImportPublicKeyResponse.struct_class = Types::ImportPublicKeyResponse
416
+
380
417
  InternalServerException.add_member(:exception_message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "exceptionMessage"))
381
418
  InternalServerException.struct_class = Types::InternalServerException
382
419
 
@@ -427,6 +464,14 @@ module Aws::IVSRealTime
427
464
  ListParticipantsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
428
465
  ListParticipantsResponse.struct_class = Types::ListParticipantsResponse
429
466
 
467
+ ListPublicKeysRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
468
+ ListPublicKeysRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxPublicKeyResults, location_name: "maxResults"))
469
+ ListPublicKeysRequest.struct_class = Types::ListPublicKeysRequest
470
+
471
+ ListPublicKeysResponse.add_member(:public_keys, Shapes::ShapeRef.new(shape: PublicKeyList, required: true, location_name: "publicKeys"))
472
+ ListPublicKeysResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
473
+ ListPublicKeysResponse.struct_class = Types::ListPublicKeysResponse
474
+
430
475
  ListStageSessionsRequest.add_member(:stage_arn, Shapes::ShapeRef.new(shape: StageArn, required: true, location_name: "stageArn"))
431
476
  ListStageSessionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
432
477
  ListStageSessionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxStageSessionResults, location_name: "maxResults"))
@@ -529,6 +574,20 @@ module Aws::IVSRealTime
529
574
  PipConfiguration.add_member(:pip_height, Shapes::ShapeRef.new(shape: PipHeight, location_name: "pipHeight"))
530
575
  PipConfiguration.struct_class = Types::PipConfiguration
531
576
 
577
+ PublicKey.add_member(:arn, Shapes::ShapeRef.new(shape: PublicKeyArn, location_name: "arn"))
578
+ PublicKey.add_member(:name, Shapes::ShapeRef.new(shape: PublicKeyName, location_name: "name"))
579
+ PublicKey.add_member(:public_key_material, Shapes::ShapeRef.new(shape: PublicKeyMaterial, location_name: "publicKeyMaterial"))
580
+ PublicKey.add_member(:fingerprint, Shapes::ShapeRef.new(shape: PublicKeyFingerprint, location_name: "fingerprint"))
581
+ PublicKey.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
582
+ PublicKey.struct_class = Types::PublicKey
583
+
584
+ PublicKeyList.member = Shapes::ShapeRef.new(shape: PublicKeySummary)
585
+
586
+ PublicKeySummary.add_member(:arn, Shapes::ShapeRef.new(shape: PublicKeyArn, location_name: "arn"))
587
+ PublicKeySummary.add_member(:name, Shapes::ShapeRef.new(shape: PublicKeyName, location_name: "name"))
588
+ PublicKeySummary.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
589
+ PublicKeySummary.struct_class = Types::PublicKeySummary
590
+
532
591
  RecordingConfiguration.add_member(:format, Shapes::ShapeRef.new(shape: RecordingConfigurationFormat, location_name: "format"))
533
592
  RecordingConfiguration.struct_class = Types::RecordingConfiguration
534
593
 
@@ -554,8 +613,13 @@ module Aws::IVSRealTime
554
613
  Stage.add_member(:active_session_id, Shapes::ShapeRef.new(shape: StageSessionId, location_name: "activeSessionId"))
555
614
  Stage.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
556
615
  Stage.add_member(:auto_participant_recording_configuration, Shapes::ShapeRef.new(shape: AutoParticipantRecordingConfiguration, location_name: "autoParticipantRecordingConfiguration"))
616
+ Stage.add_member(:endpoints, Shapes::ShapeRef.new(shape: StageEndpoints, location_name: "endpoints"))
557
617
  Stage.struct_class = Types::Stage
558
618
 
619
+ StageEndpoints.add_member(:events, Shapes::ShapeRef.new(shape: StageEndpoint, location_name: "events"))
620
+ StageEndpoints.add_member(:whip, Shapes::ShapeRef.new(shape: StageEndpoint, location_name: "whip"))
621
+ StageEndpoints.struct_class = Types::StageEndpoints
622
+
559
623
  StageSession.add_member(:session_id, Shapes::ShapeRef.new(shape: StageSessionId, location_name: "sessionId"))
560
624
  StageSession.add_member(:start_time, Shapes::ShapeRef.new(shape: Time, location_name: "startTime"))
561
625
  StageSession.add_member(:end_time, Shapes::ShapeRef.new(shape: Time, location_name: "endTime"))
@@ -648,8 +712,8 @@ module Aws::IVSRealTime
648
712
  api.metadata = {
649
713
  "apiVersion" => "2020-07-14",
650
714
  "endpointPrefix" => "ivsrealtime",
651
- "jsonVersion" => "1.1",
652
715
  "protocol" => "rest-json",
716
+ "protocols" => ["rest-json"],
653
717
  "serviceAbbreviation" => "ivsrealtime",
654
718
  "serviceFullName" => "Amazon Interactive Video Service RealTime",
655
719
  "serviceId" => "IVS RealTime",
@@ -727,6 +791,19 @@ module Aws::IVSRealTime
727
791
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
728
792
  end)
729
793
 
794
+ api.add_operation(:delete_public_key, Seahorse::Model::Operation.new.tap do |o|
795
+ o.name = "DeletePublicKey"
796
+ o.http_method = "POST"
797
+ o.http_request_uri = "/DeletePublicKey"
798
+ o.input = Shapes::ShapeRef.new(shape: DeletePublicKeyRequest)
799
+ o.output = Shapes::ShapeRef.new(shape: DeletePublicKeyResponse)
800
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
801
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
802
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
803
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
804
+ o.errors << Shapes::ShapeRef.new(shape: PendingVerification)
805
+ end)
806
+
730
807
  api.add_operation(:delete_stage, Seahorse::Model::Operation.new.tap do |o|
731
808
  o.name = "DeleteStage"
732
809
  o.http_method = "POST"
@@ -805,6 +882,17 @@ module Aws::IVSRealTime
805
882
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
806
883
  end)
807
884
 
885
+ api.add_operation(:get_public_key, Seahorse::Model::Operation.new.tap do |o|
886
+ o.name = "GetPublicKey"
887
+ o.http_method = "POST"
888
+ o.http_request_uri = "/GetPublicKey"
889
+ o.input = Shapes::ShapeRef.new(shape: GetPublicKeyRequest)
890
+ o.output = Shapes::ShapeRef.new(shape: GetPublicKeyResponse)
891
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
892
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
893
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
894
+ end)
895
+
808
896
  api.add_operation(:get_stage, Seahorse::Model::Operation.new.tap do |o|
809
897
  o.name = "GetStage"
810
898
  o.http_method = "POST"
@@ -841,6 +929,19 @@ module Aws::IVSRealTime
841
929
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
842
930
  end)
843
931
 
932
+ api.add_operation(:import_public_key, Seahorse::Model::Operation.new.tap do |o|
933
+ o.name = "ImportPublicKey"
934
+ o.http_method = "POST"
935
+ o.http_request_uri = "/ImportPublicKey"
936
+ o.input = Shapes::ShapeRef.new(shape: ImportPublicKeyRequest)
937
+ o.output = Shapes::ShapeRef.new(shape: ImportPublicKeyResponse)
938
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
939
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
940
+ o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
941
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
942
+ o.errors << Shapes::ShapeRef.new(shape: PendingVerification)
943
+ end)
944
+
844
945
  api.add_operation(:list_compositions, Seahorse::Model::Operation.new.tap do |o|
845
946
  o.name = "ListCompositions"
846
947
  o.http_method = "POST"
@@ -911,6 +1012,22 @@ module Aws::IVSRealTime
911
1012
  )
912
1013
  end)
913
1014
 
1015
+ api.add_operation(:list_public_keys, Seahorse::Model::Operation.new.tap do |o|
1016
+ o.name = "ListPublicKeys"
1017
+ o.http_method = "POST"
1018
+ o.http_request_uri = "/ListPublicKeys"
1019
+ o.input = Shapes::ShapeRef.new(shape: ListPublicKeysRequest)
1020
+ o.output = Shapes::ShapeRef.new(shape: ListPublicKeysResponse)
1021
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1022
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1023
+ o[:pager] = Aws::Pager.new(
1024
+ limit_key: "max_results",
1025
+ tokens: {
1026
+ "next_token" => "next_token"
1027
+ }
1028
+ )
1029
+ end)
1030
+
914
1031
  api.add_operation(:list_stage_sessions, Seahorse::Model::Operation.new.tap do |o|
915
1032
  o.name = "ListStageSessions"
916
1033
  o.http_method = "POST"
@@ -82,6 +82,20 @@ module Aws::IVSRealTime
82
82
  end
83
83
  end
84
84
 
85
+ class DeletePublicKey
86
+ def self.build(context)
87
+ unless context.config.regional_endpoint
88
+ endpoint = context.config.endpoint.to_s
89
+ end
90
+ Aws::IVSRealTime::EndpointParameters.new(
91
+ region: context.config.region,
92
+ use_dual_stack: context.config.use_dualstack_endpoint,
93
+ use_fips: context.config.use_fips_endpoint,
94
+ endpoint: endpoint,
95
+ )
96
+ end
97
+ end
98
+
85
99
  class DeleteStage
86
100
  def self.build(context)
87
101
  unless context.config.regional_endpoint
@@ -166,6 +180,20 @@ module Aws::IVSRealTime
166
180
  end
167
181
  end
168
182
 
183
+ class GetPublicKey
184
+ def self.build(context)
185
+ unless context.config.regional_endpoint
186
+ endpoint = context.config.endpoint.to_s
187
+ end
188
+ Aws::IVSRealTime::EndpointParameters.new(
189
+ region: context.config.region,
190
+ use_dual_stack: context.config.use_dualstack_endpoint,
191
+ use_fips: context.config.use_fips_endpoint,
192
+ endpoint: endpoint,
193
+ )
194
+ end
195
+ end
196
+
169
197
  class GetStage
170
198
  def self.build(context)
171
199
  unless context.config.regional_endpoint
@@ -208,6 +236,20 @@ module Aws::IVSRealTime
208
236
  end
209
237
  end
210
238
 
239
+ class ImportPublicKey
240
+ def self.build(context)
241
+ unless context.config.regional_endpoint
242
+ endpoint = context.config.endpoint.to_s
243
+ end
244
+ Aws::IVSRealTime::EndpointParameters.new(
245
+ region: context.config.region,
246
+ use_dual_stack: context.config.use_dualstack_endpoint,
247
+ use_fips: context.config.use_fips_endpoint,
248
+ endpoint: endpoint,
249
+ )
250
+ end
251
+ end
252
+
211
253
  class ListCompositions
212
254
  def self.build(context)
213
255
  unless context.config.regional_endpoint
@@ -264,6 +306,20 @@ module Aws::IVSRealTime
264
306
  end
265
307
  end
266
308
 
309
+ class ListPublicKeys
310
+ def self.build(context)
311
+ unless context.config.regional_endpoint
312
+ endpoint = context.config.endpoint.to_s
313
+ end
314
+ Aws::IVSRealTime::EndpointParameters.new(
315
+ region: context.config.region,
316
+ use_dual_stack: context.config.use_dualstack_endpoint,
317
+ use_fips: context.config.use_fips_endpoint,
318
+ endpoint: endpoint,
319
+ )
320
+ end
321
+ end
322
+
267
323
  class ListStageSessions
268
324
  def self.build(context)
269
325
  unless context.config.regional_endpoint
@@ -68,6 +68,8 @@ module Aws::IVSRealTime
68
68
  Aws::IVSRealTime::Endpoints::CreateStorageConfiguration.build(context)
69
69
  when :delete_encoder_configuration
70
70
  Aws::IVSRealTime::Endpoints::DeleteEncoderConfiguration.build(context)
71
+ when :delete_public_key
72
+ Aws::IVSRealTime::Endpoints::DeletePublicKey.build(context)
71
73
  when :delete_stage
72
74
  Aws::IVSRealTime::Endpoints::DeleteStage.build(context)
73
75
  when :delete_storage_configuration
@@ -80,12 +82,16 @@ module Aws::IVSRealTime
80
82
  Aws::IVSRealTime::Endpoints::GetEncoderConfiguration.build(context)
81
83
  when :get_participant
82
84
  Aws::IVSRealTime::Endpoints::GetParticipant.build(context)
85
+ when :get_public_key
86
+ Aws::IVSRealTime::Endpoints::GetPublicKey.build(context)
83
87
  when :get_stage
84
88
  Aws::IVSRealTime::Endpoints::GetStage.build(context)
85
89
  when :get_stage_session
86
90
  Aws::IVSRealTime::Endpoints::GetStageSession.build(context)
87
91
  when :get_storage_configuration
88
92
  Aws::IVSRealTime::Endpoints::GetStorageConfiguration.build(context)
93
+ when :import_public_key
94
+ Aws::IVSRealTime::Endpoints::ImportPublicKey.build(context)
89
95
  when :list_compositions
90
96
  Aws::IVSRealTime::Endpoints::ListCompositions.build(context)
91
97
  when :list_encoder_configurations
@@ -94,6 +100,8 @@ module Aws::IVSRealTime
94
100
  Aws::IVSRealTime::Endpoints::ListParticipantEvents.build(context)
95
101
  when :list_participants
96
102
  Aws::IVSRealTime::Endpoints::ListParticipants.build(context)
103
+ when :list_public_keys
104
+ Aws::IVSRealTime::Endpoints::ListPublicKeys.build(context)
97
105
  when :list_stage_sessions
98
106
  Aws::IVSRealTime::Endpoints::ListStageSessions.build(context)
99
107
  when :list_stages
@@ -22,14 +22,15 @@ module Aws::IVSRealTime
22
22
  include Aws::Structure
23
23
  end
24
24
 
25
- # Object specifying an auto-participant-recording configuration.
25
+ # Object specifying a configuration for individual participant
26
+ # recording.
26
27
  #
27
28
  # @!attribute [rw] storage_configuration_arn
28
- # ARN of the StorageConfiguration resource to use for auto participant
29
- # recording. Default: "" (empty string, no storage configuration is
30
- # specified). Individual participant recording cannot be started
31
- # unless a storage configuration is specified, when a Stage is created
32
- # or updated.
29
+ # ARN of the StorageConfiguration resource to use for individual
30
+ # participant recording. Default: `""` (empty string, no storage
31
+ # configuration is specified). Individual participant recording cannot
32
+ # be started unless a storage configuration is specified, when a Stage
33
+ # is created or updated.
33
34
  # @return [String]
34
35
  #
35
36
  # @!attribute [rw] media_types
@@ -311,8 +312,8 @@ module Aws::IVSRealTime
311
312
  # @return [Hash<String,String>]
312
313
  #
313
314
  # @!attribute [rw] auto_participant_recording_configuration
314
- # Auto participant recording configuration object attached to the
315
- # stage.
315
+ # Configuration object for individual participant recording, to attach
316
+ # to the new stage.
316
317
  # @return [Types::AutoParticipantRecordingConfiguration]
317
318
  #
318
319
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/CreateStageRequest AWS API Documentation
@@ -403,6 +404,22 @@ module Aws::IVSRealTime
403
404
  #
404
405
  class DeleteEncoderConfigurationResponse < Aws::EmptyStructure; end
405
406
 
407
+ # @!attribute [rw] arn
408
+ # ARN of the public key to be deleted.
409
+ # @return [String]
410
+ #
411
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/DeletePublicKeyRequest AWS API Documentation
412
+ #
413
+ class DeletePublicKeyRequest < Struct.new(
414
+ :arn)
415
+ SENSITIVE = []
416
+ include Aws::Structure
417
+ end
418
+
419
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/DeletePublicKeyResponse AWS API Documentation
420
+ #
421
+ class DeletePublicKeyResponse < Aws::EmptyStructure; end
422
+
406
423
  # @!attribute [rw] arn
407
424
  # ARN of the stage to be deleted.
408
425
  # @return [String]
@@ -779,6 +796,30 @@ module Aws::IVSRealTime
779
796
  include Aws::Structure
780
797
  end
781
798
 
799
+ # @!attribute [rw] arn
800
+ # ARN of the public key for which the information is to be retrieved.
801
+ # @return [String]
802
+ #
803
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/GetPublicKeyRequest AWS API Documentation
804
+ #
805
+ class GetPublicKeyRequest < Struct.new(
806
+ :arn)
807
+ SENSITIVE = []
808
+ include Aws::Structure
809
+ end
810
+
811
+ # @!attribute [rw] public_key
812
+ # The public key that is returned.
813
+ # @return [Types::PublicKey]
814
+ #
815
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/GetPublicKeyResponse AWS API Documentation
816
+ #
817
+ class GetPublicKeyResponse < Struct.new(
818
+ :public_key)
819
+ SENSITIVE = []
820
+ include Aws::Structure
821
+ end
822
+
782
823
  # @!attribute [rw] arn
783
824
  # ARN of the stage for which the information is to be retrieved.
784
825
  # @return [String]
@@ -867,6 +908,7 @@ module Aws::IVSRealTime
867
908
  # This attribute name identifies the featured slot. A participant with
868
909
  # this attribute set to `"true"` (as a string value) in
869
910
  # ParticipantTokenConfiguration is placed in the featured slot.
911
+ # Default: `""` (no featured participant).
870
912
  # @return [String]
871
913
  #
872
914
  # @!attribute [rw] omit_stopped_video
@@ -875,13 +917,16 @@ module Aws::IVSRealTime
875
917
  # @return [Boolean]
876
918
  #
877
919
  # @!attribute [rw] video_aspect_ratio
878
- # Sets the non-featured participant display mode. Default: `VIDEO`.
920
+ # Sets the non-featured participant display mode, to control the
921
+ # aspect ratio of video tiles. `VIDEO` is 16:9, `SQUARE` is 1:1, and
922
+ # `PORTRAIT` is 3:4. Default: `VIDEO`.
879
923
  # @return [String]
880
924
  #
881
925
  # @!attribute [rw] video_fill_mode
882
- # Defines how video fits within the participant tile. When not set,
883
- # `videoFillMode` defaults to `COVER` fill mode for participants in
884
- # the grid and to `CONTAIN` fill mode for featured participants.
926
+ # Defines how video content fits within the participant tile: `FILL`
927
+ # (stretched), `COVER` (cropped), or `CONTAIN` (letterboxed). When not
928
+ # set, `videoFillMode` defaults to `COVER` fill mode for participants
929
+ # in the grid and to `CONTAIN` fill mode for featured participants.
885
930
  # @return [String]
886
931
  #
887
932
  # @!attribute [rw] grid_gap
@@ -901,6 +946,48 @@ module Aws::IVSRealTime
901
946
  include Aws::Structure
902
947
  end
903
948
 
949
+ # @!attribute [rw] public_key_material
950
+ # The content of the public key to be imported.
951
+ # @return [String]
952
+ #
953
+ # @!attribute [rw] name
954
+ # Name of the public key to be imported.
955
+ # @return [String]
956
+ #
957
+ # @!attribute [rw] tags
958
+ # Tags attached to the resource. Array of maps, each of the form
959
+ # `string:string (key:value)`. See [Tagging AWS Resources][1] for
960
+ # details, including restrictions that apply to tags and "Tag naming
961
+ # limits and requirements"; Amazon IVS has no constraints on tags
962
+ # beyond what is documented there.
963
+ #
964
+ #
965
+ #
966
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
967
+ # @return [Hash<String,String>]
968
+ #
969
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/ImportPublicKeyRequest AWS API Documentation
970
+ #
971
+ class ImportPublicKeyRequest < Struct.new(
972
+ :public_key_material,
973
+ :name,
974
+ :tags)
975
+ SENSITIVE = []
976
+ include Aws::Structure
977
+ end
978
+
979
+ # @!attribute [rw] public_key
980
+ # The public key that was imported.
981
+ # @return [Types::PublicKey]
982
+ #
983
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/ImportPublicKeyResponse AWS API Documentation
984
+ #
985
+ class ImportPublicKeyResponse < Struct.new(
986
+ :public_key)
987
+ SENSITIVE = []
988
+ include Aws::Structure
989
+ end
990
+
904
991
  # @!attribute [rw] exception_message
905
992
  # Unexpected error during processing of request.
906
993
  # @return [String]
@@ -1148,6 +1235,42 @@ module Aws::IVSRealTime
1148
1235
  include Aws::Structure
1149
1236
  end
1150
1237
 
1238
+ # @!attribute [rw] next_token
1239
+ # The first public key to retrieve. This is used for pagination; see
1240
+ # the `nextToken` response field.
1241
+ # @return [String]
1242
+ #
1243
+ # @!attribute [rw] max_results
1244
+ # Maximum number of results to return. Default: 50.
1245
+ # @return [Integer]
1246
+ #
1247
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/ListPublicKeysRequest AWS API Documentation
1248
+ #
1249
+ class ListPublicKeysRequest < Struct.new(
1250
+ :next_token,
1251
+ :max_results)
1252
+ SENSITIVE = []
1253
+ include Aws::Structure
1254
+ end
1255
+
1256
+ # @!attribute [rw] public_keys
1257
+ # List of the matching public keys (summary information only).
1258
+ # @return [Array<Types::PublicKeySummary>]
1259
+ #
1260
+ # @!attribute [rw] next_token
1261
+ # If there are more public keys than `maxResults`, use `nextToken` in
1262
+ # the request to get the next set.
1263
+ # @return [String]
1264
+ #
1265
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/ListPublicKeysResponse AWS API Documentation
1266
+ #
1267
+ class ListPublicKeysResponse < Struct.new(
1268
+ :public_keys,
1269
+ :next_token)
1270
+ SENSITIVE = []
1271
+ include Aws::Structure
1272
+ end
1273
+
1151
1274
  # @!attribute [rw] stage_arn
1152
1275
  # Stage ARN.
1153
1276
  # @return [String]
@@ -1350,18 +1473,18 @@ module Aws::IVSRealTime
1350
1473
  #
1351
1474
  # @!attribute [rw] recording_s3_bucket_name
1352
1475
  # Name of the S3 bucket to where the participant is being recorded, if
1353
- # individual participant recording is enabled, or "" (empty string),
1476
+ # individual participant recording is enabled, or `""` (empty string),
1354
1477
  # if recording is not enabled.
1355
1478
  # @return [String]
1356
1479
  #
1357
1480
  # @!attribute [rw] recording_s3_prefix
1358
- # S3 prefix of the S3 bucket to where the participant is being
1359
- # recorded, if individual participant recording is enabled, or ""
1360
- # (empty string), if recording is not enabled.
1481
+ # S3 prefix of the S3 bucket where the participant is being recorded,
1482
+ # if individual participant recording is enabled, or `""` (empty
1483
+ # string), if recording is not enabled.
1361
1484
  # @return [String]
1362
1485
  #
1363
1486
  # @!attribute [rw] recording_state
1364
- # Participant’s recording state.
1487
+ # The participant’s recording state.
1365
1488
  # @return [String]
1366
1489
  #
1367
1490
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/Participant AWS API Documentation
@@ -1415,7 +1538,7 @@ module Aws::IVSRealTime
1415
1538
  # @return [Boolean]
1416
1539
  #
1417
1540
  # @!attribute [rw] recording_state
1418
- # Participant’s recording state.
1541
+ # The participant’s recording state.
1419
1542
  # @return [String]
1420
1543
  #
1421
1544
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/ParticipantSummary AWS API Documentation
@@ -1552,6 +1675,7 @@ module Aws::IVSRealTime
1552
1675
  # This attribute name identifies the featured slot. A participant with
1553
1676
  # this attribute set to `"true"` (as a string value) in
1554
1677
  # ParticipantTokenConfiguration is placed in the featured slot.
1678
+ # Default: `""` (no featured participant).
1555
1679
  # @return [String]
1556
1680
  #
1557
1681
  # @!attribute [rw] omit_stopped_video
@@ -1560,7 +1684,8 @@ module Aws::IVSRealTime
1560
1684
  # @return [Boolean]
1561
1685
  #
1562
1686
  # @!attribute [rw] video_fill_mode
1563
- # Defines how video fits within the participant tile. Default:
1687
+ # Defines how video content fits within the participant tile: `FILL`
1688
+ # (stretched), `COVER` (cropped), or `CONTAIN` (letterboxed). Default:
1564
1689
  # `COVER`.
1565
1690
  # @return [String]
1566
1691
  #
@@ -1570,14 +1695,16 @@ module Aws::IVSRealTime
1570
1695
  # @return [Integer]
1571
1696
  #
1572
1697
  # @!attribute [rw] pip_participant_attribute
1573
- # Identifies the PiP slot. A participant with this attribute set to
1574
- # `"true"` (as a string value) in ParticipantTokenConfiguration is
1575
- # placed in the PiP slot.
1698
+ # Specifies the participant for the PiP window. A participant with
1699
+ # this attribute set to `"true"` (as a string value) in
1700
+ # ParticipantTokenConfiguration is placed in the PiP slot. Default:
1701
+ # `""` (no PiP participant).
1576
1702
  # @return [String]
1577
1703
  #
1578
1704
  # @!attribute [rw] pip_behavior
1579
- # Defines PiP behavior when all participants have left. Default:
1580
- # `STATIC`.
1705
+ # Defines PiP behavior when all participants have left: `STATIC`
1706
+ # (maintains original position/size) or `DYNAMIC` (expands to full
1707
+ # composition). Default: `STATIC`.
1581
1708
  # @return [String]
1582
1709
  #
1583
1710
  # @!attribute [rw] pip_offset
@@ -1619,6 +1746,81 @@ module Aws::IVSRealTime
1619
1746
  include Aws::Structure
1620
1747
  end
1621
1748
 
1749
+ # Object specifying a public key used to sign stage participant tokens.
1750
+ #
1751
+ # @!attribute [rw] arn
1752
+ # Public key ARN.
1753
+ # @return [String]
1754
+ #
1755
+ # @!attribute [rw] name
1756
+ # Public key name.
1757
+ # @return [String]
1758
+ #
1759
+ # @!attribute [rw] public_key_material
1760
+ # Public key material.
1761
+ # @return [String]
1762
+ #
1763
+ # @!attribute [rw] fingerprint
1764
+ # The public key fingerprint, a short string used to identify or
1765
+ # verify the full public key.
1766
+ # @return [String]
1767
+ #
1768
+ # @!attribute [rw] tags
1769
+ # Tags attached to the resource. Array of maps, each of the form
1770
+ # `string:string (key:value)`. See [Tagging AWS Resources][1] for
1771
+ # details, including restrictions that apply to tags and "Tag naming
1772
+ # limits and requirements"; Amazon IVS has no constraints on tags
1773
+ # beyond what is documented there.
1774
+ #
1775
+ #
1776
+ #
1777
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
1778
+ # @return [Hash<String,String>]
1779
+ #
1780
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/PublicKey AWS API Documentation
1781
+ #
1782
+ class PublicKey < Struct.new(
1783
+ :arn,
1784
+ :name,
1785
+ :public_key_material,
1786
+ :fingerprint,
1787
+ :tags)
1788
+ SENSITIVE = []
1789
+ include Aws::Structure
1790
+ end
1791
+
1792
+ # Summary information about a public key.
1793
+ #
1794
+ # @!attribute [rw] arn
1795
+ # Public key ARN.
1796
+ # @return [String]
1797
+ #
1798
+ # @!attribute [rw] name
1799
+ # Public key name.
1800
+ # @return [String]
1801
+ #
1802
+ # @!attribute [rw] tags
1803
+ # Tags attached to the resource. Array of maps, each of the form
1804
+ # `string:string (key:value)`. See [Tagging AWS Resources][1] for
1805
+ # details, including restrictions that apply to tags and "Tag naming
1806
+ # limits and requirements"; Amazon IVS has no constraints on tags
1807
+ # beyond what is documented there.
1808
+ #
1809
+ #
1810
+ #
1811
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
1812
+ # @return [Hash<String,String>]
1813
+ #
1814
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/PublicKeySummary AWS API Documentation
1815
+ #
1816
+ class PublicKeySummary < Struct.new(
1817
+ :arn,
1818
+ :name,
1819
+ :tags)
1820
+ SENSITIVE = []
1821
+ include Aws::Structure
1822
+ end
1823
+
1622
1824
  # An object representing a configuration to record a stage stream.
1623
1825
  #
1624
1826
  # @!attribute [rw] format
@@ -1744,10 +1946,14 @@ module Aws::IVSRealTime
1744
1946
  # @return [Hash<String,String>]
1745
1947
  #
1746
1948
  # @!attribute [rw] auto_participant_recording_configuration
1747
- # Auto-participant-recording configuration object attached to the
1748
- # stage.
1949
+ # Configuration object for individual participant recording, attached
1950
+ # to the stage.
1749
1951
  # @return [Types::AutoParticipantRecordingConfiguration]
1750
1952
  #
1953
+ # @!attribute [rw] endpoints
1954
+ # Summary information about various endpoints for a stage.
1955
+ # @return [Types::StageEndpoints]
1956
+ #
1751
1957
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/Stage AWS API Documentation
1752
1958
  #
1753
1959
  class Stage < Struct.new(
@@ -1755,7 +1961,27 @@ module Aws::IVSRealTime
1755
1961
  :name,
1756
1962
  :active_session_id,
1757
1963
  :tags,
1758
- :auto_participant_recording_configuration)
1964
+ :auto_participant_recording_configuration,
1965
+ :endpoints)
1966
+ SENSITIVE = []
1967
+ include Aws::Structure
1968
+ end
1969
+
1970
+ # Summary information about various endpoints for a stage.
1971
+ #
1972
+ # @!attribute [rw] events
1973
+ # Events endpoint.
1974
+ # @return [String]
1975
+ #
1976
+ # @!attribute [rw] whip
1977
+ # WHIP endpoint.
1978
+ # @return [String]
1979
+ #
1980
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/StageEndpoints AWS API Documentation
1981
+ #
1982
+ class StageEndpoints < Struct.new(
1983
+ :events,
1984
+ :whip)
1759
1985
  SENSITIVE = []
1760
1986
  include Aws::Structure
1761
1987
  end
@@ -2068,9 +2294,9 @@ module Aws::IVSRealTime
2068
2294
  # @return [String]
2069
2295
  #
2070
2296
  # @!attribute [rw] auto_participant_recording_configuration
2071
- # Auto-participant-recording configuration object to attach to the
2072
- # stage. Auto-participant-recording configuration cannot be updated
2073
- # while recording is active.
2297
+ # Configuration object for individual participant recording, to attach
2298
+ # to the stage. Note that this cannot be updated while recording is
2299
+ # active.
2074
2300
  # @return [Types::AutoParticipantRecordingConfiguration]
2075
2301
  #
2076
2302
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/UpdateStageRequest AWS API Documentation
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-ivsrealtime/customizations'
53
53
  # @!group service
54
54
  module Aws::IVSRealTime
55
55
 
56
- GEM_VERSION = '1.22.0'
56
+ GEM_VERSION = '1.23.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -150,6 +150,15 @@ module Aws
150
150
  ) -> _DeleteEncoderConfigurationResponseSuccess
151
151
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEncoderConfigurationResponseSuccess
152
152
 
153
+ interface _DeletePublicKeyResponseSuccess
154
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeletePublicKeyResponse]
155
+ end
156
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#delete_public_key-instance_method
157
+ def delete_public_key: (
158
+ arn: ::String
159
+ ) -> _DeletePublicKeyResponseSuccess
160
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePublicKeyResponseSuccess
161
+
153
162
  interface _DeleteStageResponseSuccess
154
163
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteStageResponse]
155
164
  end
@@ -211,6 +220,16 @@ module Aws
211
220
  ) -> _GetParticipantResponseSuccess
212
221
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetParticipantResponseSuccess
213
222
 
223
+ interface _GetPublicKeyResponseSuccess
224
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetPublicKeyResponse]
225
+ def public_key: () -> Types::PublicKey
226
+ end
227
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#get_public_key-instance_method
228
+ def get_public_key: (
229
+ arn: ::String
230
+ ) -> _GetPublicKeyResponseSuccess
231
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPublicKeyResponseSuccess
232
+
214
233
  interface _GetStageResponseSuccess
215
234
  include ::Seahorse::Client::_ResponseSuccess[Types::GetStageResponse]
216
235
  def stage: () -> Types::Stage
@@ -242,6 +261,18 @@ module Aws
242
261
  ) -> _GetStorageConfigurationResponseSuccess
243
262
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetStorageConfigurationResponseSuccess
244
263
 
264
+ interface _ImportPublicKeyResponseSuccess
265
+ include ::Seahorse::Client::_ResponseSuccess[Types::ImportPublicKeyResponse]
266
+ def public_key: () -> Types::PublicKey
267
+ end
268
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#import_public_key-instance_method
269
+ def import_public_key: (
270
+ public_key_material: ::String,
271
+ ?name: ::String,
272
+ ?tags: Hash[::String, ::String]
273
+ ) -> _ImportPublicKeyResponseSuccess
274
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportPublicKeyResponseSuccess
275
+
245
276
  interface _ListCompositionsResponseSuccess
246
277
  include ::Seahorse::Client::_ResponseSuccess[Types::ListCompositionsResponse]
247
278
  def compositions: () -> ::Array[Types::CompositionSummary]
@@ -301,6 +332,18 @@ module Aws
301
332
  ) -> _ListParticipantsResponseSuccess
302
333
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListParticipantsResponseSuccess
303
334
 
335
+ interface _ListPublicKeysResponseSuccess
336
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPublicKeysResponse]
337
+ def public_keys: () -> ::Array[Types::PublicKeySummary]
338
+ def next_token: () -> ::String
339
+ end
340
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#list_public_keys-instance_method
341
+ def list_public_keys: (
342
+ ?next_token: ::String,
343
+ ?max_results: ::Integer
344
+ ) -> _ListPublicKeysResponseSuccess
345
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPublicKeysResponseSuccess
346
+
304
347
  interface _ListStageSessionsResponseSuccess
305
348
  include ::Seahorse::Client::_ResponseSuccess[Types::ListStageSessionsResponse]
306
349
  def stage_sessions: () -> ::Array[Types::StageSessionSummary]
data/sig/types.rbs CHANGED
@@ -113,6 +113,14 @@ module Aws::IVSRealTime
113
113
  class DeleteEncoderConfigurationResponse < Aws::EmptyStructure
114
114
  end
115
115
 
116
+ class DeletePublicKeyRequest
117
+ attr_accessor arn: ::String
118
+ SENSITIVE: []
119
+ end
120
+
121
+ class DeletePublicKeyResponse < Aws::EmptyStructure
122
+ end
123
+
116
124
  class DeleteStageRequest
117
125
  attr_accessor arn: ::String
118
126
  SENSITIVE: []
@@ -225,6 +233,16 @@ module Aws::IVSRealTime
225
233
  SENSITIVE: []
226
234
  end
227
235
 
236
+ class GetPublicKeyRequest
237
+ attr_accessor arn: ::String
238
+ SENSITIVE: []
239
+ end
240
+
241
+ class GetPublicKeyResponse
242
+ attr_accessor public_key: Types::PublicKey
243
+ SENSITIVE: []
244
+ end
245
+
228
246
  class GetStageRequest
229
247
  attr_accessor arn: ::String
230
248
  SENSITIVE: []
@@ -265,6 +283,18 @@ module Aws::IVSRealTime
265
283
  SENSITIVE: []
266
284
  end
267
285
 
286
+ class ImportPublicKeyRequest
287
+ attr_accessor public_key_material: ::String
288
+ attr_accessor name: ::String
289
+ attr_accessor tags: ::Hash[::String, ::String]
290
+ SENSITIVE: []
291
+ end
292
+
293
+ class ImportPublicKeyResponse
294
+ attr_accessor public_key: Types::PublicKey
295
+ SENSITIVE: []
296
+ end
297
+
268
298
  class InternalServerException
269
299
  attr_accessor exception_message: ::String
270
300
  SENSITIVE: []
@@ -335,6 +365,18 @@ module Aws::IVSRealTime
335
365
  SENSITIVE: []
336
366
  end
337
367
 
368
+ class ListPublicKeysRequest
369
+ attr_accessor next_token: ::String
370
+ attr_accessor max_results: ::Integer
371
+ SENSITIVE: []
372
+ end
373
+
374
+ class ListPublicKeysResponse
375
+ attr_accessor public_keys: ::Array[Types::PublicKeySummary]
376
+ attr_accessor next_token: ::String
377
+ SENSITIVE: []
378
+ end
379
+
338
380
  class ListStageSessionsRequest
339
381
  attr_accessor stage_arn: ::String
340
382
  attr_accessor next_token: ::String
@@ -449,6 +491,22 @@ module Aws::IVSRealTime
449
491
  SENSITIVE: []
450
492
  end
451
493
 
494
+ class PublicKey
495
+ attr_accessor arn: ::String
496
+ attr_accessor name: ::String
497
+ attr_accessor public_key_material: ::String
498
+ attr_accessor fingerprint: ::String
499
+ attr_accessor tags: ::Hash[::String, ::String]
500
+ SENSITIVE: []
501
+ end
502
+
503
+ class PublicKeySummary
504
+ attr_accessor arn: ::String
505
+ attr_accessor name: ::String
506
+ attr_accessor tags: ::Hash[::String, ::String]
507
+ SENSITIVE: []
508
+ end
509
+
452
510
  class RecordingConfiguration
453
511
  attr_accessor format: ("HLS")
454
512
  SENSITIVE: []
@@ -487,6 +545,13 @@ module Aws::IVSRealTime
487
545
  attr_accessor active_session_id: ::String
488
546
  attr_accessor tags: ::Hash[::String, ::String]
489
547
  attr_accessor auto_participant_recording_configuration: Types::AutoParticipantRecordingConfiguration
548
+ attr_accessor endpoints: Types::StageEndpoints
549
+ SENSITIVE: []
550
+ end
551
+
552
+ class StageEndpoints
553
+ attr_accessor events: ::String
554
+ attr_accessor whip: ::String
490
555
  SENSITIVE: []
491
556
  end
492
557
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ivsrealtime
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.22.0
4
+ version: 1.23.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: 2024-06-25 00:00:00.000000000 Z
11
+ date: 2024-06-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core