aws-sdk-ivs 1.90.0 → 1.91.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ivs/client.rb +26 -1
- data/lib/aws-sdk-ivs/client_api.rb +9 -0
- data/lib/aws-sdk-ivs/types.rb +69 -1
- data/lib/aws-sdk-ivs.rb +1 -1
- data/sig/client.rbs +9 -1
- data/sig/types.rbs +10 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aa8a240bfa1f19a9b7b9b041d35d7d1a47fd8ccbbe903a539e5777946fa38d11
|
|
4
|
+
data.tar.gz: 4684f44eb09776dc6b4939bd546534aa5d6b547243e6a0df7f63a5a0051fe174
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '018d72d1afca32f9366359beb017abefc1b2898a79caea9f147d145ccd7a7412f5b9a186ba0e149a2b567a638409fc17d418f2e6ba73c4eca71d6315de59bf48'
|
|
7
|
+
data.tar.gz: d0b82c8c8ea6c845606de52c0993388ac26413fe7ff6666e77b3252aa33fdebdd85efba0d21b165a0c2ade053ea1df334248c7f1df5d0d00fcbad2d5b31386fe
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.91.0 (2026-07-09)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - adds support for AWS IVS ad configuration APIs to allow for a postRollConfiguration object on the ad configuration resource
|
|
8
|
+
|
|
4
9
|
1.90.0 (2026-06-04)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.91.0
|
data/lib/aws-sdk-ivs/client.rb
CHANGED
|
@@ -662,6 +662,11 @@ module Aws::IVS
|
|
|
662
662
|
#
|
|
663
663
|
# [1]: https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/private-channels-generate-tokens.html
|
|
664
664
|
#
|
|
665
|
+
# @option params [Types::PostRollConfiguration] :post_roll_configuration
|
|
666
|
+
# Configuration for the post-roll ad break to use for this ad
|
|
667
|
+
# configuration. Default: disabled (`enabled` set to false,
|
|
668
|
+
# `durationSeconds` set to 15).
|
|
669
|
+
#
|
|
665
670
|
# @option params [Hash<String,String>] :tags
|
|
666
671
|
# Array of 1-50 maps, each of the form `string:string (key:value)`. See
|
|
667
672
|
# [Best practices and strategies][1] in *Tagging Amazon Web Services
|
|
@@ -686,6 +691,10 @@ module Aws::IVS
|
|
|
686
691
|
# playback_configuration_arn: "MediaTailorPlaybackConfigurationArn",
|
|
687
692
|
# },
|
|
688
693
|
# ],
|
|
694
|
+
# post_roll_configuration: {
|
|
695
|
+
# duration_seconds: 1, # required
|
|
696
|
+
# enabled: false, # required
|
|
697
|
+
# },
|
|
689
698
|
# tags: {
|
|
690
699
|
# "TagKey" => "TagValue",
|
|
691
700
|
# },
|
|
@@ -697,6 +706,8 @@ module Aws::IVS
|
|
|
697
706
|
# resp.ad_configuration.name #=> String
|
|
698
707
|
# resp.ad_configuration.media_tailor_playback_configurations #=> Array
|
|
699
708
|
# resp.ad_configuration.media_tailor_playback_configurations[0].playback_configuration_arn #=> String
|
|
709
|
+
# resp.ad_configuration.post_roll_configuration.duration_seconds #=> Integer
|
|
710
|
+
# resp.ad_configuration.post_roll_configuration.enabled #=> Boolean
|
|
700
711
|
# resp.ad_configuration.tags #=> Hash
|
|
701
712
|
# resp.ad_configuration.tags["TagKey"] #=> String
|
|
702
713
|
#
|
|
@@ -1256,6 +1267,8 @@ module Aws::IVS
|
|
|
1256
1267
|
# resp.ad_configuration.name #=> String
|
|
1257
1268
|
# resp.ad_configuration.media_tailor_playback_configurations #=> Array
|
|
1258
1269
|
# resp.ad_configuration.media_tailor_playback_configurations[0].playback_configuration_arn #=> String
|
|
1270
|
+
# resp.ad_configuration.post_roll_configuration.duration_seconds #=> Integer
|
|
1271
|
+
# resp.ad_configuration.post_roll_configuration.enabled #=> Boolean
|
|
1259
1272
|
# resp.ad_configuration.tags #=> Hash
|
|
1260
1273
|
# resp.ad_configuration.tags["TagKey"] #=> String
|
|
1261
1274
|
#
|
|
@@ -1745,6 +1758,8 @@ module Aws::IVS
|
|
|
1745
1758
|
# resp.ad_configurations[0].name #=> String
|
|
1746
1759
|
# resp.ad_configurations[0].media_tailor_playback_configurations #=> Array
|
|
1747
1760
|
# resp.ad_configurations[0].media_tailor_playback_configurations[0].playback_configuration_arn #=> String
|
|
1761
|
+
# resp.ad_configurations[0].post_roll_configuration.duration_seconds #=> Integer
|
|
1762
|
+
# resp.ad_configurations[0].post_roll_configuration.enabled #=> Boolean
|
|
1748
1763
|
# resp.ad_configurations[0].tags #=> Hash
|
|
1749
1764
|
# resp.ad_configurations[0].tags["TagKey"] #=> String
|
|
1750
1765
|
# resp.next_token #=> String
|
|
@@ -2339,6 +2354,10 @@ module Aws::IVS
|
|
|
2339
2354
|
#
|
|
2340
2355
|
# [1]: https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/private-channels-generate-tokens.html
|
|
2341
2356
|
#
|
|
2357
|
+
# @option params [Types::PostRollConfiguration] :post_roll_configuration
|
|
2358
|
+
# Configuration for the post-roll ad break to use for this ad
|
|
2359
|
+
# configuration.
|
|
2360
|
+
#
|
|
2342
2361
|
# @return [Types::UpdateAdConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2343
2362
|
#
|
|
2344
2363
|
# * {Types::UpdateAdConfigurationResponse#ad_configuration #ad_configuration} => Types::AdConfiguration
|
|
@@ -2353,6 +2372,10 @@ module Aws::IVS
|
|
|
2353
2372
|
# playback_configuration_arn: "MediaTailorPlaybackConfigurationArn",
|
|
2354
2373
|
# },
|
|
2355
2374
|
# ],
|
|
2375
|
+
# post_roll_configuration: {
|
|
2376
|
+
# duration_seconds: 1, # required
|
|
2377
|
+
# enabled: false, # required
|
|
2378
|
+
# },
|
|
2356
2379
|
# })
|
|
2357
2380
|
#
|
|
2358
2381
|
# @example Response structure
|
|
@@ -2361,6 +2384,8 @@ module Aws::IVS
|
|
|
2361
2384
|
# resp.ad_configuration.name #=> String
|
|
2362
2385
|
# resp.ad_configuration.media_tailor_playback_configurations #=> Array
|
|
2363
2386
|
# resp.ad_configuration.media_tailor_playback_configurations[0].playback_configuration_arn #=> String
|
|
2387
|
+
# resp.ad_configuration.post_roll_configuration.duration_seconds #=> Integer
|
|
2388
|
+
# resp.ad_configuration.post_roll_configuration.enabled #=> Boolean
|
|
2364
2389
|
# resp.ad_configuration.tags #=> Hash
|
|
2365
2390
|
# resp.ad_configuration.tags["TagKey"] #=> String
|
|
2366
2391
|
#
|
|
@@ -2577,7 +2602,7 @@ module Aws::IVS
|
|
|
2577
2602
|
tracer: tracer
|
|
2578
2603
|
)
|
|
2579
2604
|
context[:gem_name] = 'aws-sdk-ivs'
|
|
2580
|
-
context[:gem_version] = '1.
|
|
2605
|
+
context[:gem_version] = '1.91.0'
|
|
2581
2606
|
Seahorse::Client::Request.new(handlers, context)
|
|
2582
2607
|
end
|
|
2583
2608
|
|
|
@@ -149,6 +149,7 @@ module Aws::IVS
|
|
|
149
149
|
PlaybackRestrictionPolicyName = Shapes::StringShape.new(name: 'PlaybackRestrictionPolicyName')
|
|
150
150
|
PlaybackRestrictionPolicySummary = Shapes::StructureShape.new(name: 'PlaybackRestrictionPolicySummary')
|
|
151
151
|
PlaybackURL = Shapes::StringShape.new(name: 'PlaybackURL')
|
|
152
|
+
PostRollConfiguration = Shapes::StructureShape.new(name: 'PostRollConfiguration')
|
|
152
153
|
PutMetadataRequest = Shapes::StructureShape.new(name: 'PutMetadataRequest')
|
|
153
154
|
RecordingConfiguration = Shapes::StructureShape.new(name: 'RecordingConfiguration')
|
|
154
155
|
RecordingConfigurationArn = Shapes::StringShape.new(name: 'RecordingConfigurationArn')
|
|
@@ -243,6 +244,7 @@ module Aws::IVS
|
|
|
243
244
|
AdConfiguration.add_member(:arn, Shapes::ShapeRef.new(shape: AdConfigurationArn, required: true, location_name: "arn"))
|
|
244
245
|
AdConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: AdConfigurationName, location_name: "name"))
|
|
245
246
|
AdConfiguration.add_member(:media_tailor_playback_configurations, Shapes::ShapeRef.new(shape: MediaTailorPlaybackConfigurationsList, required: true, location_name: "mediaTailorPlaybackConfigurations"))
|
|
247
|
+
AdConfiguration.add_member(:post_roll_configuration, Shapes::ShapeRef.new(shape: PostRollConfiguration, location_name: "postRollConfiguration"))
|
|
246
248
|
AdConfiguration.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
247
249
|
AdConfiguration.struct_class = Types::AdConfiguration
|
|
248
250
|
|
|
@@ -251,6 +253,7 @@ module Aws::IVS
|
|
|
251
253
|
AdConfigurationSummary.add_member(:arn, Shapes::ShapeRef.new(shape: AdConfigurationArn, required: true, location_name: "arn"))
|
|
252
254
|
AdConfigurationSummary.add_member(:name, Shapes::ShapeRef.new(shape: AdConfigurationName, location_name: "name"))
|
|
253
255
|
AdConfigurationSummary.add_member(:media_tailor_playback_configurations, Shapes::ShapeRef.new(shape: MediaTailorPlaybackConfigurationsList, required: true, location_name: "mediaTailorPlaybackConfigurations"))
|
|
256
|
+
AdConfigurationSummary.add_member(:post_roll_configuration, Shapes::ShapeRef.new(shape: PostRollConfiguration, location_name: "postRollConfiguration"))
|
|
254
257
|
AdConfigurationSummary.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
255
258
|
AdConfigurationSummary.struct_class = Types::AdConfigurationSummary
|
|
256
259
|
|
|
@@ -387,6 +390,7 @@ module Aws::IVS
|
|
|
387
390
|
|
|
388
391
|
CreateAdConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: AdConfigurationName, location_name: "name"))
|
|
389
392
|
CreateAdConfigurationRequest.add_member(:media_tailor_playback_configurations, Shapes::ShapeRef.new(shape: MediaTailorPlaybackConfigurationsList, required: true, location_name: "mediaTailorPlaybackConfigurations"))
|
|
393
|
+
CreateAdConfigurationRequest.add_member(:post_roll_configuration, Shapes::ShapeRef.new(shape: PostRollConfiguration, location_name: "postRollConfiguration"))
|
|
390
394
|
CreateAdConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
391
395
|
CreateAdConfigurationRequest.struct_class = Types::CreateAdConfigurationRequest
|
|
392
396
|
|
|
@@ -678,6 +682,10 @@ module Aws::IVS
|
|
|
678
682
|
PlaybackRestrictionPolicySummary.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
679
683
|
PlaybackRestrictionPolicySummary.struct_class = Types::PlaybackRestrictionPolicySummary
|
|
680
684
|
|
|
685
|
+
PostRollConfiguration.add_member(:duration_seconds, Shapes::ShapeRef.new(shape: AdDurationSeconds, required: true, location_name: "durationSeconds"))
|
|
686
|
+
PostRollConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "enabled"))
|
|
687
|
+
PostRollConfiguration.struct_class = Types::PostRollConfiguration
|
|
688
|
+
|
|
681
689
|
PutMetadataRequest.add_member(:channel_arn, Shapes::ShapeRef.new(shape: ChannelArn, required: true, location_name: "channelArn"))
|
|
682
690
|
PutMetadataRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: StreamMetadata, required: true, location_name: "metadata"))
|
|
683
691
|
PutMetadataRequest.struct_class = Types::PutMetadataRequest
|
|
@@ -874,6 +882,7 @@ module Aws::IVS
|
|
|
874
882
|
UpdateAdConfigurationRequest.add_member(:arn, Shapes::ShapeRef.new(shape: AdConfigurationArn, required: true, location_name: "arn"))
|
|
875
883
|
UpdateAdConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: AdConfigurationName, location_name: "name"))
|
|
876
884
|
UpdateAdConfigurationRequest.add_member(:media_tailor_playback_configurations, Shapes::ShapeRef.new(shape: MediaTailorPlaybackConfigurationsList, location_name: "mediaTailorPlaybackConfigurations"))
|
|
885
|
+
UpdateAdConfigurationRequest.add_member(:post_roll_configuration, Shapes::ShapeRef.new(shape: PostRollConfiguration, location_name: "postRollConfiguration"))
|
|
877
886
|
UpdateAdConfigurationRequest.struct_class = Types::UpdateAdConfigurationRequest
|
|
878
887
|
|
|
879
888
|
UpdateAdConfigurationResponse.add_member(:ad_configuration, Shapes::ShapeRef.new(shape: AdConfiguration, required: true, location_name: "adConfiguration"))
|
data/lib/aws-sdk-ivs/types.rb
CHANGED
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
module Aws::IVS
|
|
11
11
|
module Types
|
|
12
12
|
|
|
13
|
+
# User does not have sufficient access to perform this action.
|
|
14
|
+
#
|
|
13
15
|
# @!attribute [rw] access_control_allow_origin
|
|
14
16
|
# @return [String]
|
|
15
17
|
#
|
|
@@ -76,6 +78,11 @@ module Aws::IVS
|
|
|
76
78
|
# [1]: https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/private-channels-generate-tokens.html
|
|
77
79
|
# @return [Array<Types::MediaTailorPlaybackConfiguration>]
|
|
78
80
|
#
|
|
81
|
+
# @!attribute [rw] post_roll_configuration
|
|
82
|
+
# Configuration for the post-roll ad break to use for this ad
|
|
83
|
+
# configuration.
|
|
84
|
+
# @return [Types::PostRollConfiguration]
|
|
85
|
+
#
|
|
79
86
|
# @!attribute [rw] tags
|
|
80
87
|
# Tags attached to the resource. Array of 1-50 maps, each of the form
|
|
81
88
|
# `string:string (key:value)`. See [Best practices and strategies][1]
|
|
@@ -95,6 +102,7 @@ module Aws::IVS
|
|
|
95
102
|
:arn,
|
|
96
103
|
:name,
|
|
97
104
|
:media_tailor_playback_configurations,
|
|
105
|
+
:post_roll_configuration,
|
|
98
106
|
:tags)
|
|
99
107
|
SENSITIVE = []
|
|
100
108
|
include Aws::Structure
|
|
@@ -121,6 +129,11 @@ module Aws::IVS
|
|
|
121
129
|
# [1]: https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/private-channels-generate-tokens.html
|
|
122
130
|
# @return [Array<Types::MediaTailorPlaybackConfiguration>]
|
|
123
131
|
#
|
|
132
|
+
# @!attribute [rw] post_roll_configuration
|
|
133
|
+
# Configuration for the post-roll ad break to use for this ad
|
|
134
|
+
# configuration.
|
|
135
|
+
# @return [Types::PostRollConfiguration]
|
|
136
|
+
#
|
|
124
137
|
# @!attribute [rw] tags
|
|
125
138
|
# Tags attached to the resource. Array of 1-50 maps, each of the form
|
|
126
139
|
# `string:string (key:value)`. See [Best practices and strategies][1]
|
|
@@ -140,6 +153,7 @@ module Aws::IVS
|
|
|
140
153
|
:arn,
|
|
141
154
|
:name,
|
|
142
155
|
:media_tailor_playback_configurations,
|
|
156
|
+
:post_roll_configuration,
|
|
143
157
|
:tags)
|
|
144
158
|
SENSITIVE = []
|
|
145
159
|
include Aws::Structure
|
|
@@ -660,6 +674,8 @@ module Aws::IVS
|
|
|
660
674
|
include Aws::Structure
|
|
661
675
|
end
|
|
662
676
|
|
|
677
|
+
# The stream is offline for the given channel ARN.
|
|
678
|
+
#
|
|
663
679
|
# @!attribute [rw] access_control_allow_origin
|
|
664
680
|
# @return [String]
|
|
665
681
|
#
|
|
@@ -795,6 +811,8 @@ module Aws::IVS
|
|
|
795
811
|
include Aws::Structure
|
|
796
812
|
end
|
|
797
813
|
|
|
814
|
+
# Updating or deleting a resource can cause an inconsistent state.
|
|
815
|
+
#
|
|
798
816
|
# @!attribute [rw] access_control_allow_origin
|
|
799
817
|
# @return [String]
|
|
800
818
|
#
|
|
@@ -854,6 +872,12 @@ module Aws::IVS
|
|
|
854
872
|
# [1]: https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/private-channels-generate-tokens.html
|
|
855
873
|
# @return [Array<Types::MediaTailorPlaybackConfiguration>]
|
|
856
874
|
#
|
|
875
|
+
# @!attribute [rw] post_roll_configuration
|
|
876
|
+
# Configuration for the post-roll ad break to use for this ad
|
|
877
|
+
# configuration. Default: disabled (`enabled` set to false,
|
|
878
|
+
# `durationSeconds` set to 15).
|
|
879
|
+
# @return [Types::PostRollConfiguration]
|
|
880
|
+
#
|
|
857
881
|
# @!attribute [rw] tags
|
|
858
882
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
|
859
883
|
# See [Best practices and strategies][1] in *Tagging Amazon Web
|
|
@@ -872,6 +896,7 @@ module Aws::IVS
|
|
|
872
896
|
class CreateAdConfigurationRequest < Struct.new(
|
|
873
897
|
:name,
|
|
874
898
|
:media_tailor_playback_configurations,
|
|
899
|
+
:post_roll_configuration,
|
|
875
900
|
:tags)
|
|
876
901
|
SENSITIVE = []
|
|
877
902
|
include Aws::Structure
|
|
@@ -1596,6 +1621,8 @@ module Aws::IVS
|
|
|
1596
1621
|
include Aws::Structure
|
|
1597
1622
|
end
|
|
1598
1623
|
|
|
1624
|
+
# Unexpected error during processing of request.
|
|
1625
|
+
#
|
|
1599
1626
|
# @!attribute [rw] access_control_allow_origin
|
|
1600
1627
|
# @return [String]
|
|
1601
1628
|
#
|
|
@@ -2041,6 +2068,8 @@ module Aws::IVS
|
|
|
2041
2068
|
include Aws::Structure
|
|
2042
2069
|
end
|
|
2043
2070
|
|
|
2071
|
+
# Your account is pending verification.
|
|
2072
|
+
#
|
|
2044
2073
|
# @!attribute [rw] access_control_allow_origin
|
|
2045
2074
|
# @return [String]
|
|
2046
2075
|
#
|
|
@@ -2283,6 +2312,26 @@ module Aws::IVS
|
|
|
2283
2312
|
include Aws::Structure
|
|
2284
2313
|
end
|
|
2285
2314
|
|
|
2315
|
+
# Configuration for the post-roll ad break to use for this ad
|
|
2316
|
+
# configuration.
|
|
2317
|
+
#
|
|
2318
|
+
# @!attribute [rw] duration_seconds
|
|
2319
|
+
# Duration of the post-roll ad break, in seconds.
|
|
2320
|
+
# @return [Integer]
|
|
2321
|
+
#
|
|
2322
|
+
# @!attribute [rw] enabled
|
|
2323
|
+
# Whether the post-roll ad configuration is enabled.
|
|
2324
|
+
# @return [Boolean]
|
|
2325
|
+
#
|
|
2326
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/PostRollConfiguration AWS API Documentation
|
|
2327
|
+
#
|
|
2328
|
+
class PostRollConfiguration < Struct.new(
|
|
2329
|
+
:duration_seconds,
|
|
2330
|
+
:enabled)
|
|
2331
|
+
SENSITIVE = []
|
|
2332
|
+
include Aws::Structure
|
|
2333
|
+
end
|
|
2334
|
+
|
|
2286
2335
|
# @!attribute [rw] channel_arn
|
|
2287
2336
|
# ARN of the channel into which metadata is inserted. This channel
|
|
2288
2337
|
# must have an active stream.
|
|
@@ -2446,6 +2495,8 @@ module Aws::IVS
|
|
|
2446
2495
|
include Aws::Structure
|
|
2447
2496
|
end
|
|
2448
2497
|
|
|
2498
|
+
# Request references a resource which does not exist.
|
|
2499
|
+
#
|
|
2449
2500
|
# @!attribute [rw] access_control_allow_origin
|
|
2450
2501
|
# @return [String]
|
|
2451
2502
|
#
|
|
@@ -2505,6 +2556,8 @@ module Aws::IVS
|
|
|
2505
2556
|
include Aws::Structure
|
|
2506
2557
|
end
|
|
2507
2558
|
|
|
2559
|
+
# Request would cause a service quota to be exceeded.
|
|
2560
|
+
#
|
|
2508
2561
|
# @!attribute [rw] access_control_allow_origin
|
|
2509
2562
|
# @return [String]
|
|
2510
2563
|
#
|
|
@@ -2549,6 +2602,8 @@ module Aws::IVS
|
|
|
2549
2602
|
include Aws::Structure
|
|
2550
2603
|
end
|
|
2551
2604
|
|
|
2605
|
+
# The service is temporarily unavailable.
|
|
2606
|
+
#
|
|
2552
2607
|
# @!attribute [rw] access_control_allow_origin
|
|
2553
2608
|
# @return [String]
|
|
2554
2609
|
#
|
|
@@ -3028,6 +3083,8 @@ module Aws::IVS
|
|
|
3028
3083
|
include Aws::Structure
|
|
3029
3084
|
end
|
|
3030
3085
|
|
|
3086
|
+
# The stream is temporarily unavailable.
|
|
3087
|
+
#
|
|
3031
3088
|
# @!attribute [rw] access_control_allow_origin
|
|
3032
3089
|
# @return [String]
|
|
3033
3090
|
#
|
|
@@ -3103,6 +3160,8 @@ module Aws::IVS
|
|
|
3103
3160
|
#
|
|
3104
3161
|
class TagResourceResponse < Aws::EmptyStructure; end
|
|
3105
3162
|
|
|
3163
|
+
# Request was denied due to request throttling.
|
|
3164
|
+
#
|
|
3106
3165
|
# @!attribute [rw] access_control_allow_origin
|
|
3107
3166
|
# @return [String]
|
|
3108
3167
|
#
|
|
@@ -3257,12 +3316,18 @@ module Aws::IVS
|
|
|
3257
3316
|
# [1]: https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/private-channels-generate-tokens.html
|
|
3258
3317
|
# @return [Array<Types::MediaTailorPlaybackConfiguration>]
|
|
3259
3318
|
#
|
|
3319
|
+
# @!attribute [rw] post_roll_configuration
|
|
3320
|
+
# Configuration for the post-roll ad break to use for this ad
|
|
3321
|
+
# configuration.
|
|
3322
|
+
# @return [Types::PostRollConfiguration]
|
|
3323
|
+
#
|
|
3260
3324
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/UpdateAdConfigurationRequest AWS API Documentation
|
|
3261
3325
|
#
|
|
3262
3326
|
class UpdateAdConfigurationRequest < Struct.new(
|
|
3263
3327
|
:arn,
|
|
3264
3328
|
:name,
|
|
3265
|
-
:media_tailor_playback_configurations
|
|
3329
|
+
:media_tailor_playback_configurations,
|
|
3330
|
+
:post_roll_configuration)
|
|
3266
3331
|
SENSITIVE = []
|
|
3267
3332
|
include Aws::Structure
|
|
3268
3333
|
end
|
|
@@ -3440,6 +3505,9 @@ module Aws::IVS
|
|
|
3440
3505
|
include Aws::Structure
|
|
3441
3506
|
end
|
|
3442
3507
|
|
|
3508
|
+
# The input fails to satisfy the constraints specified by an Amazon Web
|
|
3509
|
+
# Services service.
|
|
3510
|
+
#
|
|
3443
3511
|
# @!attribute [rw] access_control_allow_origin
|
|
3444
3512
|
# @return [String]
|
|
3445
3513
|
#
|
data/lib/aws-sdk-ivs.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -149,6 +149,10 @@ module Aws
|
|
|
149
149
|
playback_configuration_arn: ::String?
|
|
150
150
|
}
|
|
151
151
|
],
|
|
152
|
+
?post_roll_configuration: {
|
|
153
|
+
duration_seconds: ::Integer,
|
|
154
|
+
enabled: bool
|
|
155
|
+
},
|
|
152
156
|
?tags: Hash[::String, ::String]
|
|
153
157
|
) -> _CreateAdConfigurationResponseSuccess
|
|
154
158
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAdConfigurationResponseSuccess
|
|
@@ -548,7 +552,11 @@ module Aws
|
|
|
548
552
|
{
|
|
549
553
|
playback_configuration_arn: ::String?
|
|
550
554
|
}
|
|
551
|
-
]
|
|
555
|
+
],
|
|
556
|
+
?post_roll_configuration: {
|
|
557
|
+
duration_seconds: ::Integer,
|
|
558
|
+
enabled: bool
|
|
559
|
+
}
|
|
552
560
|
) -> _UpdateAdConfigurationResponseSuccess
|
|
553
561
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAdConfigurationResponseSuccess
|
|
554
562
|
|
data/sig/types.rbs
CHANGED
|
@@ -25,6 +25,7 @@ module Aws::IVS
|
|
|
25
25
|
attr_accessor arn: ::String
|
|
26
26
|
attr_accessor name: ::String
|
|
27
27
|
attr_accessor media_tailor_playback_configurations: ::Array[Types::MediaTailorPlaybackConfiguration]
|
|
28
|
+
attr_accessor post_roll_configuration: Types::PostRollConfiguration
|
|
28
29
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
29
30
|
SENSITIVE: []
|
|
30
31
|
end
|
|
@@ -33,6 +34,7 @@ module Aws::IVS
|
|
|
33
34
|
attr_accessor arn: ::String
|
|
34
35
|
attr_accessor name: ::String
|
|
35
36
|
attr_accessor media_tailor_playback_configurations: ::Array[Types::MediaTailorPlaybackConfiguration]
|
|
37
|
+
attr_accessor post_roll_configuration: Types::PostRollConfiguration
|
|
36
38
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
37
39
|
SENSITIVE: []
|
|
38
40
|
end
|
|
@@ -185,6 +187,7 @@ module Aws::IVS
|
|
|
185
187
|
class CreateAdConfigurationRequest
|
|
186
188
|
attr_accessor name: ::String
|
|
187
189
|
attr_accessor media_tailor_playback_configurations: ::Array[Types::MediaTailorPlaybackConfiguration]
|
|
190
|
+
attr_accessor post_roll_configuration: Types::PostRollConfiguration
|
|
188
191
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
189
192
|
SENSITIVE: []
|
|
190
193
|
end
|
|
@@ -596,6 +599,12 @@ module Aws::IVS
|
|
|
596
599
|
SENSITIVE: []
|
|
597
600
|
end
|
|
598
601
|
|
|
602
|
+
class PostRollConfiguration
|
|
603
|
+
attr_accessor duration_seconds: ::Integer
|
|
604
|
+
attr_accessor enabled: bool
|
|
605
|
+
SENSITIVE: []
|
|
606
|
+
end
|
|
607
|
+
|
|
599
608
|
class PutMetadataRequest
|
|
600
609
|
attr_accessor channel_arn: ::String
|
|
601
610
|
attr_accessor metadata: ::String
|
|
@@ -822,6 +831,7 @@ module Aws::IVS
|
|
|
822
831
|
attr_accessor arn: ::String
|
|
823
832
|
attr_accessor name: ::String
|
|
824
833
|
attr_accessor media_tailor_playback_configurations: ::Array[Types::MediaTailorPlaybackConfiguration]
|
|
834
|
+
attr_accessor post_roll_configuration: Types::PostRollConfiguration
|
|
825
835
|
SENSITIVE: []
|
|
826
836
|
end
|
|
827
837
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-ivs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.91.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.254.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.254.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|