aws-sdk-ivs 1.51.0 → 1.53.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-ivs/client.rb +247 -238
- data/lib/aws-sdk-ivs/client_api.rb +70 -69
- data/lib/aws-sdk-ivs/types.rb +410 -410
- data/lib/aws-sdk-ivs.rb +1 -1
- data/sig/client.rbs +44 -43
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +70 -70
- metadata +6 -6
data/lib/aws-sdk-ivs.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -48,6 +48,7 @@ module Aws
|
|
48
48
|
?sdk_ua_app_id: String,
|
49
49
|
?secret_access_key: String,
|
50
50
|
?session_token: String,
|
51
|
+
?sigv4a_signing_region_set: Array[String],
|
51
52
|
?stub_responses: untyped,
|
52
53
|
?token_provider: untyped,
|
53
54
|
?use_dualstack_endpoint: bool,
|
@@ -85,8 +86,8 @@ module Aws
|
|
85
86
|
|
86
87
|
interface _BatchGetStreamKeyResponseSuccess
|
87
88
|
include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetStreamKeyResponse]
|
88
|
-
def errors: () -> ::Array[Types::BatchError]
|
89
89
|
def stream_keys: () -> ::Array[Types::StreamKey]
|
90
|
+
def errors: () -> ::Array[Types::BatchError]
|
90
91
|
end
|
91
92
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#batch_get_stream_key-instance_method
|
92
93
|
def batch_get_stream_key: (
|
@@ -117,15 +118,15 @@ module Aws
|
|
117
118
|
end
|
118
119
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#create_channel-instance_method
|
119
120
|
def create_channel: (
|
120
|
-
?authorized: bool,
|
121
|
-
?insecure_ingest: bool,
|
122
|
-
?latency_mode: ("NORMAL" | "LOW"),
|
123
121
|
?name: ::String,
|
124
|
-
?
|
125
|
-
?
|
122
|
+
?latency_mode: ("NORMAL" | "LOW"),
|
123
|
+
?type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD"),
|
124
|
+
?authorized: bool,
|
126
125
|
?recording_configuration_arn: ::String,
|
127
126
|
?tags: Hash[::String, ::String],
|
128
|
-
?
|
127
|
+
?insecure_ingest: bool,
|
128
|
+
?preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY"),
|
129
|
+
?playback_restriction_policy_arn: ::String
|
129
130
|
) -> _CreateChannelResponseSuccess
|
130
131
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChannelResponseSuccess
|
131
132
|
|
@@ -149,23 +150,23 @@ module Aws
|
|
149
150
|
end
|
150
151
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#create_recording_configuration-instance_method
|
151
152
|
def create_recording_configuration: (
|
153
|
+
?name: ::String,
|
152
154
|
destination_configuration: {
|
153
155
|
s3: {
|
154
156
|
bucket_name: ::String
|
155
157
|
}?
|
156
158
|
},
|
157
|
-
?name: ::String,
|
158
|
-
?recording_reconnect_window_seconds: ::Integer,
|
159
|
-
?rendition_configuration: {
|
160
|
-
rendition_selection: ("ALL" | "NONE" | "CUSTOM")?,
|
161
|
-
renditions: Array[("FULL_HD" | "HD" | "SD" | "LOWEST_RESOLUTION")]?
|
162
|
-
},
|
163
159
|
?tags: Hash[::String, ::String],
|
164
160
|
?thumbnail_configuration: {
|
165
161
|
recording_mode: ("DISABLED" | "INTERVAL")?,
|
166
|
-
|
167
|
-
|
168
|
-
|
162
|
+
target_interval_seconds: ::Integer?,
|
163
|
+
resolution: ("SD" | "HD" | "FULL_HD" | "LOWEST_RESOLUTION")?,
|
164
|
+
storage: Array[("SEQUENTIAL" | "LATEST")]?
|
165
|
+
},
|
166
|
+
?recording_reconnect_window_seconds: ::Integer,
|
167
|
+
?rendition_configuration: {
|
168
|
+
rendition_selection: ("ALL" | "NONE" | "CUSTOM")?,
|
169
|
+
renditions: Array[("SD" | "HD" | "FULL_HD" | "LOWEST_RESOLUTION")]?
|
169
170
|
}
|
170
171
|
) -> _CreateRecordingConfigurationResponseSuccess
|
171
172
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRecordingConfigurationResponseSuccess
|
@@ -291,8 +292,8 @@ module Aws
|
|
291
292
|
end
|
292
293
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#import_playback_key_pair-instance_method
|
293
294
|
def import_playback_key_pair: (
|
294
|
-
?name: ::String,
|
295
295
|
public_key_material: ::String,
|
296
|
+
?name: ::String,
|
296
297
|
?tags: Hash[::String, ::String]
|
297
298
|
) -> _ImportPlaybackKeyPairResponseSuccess
|
298
299
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportPlaybackKeyPairResponseSuccess
|
@@ -305,10 +306,10 @@ module Aws
|
|
305
306
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#list_channels-instance_method
|
306
307
|
def list_channels: (
|
307
308
|
?filter_by_name: ::String,
|
308
|
-
?filter_by_playback_restriction_policy_arn: ::String,
|
309
309
|
?filter_by_recording_configuration_arn: ::String,
|
310
|
-
?
|
311
|
-
?next_token: ::String
|
310
|
+
?filter_by_playback_restriction_policy_arn: ::String,
|
311
|
+
?next_token: ::String,
|
312
|
+
?max_results: ::Integer
|
312
313
|
) -> _ListChannelsResponseSuccess
|
313
314
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListChannelsResponseSuccess
|
314
315
|
|
@@ -319,73 +320,73 @@ module Aws
|
|
319
320
|
end
|
320
321
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#list_playback_key_pairs-instance_method
|
321
322
|
def list_playback_key_pairs: (
|
322
|
-
?
|
323
|
-
?
|
323
|
+
?next_token: ::String,
|
324
|
+
?max_results: ::Integer
|
324
325
|
) -> _ListPlaybackKeyPairsResponseSuccess
|
325
326
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPlaybackKeyPairsResponseSuccess
|
326
327
|
|
327
328
|
interface _ListPlaybackRestrictionPoliciesResponseSuccess
|
328
329
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListPlaybackRestrictionPoliciesResponse]
|
329
|
-
def next_token: () -> ::String
|
330
330
|
def playback_restriction_policies: () -> ::Array[Types::PlaybackRestrictionPolicySummary]
|
331
|
+
def next_token: () -> ::String
|
331
332
|
end
|
332
333
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#list_playback_restriction_policies-instance_method
|
333
334
|
def list_playback_restriction_policies: (
|
334
|
-
?
|
335
|
-
?
|
335
|
+
?next_token: ::String,
|
336
|
+
?max_results: ::Integer
|
336
337
|
) -> _ListPlaybackRestrictionPoliciesResponseSuccess
|
337
338
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPlaybackRestrictionPoliciesResponseSuccess
|
338
339
|
|
339
340
|
interface _ListRecordingConfigurationsResponseSuccess
|
340
341
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListRecordingConfigurationsResponse]
|
341
|
-
def next_token: () -> ::String
|
342
342
|
def recording_configurations: () -> ::Array[Types::RecordingConfigurationSummary]
|
343
|
+
def next_token: () -> ::String
|
343
344
|
end
|
344
345
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#list_recording_configurations-instance_method
|
345
346
|
def list_recording_configurations: (
|
346
|
-
?
|
347
|
-
?
|
347
|
+
?next_token: ::String,
|
348
|
+
?max_results: ::Integer
|
348
349
|
) -> _ListRecordingConfigurationsResponseSuccess
|
349
350
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRecordingConfigurationsResponseSuccess
|
350
351
|
|
351
352
|
interface _ListStreamKeysResponseSuccess
|
352
353
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListStreamKeysResponse]
|
353
|
-
def next_token: () -> ::String
|
354
354
|
def stream_keys: () -> ::Array[Types::StreamKeySummary]
|
355
|
+
def next_token: () -> ::String
|
355
356
|
end
|
356
357
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#list_stream_keys-instance_method
|
357
358
|
def list_stream_keys: (
|
358
359
|
channel_arn: ::String,
|
359
|
-
?
|
360
|
-
?
|
360
|
+
?next_token: ::String,
|
361
|
+
?max_results: ::Integer
|
361
362
|
) -> _ListStreamKeysResponseSuccess
|
362
363
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStreamKeysResponseSuccess
|
363
364
|
|
364
365
|
interface _ListStreamSessionsResponseSuccess
|
365
366
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListStreamSessionsResponse]
|
366
|
-
def next_token: () -> ::String
|
367
367
|
def stream_sessions: () -> ::Array[Types::StreamSessionSummary]
|
368
|
+
def next_token: () -> ::String
|
368
369
|
end
|
369
370
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#list_stream_sessions-instance_method
|
370
371
|
def list_stream_sessions: (
|
371
372
|
channel_arn: ::String,
|
372
|
-
?
|
373
|
-
?
|
373
|
+
?next_token: ::String,
|
374
|
+
?max_results: ::Integer
|
374
375
|
) -> _ListStreamSessionsResponseSuccess
|
375
376
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStreamSessionsResponseSuccess
|
376
377
|
|
377
378
|
interface _ListStreamsResponseSuccess
|
378
379
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListStreamsResponse]
|
379
|
-
def next_token: () -> ::String
|
380
380
|
def streams: () -> ::Array[Types::StreamSummary]
|
381
|
+
def next_token: () -> ::String
|
381
382
|
end
|
382
383
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#list_streams-instance_method
|
383
384
|
def list_streams: (
|
384
385
|
?filter_by: {
|
385
386
|
health: ("HEALTHY" | "STARVING" | "UNKNOWN")?
|
386
387
|
},
|
387
|
-
?
|
388
|
-
?
|
388
|
+
?next_token: ::String,
|
389
|
+
?max_results: ::Integer
|
389
390
|
) -> _ListStreamsResponseSuccess
|
390
391
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStreamsResponseSuccess
|
391
392
|
|
@@ -453,14 +454,14 @@ module Aws
|
|
453
454
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#update_channel-instance_method
|
454
455
|
def update_channel: (
|
455
456
|
arn: ::String,
|
457
|
+
?name: ::String,
|
458
|
+
?latency_mode: ("NORMAL" | "LOW"),
|
459
|
+
?type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD"),
|
456
460
|
?authorized: bool,
|
461
|
+
?recording_configuration_arn: ::String,
|
457
462
|
?insecure_ingest: bool,
|
458
|
-
?latency_mode: ("NORMAL" | "LOW"),
|
459
|
-
?name: ::String,
|
460
|
-
?playback_restriction_policy_arn: ::String,
|
461
463
|
?preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY"),
|
462
|
-
?
|
463
|
-
?type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD")
|
464
|
+
?playback_restriction_policy_arn: ::String
|
464
465
|
) -> _UpdateChannelResponseSuccess
|
465
466
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateChannelResponseSuccess
|
466
467
|
|
@@ -470,9 +471,9 @@ module Aws
|
|
470
471
|
end
|
471
472
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#update_playback_restriction_policy-instance_method
|
472
473
|
def update_playback_restriction_policy: (
|
474
|
+
arn: ::String,
|
473
475
|
?allowed_countries: Array[::String],
|
474
476
|
?allowed_origins: Array[::String],
|
475
|
-
arn: ::String,
|
476
477
|
?enable_strict_origin_enforcement: bool,
|
477
478
|
?name: ::String
|
478
479
|
) -> _UpdatePlaybackRestrictionPolicyResponseSuccess
|
data/sig/resource.rbs
CHANGED
data/sig/types.rbs
CHANGED
@@ -14,10 +14,10 @@ module Aws::IVS
|
|
14
14
|
end
|
15
15
|
|
16
16
|
class AudioConfiguration
|
17
|
-
attr_accessor channels: ::Integer
|
18
17
|
attr_accessor codec: ::String
|
19
|
-
attr_accessor sample_rate: ::Integer
|
20
18
|
attr_accessor target_bitrate: ::Integer
|
19
|
+
attr_accessor sample_rate: ::Integer
|
20
|
+
attr_accessor channels: ::Integer
|
21
21
|
SENSITIVE: []
|
22
22
|
end
|
23
23
|
|
@@ -45,16 +45,16 @@ module Aws::IVS
|
|
45
45
|
end
|
46
46
|
|
47
47
|
class BatchGetStreamKeyResponse
|
48
|
-
attr_accessor errors: ::Array[Types::BatchError]
|
49
48
|
attr_accessor stream_keys: ::Array[Types::StreamKey]
|
49
|
+
attr_accessor errors: ::Array[Types::BatchError]
|
50
50
|
SENSITIVE: []
|
51
51
|
end
|
52
52
|
|
53
53
|
class BatchStartViewerSessionRevocationError
|
54
54
|
attr_accessor channel_arn: ::String
|
55
|
+
attr_accessor viewer_id: ::String
|
55
56
|
attr_accessor code: ::String
|
56
57
|
attr_accessor message: ::String
|
57
|
-
attr_accessor viewer_id: ::String
|
58
58
|
SENSITIVE: []
|
59
59
|
end
|
60
60
|
|
@@ -77,18 +77,18 @@ module Aws::IVS
|
|
77
77
|
|
78
78
|
class Channel
|
79
79
|
attr_accessor arn: ::String
|
80
|
-
attr_accessor authorized: bool
|
81
|
-
attr_accessor ingest_endpoint: ::String
|
82
|
-
attr_accessor insecure_ingest: bool
|
83
|
-
attr_accessor latency_mode: ("NORMAL" | "LOW")
|
84
80
|
attr_accessor name: ::String
|
85
|
-
attr_accessor
|
81
|
+
attr_accessor latency_mode: ("NORMAL" | "LOW")
|
82
|
+
attr_accessor type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD")
|
83
|
+
attr_accessor recording_configuration_arn: ::String
|
84
|
+
attr_accessor ingest_endpoint: ::String
|
86
85
|
attr_accessor playback_url: ::String
|
86
|
+
attr_accessor authorized: bool
|
87
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
88
|
+
attr_accessor insecure_ingest: bool
|
87
89
|
attr_accessor preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY")
|
88
|
-
attr_accessor recording_configuration_arn: ::String
|
89
90
|
attr_accessor srt: Types::Srt
|
90
|
-
attr_accessor
|
91
|
-
attr_accessor type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD")
|
91
|
+
attr_accessor playback_restriction_policy_arn: ::String
|
92
92
|
SENSITIVE: []
|
93
93
|
end
|
94
94
|
|
@@ -99,15 +99,15 @@ module Aws::IVS
|
|
99
99
|
|
100
100
|
class ChannelSummary
|
101
101
|
attr_accessor arn: ::String
|
102
|
-
attr_accessor authorized: bool
|
103
|
-
attr_accessor insecure_ingest: bool
|
104
|
-
attr_accessor latency_mode: ("NORMAL" | "LOW")
|
105
102
|
attr_accessor name: ::String
|
106
|
-
attr_accessor
|
107
|
-
attr_accessor
|
103
|
+
attr_accessor latency_mode: ("NORMAL" | "LOW")
|
104
|
+
attr_accessor authorized: bool
|
108
105
|
attr_accessor recording_configuration_arn: ::String
|
109
106
|
attr_accessor tags: ::Hash[::String, ::String]
|
107
|
+
attr_accessor insecure_ingest: bool
|
110
108
|
attr_accessor type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD")
|
109
|
+
attr_accessor preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY")
|
110
|
+
attr_accessor playback_restriction_policy_arn: ::String
|
111
111
|
SENSITIVE: []
|
112
112
|
end
|
113
113
|
|
@@ -117,15 +117,15 @@ module Aws::IVS
|
|
117
117
|
end
|
118
118
|
|
119
119
|
class CreateChannelRequest
|
120
|
-
attr_accessor authorized: bool
|
121
|
-
attr_accessor insecure_ingest: bool
|
122
|
-
attr_accessor latency_mode: ("NORMAL" | "LOW")
|
123
120
|
attr_accessor name: ::String
|
124
|
-
attr_accessor
|
125
|
-
attr_accessor
|
121
|
+
attr_accessor latency_mode: ("NORMAL" | "LOW")
|
122
|
+
attr_accessor type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD")
|
123
|
+
attr_accessor authorized: bool
|
126
124
|
attr_accessor recording_configuration_arn: ::String
|
127
125
|
attr_accessor tags: ::Hash[::String, ::String]
|
128
|
-
attr_accessor
|
126
|
+
attr_accessor insecure_ingest: bool
|
127
|
+
attr_accessor preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY")
|
128
|
+
attr_accessor playback_restriction_policy_arn: ::String
|
129
129
|
SENSITIVE: []
|
130
130
|
end
|
131
131
|
|
@@ -150,12 +150,12 @@ module Aws::IVS
|
|
150
150
|
end
|
151
151
|
|
152
152
|
class CreateRecordingConfigurationRequest
|
153
|
-
attr_accessor destination_configuration: Types::DestinationConfiguration
|
154
153
|
attr_accessor name: ::String
|
155
|
-
attr_accessor
|
156
|
-
attr_accessor rendition_configuration: Types::RenditionConfiguration
|
154
|
+
attr_accessor destination_configuration: Types::DestinationConfiguration
|
157
155
|
attr_accessor tags: ::Hash[::String, ::String]
|
158
156
|
attr_accessor thumbnail_configuration: Types::ThumbnailConfiguration
|
157
|
+
attr_accessor recording_reconnect_window_seconds: ::Integer
|
158
|
+
attr_accessor rendition_configuration: Types::RenditionConfiguration
|
159
159
|
SENSITIVE: []
|
160
160
|
end
|
161
161
|
|
@@ -280,8 +280,8 @@ module Aws::IVS
|
|
280
280
|
end
|
281
281
|
|
282
282
|
class ImportPlaybackKeyPairRequest
|
283
|
-
attr_accessor name: ::String
|
284
283
|
attr_accessor public_key_material: ::String
|
284
|
+
attr_accessor name: ::String
|
285
285
|
attr_accessor tags: ::Hash[::String, ::String]
|
286
286
|
SENSITIVE: []
|
287
287
|
end
|
@@ -292,8 +292,8 @@ module Aws::IVS
|
|
292
292
|
end
|
293
293
|
|
294
294
|
class IngestConfiguration
|
295
|
-
attr_accessor audio: Types::AudioConfiguration
|
296
295
|
attr_accessor video: Types::VideoConfiguration
|
296
|
+
attr_accessor audio: Types::AudioConfiguration
|
297
297
|
SENSITIVE: []
|
298
298
|
end
|
299
299
|
|
@@ -304,10 +304,10 @@ module Aws::IVS
|
|
304
304
|
|
305
305
|
class ListChannelsRequest
|
306
306
|
attr_accessor filter_by_name: ::String
|
307
|
-
attr_accessor filter_by_playback_restriction_policy_arn: ::String
|
308
307
|
attr_accessor filter_by_recording_configuration_arn: ::String
|
309
|
-
attr_accessor
|
308
|
+
attr_accessor filter_by_playback_restriction_policy_arn: ::String
|
310
309
|
attr_accessor next_token: ::String
|
310
|
+
attr_accessor max_results: ::Integer
|
311
311
|
SENSITIVE: []
|
312
312
|
end
|
313
313
|
|
@@ -318,8 +318,8 @@ module Aws::IVS
|
|
318
318
|
end
|
319
319
|
|
320
320
|
class ListPlaybackKeyPairsRequest
|
321
|
-
attr_accessor max_results: ::Integer
|
322
321
|
attr_accessor next_token: ::String
|
322
|
+
attr_accessor max_results: ::Integer
|
323
323
|
SENSITIVE: []
|
324
324
|
end
|
325
325
|
|
@@ -330,65 +330,65 @@ module Aws::IVS
|
|
330
330
|
end
|
331
331
|
|
332
332
|
class ListPlaybackRestrictionPoliciesRequest
|
333
|
-
attr_accessor max_results: ::Integer
|
334
333
|
attr_accessor next_token: ::String
|
334
|
+
attr_accessor max_results: ::Integer
|
335
335
|
SENSITIVE: []
|
336
336
|
end
|
337
337
|
|
338
338
|
class ListPlaybackRestrictionPoliciesResponse
|
339
|
-
attr_accessor next_token: ::String
|
340
339
|
attr_accessor playback_restriction_policies: ::Array[Types::PlaybackRestrictionPolicySummary]
|
340
|
+
attr_accessor next_token: ::String
|
341
341
|
SENSITIVE: []
|
342
342
|
end
|
343
343
|
|
344
344
|
class ListRecordingConfigurationsRequest
|
345
|
-
attr_accessor max_results: ::Integer
|
346
345
|
attr_accessor next_token: ::String
|
346
|
+
attr_accessor max_results: ::Integer
|
347
347
|
SENSITIVE: []
|
348
348
|
end
|
349
349
|
|
350
350
|
class ListRecordingConfigurationsResponse
|
351
|
-
attr_accessor next_token: ::String
|
352
351
|
attr_accessor recording_configurations: ::Array[Types::RecordingConfigurationSummary]
|
352
|
+
attr_accessor next_token: ::String
|
353
353
|
SENSITIVE: []
|
354
354
|
end
|
355
355
|
|
356
356
|
class ListStreamKeysRequest
|
357
357
|
attr_accessor channel_arn: ::String
|
358
|
-
attr_accessor max_results: ::Integer
|
359
358
|
attr_accessor next_token: ::String
|
359
|
+
attr_accessor max_results: ::Integer
|
360
360
|
SENSITIVE: []
|
361
361
|
end
|
362
362
|
|
363
363
|
class ListStreamKeysResponse
|
364
|
-
attr_accessor next_token: ::String
|
365
364
|
attr_accessor stream_keys: ::Array[Types::StreamKeySummary]
|
365
|
+
attr_accessor next_token: ::String
|
366
366
|
SENSITIVE: []
|
367
367
|
end
|
368
368
|
|
369
369
|
class ListStreamSessionsRequest
|
370
370
|
attr_accessor channel_arn: ::String
|
371
|
-
attr_accessor max_results: ::Integer
|
372
371
|
attr_accessor next_token: ::String
|
372
|
+
attr_accessor max_results: ::Integer
|
373
373
|
SENSITIVE: []
|
374
374
|
end
|
375
375
|
|
376
376
|
class ListStreamSessionsResponse
|
377
|
-
attr_accessor next_token: ::String
|
378
377
|
attr_accessor stream_sessions: ::Array[Types::StreamSessionSummary]
|
378
|
+
attr_accessor next_token: ::String
|
379
379
|
SENSITIVE: []
|
380
380
|
end
|
381
381
|
|
382
382
|
class ListStreamsRequest
|
383
383
|
attr_accessor filter_by: Types::StreamFilters
|
384
|
-
attr_accessor max_results: ::Integer
|
385
384
|
attr_accessor next_token: ::String
|
385
|
+
attr_accessor max_results: ::Integer
|
386
386
|
SENSITIVE: []
|
387
387
|
end
|
388
388
|
|
389
389
|
class ListStreamsResponse
|
390
|
-
attr_accessor next_token: ::String
|
391
390
|
attr_accessor streams: ::Array[Types::StreamSummary]
|
391
|
+
attr_accessor next_token: ::String
|
392
392
|
SENSITIVE: []
|
393
393
|
end
|
394
394
|
|
@@ -409,8 +409,8 @@ module Aws::IVS
|
|
409
409
|
|
410
410
|
class PlaybackKeyPair
|
411
411
|
attr_accessor arn: ::String
|
412
|
-
attr_accessor fingerprint: ::String
|
413
412
|
attr_accessor name: ::String
|
413
|
+
attr_accessor fingerprint: ::String
|
414
414
|
attr_accessor tags: ::Hash[::String, ::String]
|
415
415
|
SENSITIVE: []
|
416
416
|
end
|
@@ -423,9 +423,9 @@ module Aws::IVS
|
|
423
423
|
end
|
424
424
|
|
425
425
|
class PlaybackRestrictionPolicy
|
426
|
+
attr_accessor arn: ::String
|
426
427
|
attr_accessor allowed_countries: ::Array[::String]
|
427
428
|
attr_accessor allowed_origins: ::Array[::String]
|
428
|
-
attr_accessor arn: ::String
|
429
429
|
attr_accessor enable_strict_origin_enforcement: bool
|
430
430
|
attr_accessor name: ::String
|
431
431
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -433,9 +433,9 @@ module Aws::IVS
|
|
433
433
|
end
|
434
434
|
|
435
435
|
class PlaybackRestrictionPolicySummary
|
436
|
+
attr_accessor arn: ::String
|
436
437
|
attr_accessor allowed_countries: ::Array[::String]
|
437
438
|
attr_accessor allowed_origins: ::Array[::String]
|
438
|
-
attr_accessor arn: ::String
|
439
439
|
attr_accessor enable_strict_origin_enforcement: bool
|
440
440
|
attr_accessor name: ::String
|
441
441
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -450,20 +450,20 @@ module Aws::IVS
|
|
450
450
|
|
451
451
|
class RecordingConfiguration
|
452
452
|
attr_accessor arn: ::String
|
453
|
-
attr_accessor destination_configuration: Types::DestinationConfiguration
|
454
453
|
attr_accessor name: ::String
|
455
|
-
attr_accessor
|
456
|
-
attr_accessor rendition_configuration: Types::RenditionConfiguration
|
454
|
+
attr_accessor destination_configuration: Types::DestinationConfiguration
|
457
455
|
attr_accessor state: ("CREATING" | "CREATE_FAILED" | "ACTIVE")
|
458
456
|
attr_accessor tags: ::Hash[::String, ::String]
|
459
457
|
attr_accessor thumbnail_configuration: Types::ThumbnailConfiguration
|
458
|
+
attr_accessor recording_reconnect_window_seconds: ::Integer
|
459
|
+
attr_accessor rendition_configuration: Types::RenditionConfiguration
|
460
460
|
SENSITIVE: []
|
461
461
|
end
|
462
462
|
|
463
463
|
class RecordingConfigurationSummary
|
464
464
|
attr_accessor arn: ::String
|
465
|
-
attr_accessor destination_configuration: Types::DestinationConfiguration
|
466
465
|
attr_accessor name: ::String
|
466
|
+
attr_accessor destination_configuration: Types::DestinationConfiguration
|
467
467
|
attr_accessor state: ("CREATING" | "CREATE_FAILED" | "ACTIVE")
|
468
468
|
attr_accessor tags: ::Hash[::String, ::String]
|
469
469
|
SENSITIVE: []
|
@@ -471,7 +471,7 @@ module Aws::IVS
|
|
471
471
|
|
472
472
|
class RenditionConfiguration
|
473
473
|
attr_accessor rendition_selection: ("ALL" | "NONE" | "CUSTOM")
|
474
|
-
attr_accessor renditions: ::Array[("
|
474
|
+
attr_accessor renditions: ::Array[("SD" | "HD" | "FULL_HD" | "LOWEST_RESOLUTION")]
|
475
475
|
SENSITIVE: []
|
476
476
|
end
|
477
477
|
|
@@ -516,19 +516,19 @@ module Aws::IVS
|
|
516
516
|
|
517
517
|
class Stream
|
518
518
|
attr_accessor channel_arn: ::String
|
519
|
-
attr_accessor
|
519
|
+
attr_accessor stream_id: ::String
|
520
520
|
attr_accessor playback_url: ::String
|
521
521
|
attr_accessor start_time: ::Time
|
522
522
|
attr_accessor state: ("LIVE" | "OFFLINE")
|
523
|
-
attr_accessor
|
523
|
+
attr_accessor health: ("HEALTHY" | "STARVING" | "UNKNOWN")
|
524
524
|
attr_accessor viewer_count: ::Integer
|
525
525
|
SENSITIVE: []
|
526
526
|
end
|
527
527
|
|
528
528
|
class StreamEvent
|
529
|
-
attr_accessor event_time: ::Time
|
530
529
|
attr_accessor name: ::String
|
531
530
|
attr_accessor type: ::String
|
531
|
+
attr_accessor event_time: ::Time
|
532
532
|
SENSITIVE: []
|
533
533
|
end
|
534
534
|
|
@@ -539,9 +539,9 @@ module Aws::IVS
|
|
539
539
|
|
540
540
|
class StreamKey
|
541
541
|
attr_accessor arn: ::String
|
542
|
+
attr_accessor value: ::String
|
542
543
|
attr_accessor channel_arn: ::String
|
543
544
|
attr_accessor tags: ::Hash[::String, ::String]
|
544
|
-
attr_accessor value: ::String
|
545
545
|
SENSITIVE: [:value]
|
546
546
|
end
|
547
547
|
|
@@ -553,31 +553,31 @@ module Aws::IVS
|
|
553
553
|
end
|
554
554
|
|
555
555
|
class StreamSession
|
556
|
-
attr_accessor
|
556
|
+
attr_accessor stream_id: ::String
|
557
|
+
attr_accessor start_time: ::Time
|
557
558
|
attr_accessor end_time: ::Time
|
559
|
+
attr_accessor channel: Types::Channel
|
558
560
|
attr_accessor ingest_configuration: Types::IngestConfiguration
|
559
561
|
attr_accessor recording_configuration: Types::RecordingConfiguration
|
560
|
-
attr_accessor start_time: ::Time
|
561
|
-
attr_accessor stream_id: ::String
|
562
562
|
attr_accessor truncated_events: ::Array[Types::StreamEvent]
|
563
563
|
SENSITIVE: []
|
564
564
|
end
|
565
565
|
|
566
566
|
class StreamSessionSummary
|
567
|
+
attr_accessor stream_id: ::String
|
568
|
+
attr_accessor start_time: ::Time
|
567
569
|
attr_accessor end_time: ::Time
|
568
570
|
attr_accessor has_error_event: bool
|
569
|
-
attr_accessor start_time: ::Time
|
570
|
-
attr_accessor stream_id: ::String
|
571
571
|
SENSITIVE: []
|
572
572
|
end
|
573
573
|
|
574
574
|
class StreamSummary
|
575
575
|
attr_accessor channel_arn: ::String
|
576
|
-
attr_accessor health: ("HEALTHY" | "STARVING" | "UNKNOWN")
|
577
|
-
attr_accessor start_time: ::Time
|
578
|
-
attr_accessor state: ("LIVE" | "OFFLINE")
|
579
576
|
attr_accessor stream_id: ::String
|
577
|
+
attr_accessor state: ("LIVE" | "OFFLINE")
|
578
|
+
attr_accessor health: ("HEALTHY" | "STARVING" | "UNKNOWN")
|
580
579
|
attr_accessor viewer_count: ::Integer
|
580
|
+
attr_accessor start_time: ::Time
|
581
581
|
SENSITIVE: []
|
582
582
|
end
|
583
583
|
|
@@ -602,9 +602,9 @@ module Aws::IVS
|
|
602
602
|
|
603
603
|
class ThumbnailConfiguration
|
604
604
|
attr_accessor recording_mode: ("DISABLED" | "INTERVAL")
|
605
|
-
attr_accessor resolution: ("FULL_HD" | "HD" | "SD" | "LOWEST_RESOLUTION")
|
606
|
-
attr_accessor storage: ::Array[("SEQUENTIAL" | "LATEST")]
|
607
605
|
attr_accessor target_interval_seconds: ::Integer
|
606
|
+
attr_accessor resolution: ("SD" | "HD" | "FULL_HD" | "LOWEST_RESOLUTION")
|
607
|
+
attr_accessor storage: ::Array[("SEQUENTIAL" | "LATEST")]
|
608
608
|
SENSITIVE: []
|
609
609
|
end
|
610
610
|
|
@@ -619,14 +619,14 @@ module Aws::IVS
|
|
619
619
|
|
620
620
|
class UpdateChannelRequest
|
621
621
|
attr_accessor arn: ::String
|
622
|
+
attr_accessor name: ::String
|
623
|
+
attr_accessor latency_mode: ("NORMAL" | "LOW")
|
624
|
+
attr_accessor type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD")
|
622
625
|
attr_accessor authorized: bool
|
626
|
+
attr_accessor recording_configuration_arn: ::String
|
623
627
|
attr_accessor insecure_ingest: bool
|
624
|
-
attr_accessor latency_mode: ("NORMAL" | "LOW")
|
625
|
-
attr_accessor name: ::String
|
626
|
-
attr_accessor playback_restriction_policy_arn: ::String
|
627
628
|
attr_accessor preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY")
|
628
|
-
attr_accessor
|
629
|
-
attr_accessor type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD")
|
629
|
+
attr_accessor playback_restriction_policy_arn: ::String
|
630
630
|
SENSITIVE: []
|
631
631
|
end
|
632
632
|
|
@@ -636,9 +636,9 @@ module Aws::IVS
|
|
636
636
|
end
|
637
637
|
|
638
638
|
class UpdatePlaybackRestrictionPolicyRequest
|
639
|
+
attr_accessor arn: ::String
|
639
640
|
attr_accessor allowed_countries: ::Array[::String]
|
640
641
|
attr_accessor allowed_origins: ::Array[::String]
|
641
|
-
attr_accessor arn: ::String
|
642
642
|
attr_accessor enable_strict_origin_enforcement: bool
|
643
643
|
attr_accessor name: ::String
|
644
644
|
SENSITIVE: []
|
@@ -655,8 +655,8 @@ module Aws::IVS
|
|
655
655
|
end
|
656
656
|
|
657
657
|
class VideoConfiguration
|
658
|
-
attr_accessor avc_level: ::String
|
659
658
|
attr_accessor avc_profile: ::String
|
659
|
+
attr_accessor avc_level: ::String
|
660
660
|
attr_accessor codec: ::String
|
661
661
|
attr_accessor encoder: ::String
|
662
662
|
attr_accessor target_bitrate: ::Integer
|