aws-sdk-ivs 1.57.0 → 1.59.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ivs/client.rb +49 -40
- data/lib/aws-sdk-ivs/plugins/endpoints.rb +8 -5
- data/lib/aws-sdk-ivs/types.rb +98 -81
- data/lib/aws-sdk-ivs.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3d49bba747b8438e35e31bdf58b00030a3f50dee4ea8241fe356746243f618df
|
4
|
+
data.tar.gz: ca0392e91e0d772d3ec320aec0786079071a34dce5d9244c5c4f0ad27602777b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2672c054225b70df8912b9b97e8e6a58f5b771ff24ebe7e21807c097f598844577de1173de8443647aeef39d19d08b9cfc0d14a63af09b3de54b64db6573b48
|
7
|
+
data.tar.gz: 789ee3e1fa3e3f03dd0e08a80610d4df19f562b1acf42d1f2e694fce9b7d0d5a53ccd9eac3ca51bd2de9ed795cd3db7e79cd2d17659ffd1ae7497a8ad30b3b9b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.59.0 (2024-09-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.58.0 (2024-09-13)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Updates to all tags descriptions.
|
13
|
+
|
4
14
|
1.57.0 (2024-09-11)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.59.0
|
data/lib/aws-sdk-ivs/client.rb
CHANGED
@@ -130,13 +130,15 @@ module Aws::IVS
|
|
130
130
|
# locations will be searched for credentials:
|
131
131
|
#
|
132
132
|
# * `Aws.config[:credentials]`
|
133
|
-
# * The `:access_key_id`, `:secret_access_key`,
|
134
|
-
#
|
133
|
+
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
134
|
+
# `:account_id` options.
|
135
|
+
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
|
136
|
+
# ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
|
135
137
|
# * `~/.aws/credentials`
|
136
138
|
# * `~/.aws/config`
|
137
139
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
140
|
# are very aggressive. Construct and pass an instance of
|
139
|
-
# `Aws::
|
141
|
+
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
142
|
# enable retries and extended timeouts. Instance profile credential
|
141
143
|
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
144
|
# to true.
|
@@ -155,6 +157,8 @@ module Aws::IVS
|
|
155
157
|
#
|
156
158
|
# @option options [String] :access_key_id
|
157
159
|
#
|
160
|
+
# @option options [String] :account_id
|
161
|
+
#
|
158
162
|
# @option options [Boolean] :active_endpoint_cache (false)
|
159
163
|
# When set to `true`, a thread polling for endpoints will be running in
|
160
164
|
# the background every 60 secs (default). Defaults to `false`.
|
@@ -369,7 +373,9 @@ module Aws::IVS
|
|
369
373
|
# sending the request.
|
370
374
|
#
|
371
375
|
# @option options [Aws::IVS::EndpointProvider] :endpoint_provider
|
372
|
-
# The endpoint provider used to resolve endpoints. Any object that responds to
|
376
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to
|
377
|
+
# `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
|
378
|
+
# `Aws::IVS::EndpointParameters`.
|
373
379
|
#
|
374
380
|
# @option options [Float] :http_continue_timeout (1)
|
375
381
|
# The number of seconds to wait for a 100-continue response before sending the
|
@@ -599,14 +605,14 @@ module Aws::IVS
|
|
599
605
|
#
|
600
606
|
# @option params [Hash<String,String>] :tags
|
601
607
|
# Array of 1-50 maps, each of the form `string:string (key:value)`. See
|
602
|
-
# [
|
603
|
-
#
|
604
|
-
# requirements"; Amazon IVS
|
605
|
-
# what is documented there.
|
608
|
+
# [Best practices and strategies][1] in *Tagging Amazon Web Services
|
609
|
+
# Resources and Tag Editor* for details, including restrictions that
|
610
|
+
# apply to tags and "Tag naming limits and requirements"; Amazon IVS
|
611
|
+
# has no service-specific constraints beyond what is documented there.
|
606
612
|
#
|
607
613
|
#
|
608
614
|
#
|
609
|
-
# [1]: https://docs.aws.amazon.com/
|
615
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
610
616
|
#
|
611
617
|
# @option params [Boolean] :insecure_ingest
|
612
618
|
# Whether the channel allows insecure RTMP and SRT ingest. Default:
|
@@ -709,14 +715,14 @@ module Aws::IVS
|
|
709
715
|
#
|
710
716
|
# @option params [Hash<String,String>] :tags
|
711
717
|
# Array of 1-50 maps, each of the form `string:string (key:value)`. See
|
712
|
-
# [
|
713
|
-
#
|
714
|
-
# requirements"; Amazon IVS
|
715
|
-
# what is documented there.
|
718
|
+
# [Best practices and strategies][1] in *Tagging Amazon Web Services
|
719
|
+
# Resources and Tag Editor* for details, including restrictions that
|
720
|
+
# apply to tags and "Tag naming limits and requirements"; Amazon IVS
|
721
|
+
# has no service-specific constraints beyond what is documented there.
|
716
722
|
#
|
717
723
|
#
|
718
724
|
#
|
719
|
-
# [1]: https://docs.aws.amazon.com/
|
725
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
720
726
|
#
|
721
727
|
# @return [Types::CreatePlaybackRestrictionPolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
722
728
|
#
|
@@ -780,14 +786,14 @@ module Aws::IVS
|
|
780
786
|
#
|
781
787
|
# @option params [Hash<String,String>] :tags
|
782
788
|
# Array of 1-50 maps, each of the form `string:string (key:value)`. See
|
783
|
-
# [
|
784
|
-
#
|
785
|
-
# requirements"; Amazon IVS
|
786
|
-
# what is documented there.
|
789
|
+
# [Best practices and strategies][1] in *Tagging Amazon Web Services
|
790
|
+
# Resources and Tag Editor* for details, including restrictions that
|
791
|
+
# apply to tags and "Tag naming limits and requirements"; Amazon IVS
|
792
|
+
# has no service-specific constraints beyond what is documented there.
|
787
793
|
#
|
788
794
|
#
|
789
795
|
#
|
790
|
-
# [1]: https://docs.aws.amazon.com/
|
796
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
791
797
|
#
|
792
798
|
# @option params [Types::ThumbnailConfiguration] :thumbnail_configuration
|
793
799
|
# A complex type that allows you to enable/disable the recording of
|
@@ -873,14 +879,14 @@ module Aws::IVS
|
|
873
879
|
#
|
874
880
|
# @option params [Hash<String,String>] :tags
|
875
881
|
# Array of 1-50 maps, each of the form `string:string (key:value)`. See
|
876
|
-
# [
|
877
|
-
#
|
878
|
-
# requirements"; Amazon IVS
|
879
|
-
# what is documented there.
|
882
|
+
# [Best practices and strategies][1] in *Tagging Amazon Web Services
|
883
|
+
# Resources and Tag Editor* for details, including restrictions that
|
884
|
+
# apply to tags and "Tag naming limits and requirements"; Amazon IVS
|
885
|
+
# has no service-specific constraints beyond what is documented there.
|
880
886
|
#
|
881
887
|
#
|
882
888
|
#
|
883
|
-
# [1]: https://docs.aws.amazon.com/
|
889
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
884
890
|
#
|
885
891
|
# @return [Types::CreateStreamKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
886
892
|
#
|
@@ -1374,14 +1380,15 @@ module Aws::IVS
|
|
1374
1380
|
#
|
1375
1381
|
# @option params [Hash<String,String>] :tags
|
1376
1382
|
# Any tags provided with the request are added to the playback key pair
|
1377
|
-
# tags. See [
|
1378
|
-
#
|
1379
|
-
# naming limits and requirements"; Amazon
|
1380
|
-
# constraints beyond what is documented
|
1383
|
+
# tags. See [Best practices and strategies][1] in *Tagging Amazon Web
|
1384
|
+
# Services Resources and Tag Editor* for details, including restrictions
|
1385
|
+
# that apply to tags and "Tag naming limits and requirements"; Amazon
|
1386
|
+
# IVS has no service-specific constraints beyond what is documented
|
1387
|
+
# there.
|
1381
1388
|
#
|
1382
1389
|
#
|
1383
1390
|
#
|
1384
|
-
# [1]: https://docs.aws.amazon.com/
|
1391
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
1385
1392
|
#
|
1386
1393
|
# @return [Types::ImportPlaybackKeyPairResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1387
1394
|
#
|
@@ -1907,14 +1914,15 @@ module Aws::IVS
|
|
1907
1914
|
#
|
1908
1915
|
# @option params [required, Hash<String,String>] :tags
|
1909
1916
|
# Array of tags to be added or updated. Array of maps, each of the form
|
1910
|
-
# `string:string (key:value)`. See [
|
1911
|
-
#
|
1912
|
-
# to tags and "Tag naming limits and
|
1913
|
-
# service-specific constraints beyond
|
1917
|
+
# `string:string (key:value)`. See [Best practices and strategies][1] in
|
1918
|
+
# *Tagging Amazon Web Services Resources and Tag Editor* for details,
|
1919
|
+
# including restrictions that apply to tags and "Tag naming limits and
|
1920
|
+
# requirements"; Amazon IVS has no service-specific constraints beyond
|
1921
|
+
# what is documented there.
|
1914
1922
|
#
|
1915
1923
|
#
|
1916
1924
|
#
|
1917
|
-
# [1]: https://docs.aws.amazon.com/
|
1925
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
1918
1926
|
#
|
1919
1927
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1920
1928
|
#
|
@@ -1944,14 +1952,15 @@ module Aws::IVS
|
|
1944
1952
|
#
|
1945
1953
|
# @option params [required, Array<String>] :tag_keys
|
1946
1954
|
# Array of tags to be removed. Array of maps, each of the form
|
1947
|
-
# `string:string (key:value)`. See [
|
1948
|
-
#
|
1949
|
-
# to tags and "Tag naming limits and
|
1950
|
-
# service-specific constraints beyond
|
1955
|
+
# `string:string (key:value)`. See [Best practices and strategies][1] in
|
1956
|
+
# *Tagging Amazon Web Services Resources and Tag Editor* for details,
|
1957
|
+
# including restrictions that apply to tags and "Tag naming limits and
|
1958
|
+
# requirements"; Amazon IVS has no service-specific constraints beyond
|
1959
|
+
# what is documented there.
|
1951
1960
|
#
|
1952
1961
|
#
|
1953
1962
|
#
|
1954
|
-
# [1]: https://docs.aws.amazon.com/
|
1963
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
1955
1964
|
#
|
1956
1965
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1957
1966
|
#
|
@@ -2149,7 +2158,7 @@ module Aws::IVS
|
|
2149
2158
|
tracer: tracer
|
2150
2159
|
)
|
2151
2160
|
context[:gem_name] = 'aws-sdk-ivs'
|
2152
|
-
context[:gem_version] = '1.
|
2161
|
+
context[:gem_version] = '1.59.0'
|
2153
2162
|
Seahorse::Client::Request.new(handlers, context)
|
2154
2163
|
end
|
2155
2164
|
|
@@ -15,11 +15,11 @@ module Aws::IVS
|
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::IVS::EndpointProvider',
|
17
17
|
rbs_type: 'untyped',
|
18
|
-
docstring:
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
18
|
+
docstring: <<~DOCS) do |_cfg|
|
19
|
+
The endpoint provider used to resolve endpoints. Any object that responds to
|
20
|
+
`#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
|
21
|
+
`Aws::IVS::EndpointParameters`.
|
22
|
+
DOCS
|
23
23
|
Aws::IVS::EndpointProvider.new
|
24
24
|
end
|
25
25
|
|
@@ -51,6 +51,9 @@ module Aws::IVS
|
|
51
51
|
if context[:auth_scheme] && context[:auth_scheme]['name'] == 'sigv4a'
|
52
52
|
metrics << 'SIGV4A_SIGNING'
|
53
53
|
end
|
54
|
+
if context.config.credentials&.credentials&.account_id
|
55
|
+
metrics << 'RESOLVED_ACCOUNT_ID'
|
56
|
+
end
|
54
57
|
Aws::Plugins::UserAgent.metric(*metrics, &block)
|
55
58
|
end
|
56
59
|
|
data/lib/aws-sdk-ivs/types.rb
CHANGED
@@ -267,14 +267,15 @@ module Aws::IVS
|
|
267
267
|
#
|
268
268
|
# @!attribute [rw] tags
|
269
269
|
# Tags attached to the resource. Array of 1-50 maps, each of the form
|
270
|
-
# `string:string (key:value)`. See [
|
271
|
-
#
|
272
|
-
# apply to tags and "Tag naming
|
273
|
-
# has no service-specific
|
270
|
+
# `string:string (key:value)`. See [Best practices and strategies][1]
|
271
|
+
# in *Tagging Amazon Web Services Resources and Tag Editor* for
|
272
|
+
# details, including restrictions that apply to tags and "Tag naming
|
273
|
+
# limits and requirements"; Amazon IVS has no service-specific
|
274
|
+
# constraints beyond what is documented there.
|
274
275
|
#
|
275
276
|
#
|
276
277
|
#
|
277
|
-
# [1]: https://docs.aws.amazon.com/
|
278
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
278
279
|
# @return [Hash<String,String>]
|
279
280
|
#
|
280
281
|
# @!attribute [rw] insecure_ingest
|
@@ -361,14 +362,15 @@ module Aws::IVS
|
|
361
362
|
#
|
362
363
|
# @!attribute [rw] tags
|
363
364
|
# Tags attached to the resource. Array of 1-50 maps, each of the form
|
364
|
-
# `string:string (key:value)`. See [
|
365
|
-
#
|
366
|
-
# apply to tags and "Tag naming
|
367
|
-
# has no service-specific
|
365
|
+
# `string:string (key:value)`. See [Best practices and strategies][1]
|
366
|
+
# in *Tagging Amazon Web Services Resources and Tag Editor* for
|
367
|
+
# details, including restrictions that apply to tags and "Tag naming
|
368
|
+
# limits and requirements"; Amazon IVS has no service-specific
|
369
|
+
# constraints beyond what is documented there.
|
368
370
|
#
|
369
371
|
#
|
370
372
|
#
|
371
|
-
# [1]: https://docs.aws.amazon.com/
|
373
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
372
374
|
# @return [Hash<String,String>]
|
373
375
|
#
|
374
376
|
# @!attribute [rw] insecure_ingest
|
@@ -463,14 +465,15 @@ module Aws::IVS
|
|
463
465
|
#
|
464
466
|
# @!attribute [rw] tags
|
465
467
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
466
|
-
# See [
|
467
|
-
#
|
468
|
-
#
|
468
|
+
# See [Best practices and strategies][1] in *Tagging Amazon Web
|
469
|
+
# Services Resources and Tag Editor* for details, including
|
470
|
+
# restrictions that apply to tags and "Tag naming limits and
|
471
|
+
# requirements"; Amazon IVS has no service-specific constraints
|
469
472
|
# beyond what is documented there.
|
470
473
|
#
|
471
474
|
#
|
472
475
|
#
|
473
|
-
# [1]: https://docs.aws.amazon.com/
|
476
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
474
477
|
# @return [Hash<String,String>]
|
475
478
|
#
|
476
479
|
# @!attribute [rw] insecure_ingest
|
@@ -556,14 +559,15 @@ module Aws::IVS
|
|
556
559
|
#
|
557
560
|
# @!attribute [rw] tags
|
558
561
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
559
|
-
# See [
|
560
|
-
#
|
561
|
-
#
|
562
|
+
# See [Best practices and strategies][1] in *Tagging Amazon Web
|
563
|
+
# Services Resources and Tag Editor* for details, including
|
564
|
+
# restrictions that apply to tags and "Tag naming limits and
|
565
|
+
# requirements"; Amazon IVS has no service-specific constraints
|
562
566
|
# beyond what is documented there.
|
563
567
|
#
|
564
568
|
#
|
565
569
|
#
|
566
|
-
# [1]: https://docs.aws.amazon.com/
|
570
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
567
571
|
# @return [Hash<String,String>]
|
568
572
|
#
|
569
573
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/CreatePlaybackRestrictionPolicyRequest AWS API Documentation
|
@@ -600,14 +604,15 @@ module Aws::IVS
|
|
600
604
|
#
|
601
605
|
# @!attribute [rw] tags
|
602
606
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
603
|
-
# See [
|
604
|
-
#
|
605
|
-
#
|
607
|
+
# See [Best practices and strategies][1] in *Tagging Amazon Web
|
608
|
+
# Services Resources and Tag Editor* for details, including
|
609
|
+
# restrictions that apply to tags and "Tag naming limits and
|
610
|
+
# requirements"; Amazon IVS has no service-specific constraints
|
606
611
|
# beyond what is documented there.
|
607
612
|
#
|
608
613
|
#
|
609
614
|
#
|
610
|
-
# [1]: https://docs.aws.amazon.com/
|
615
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
611
616
|
# @return [Hash<String,String>]
|
612
617
|
#
|
613
618
|
# @!attribute [rw] thumbnail_configuration
|
@@ -660,14 +665,15 @@ module Aws::IVS
|
|
660
665
|
#
|
661
666
|
# @!attribute [rw] tags
|
662
667
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
663
|
-
# See [
|
664
|
-
#
|
665
|
-
#
|
668
|
+
# See [Best practices and strategies][1] in *Tagging Amazon Web
|
669
|
+
# Services Resources and Tag Editor* for details, including
|
670
|
+
# restrictions that apply to tags and "Tag naming limits and
|
671
|
+
# requirements"; Amazon IVS has no service-specific constraints
|
666
672
|
# beyond what is documented there.
|
667
673
|
#
|
668
674
|
#
|
669
675
|
#
|
670
|
-
# [1]: https://docs.aws.amazon.com/
|
676
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
671
677
|
# @return [Hash<String,String>]
|
672
678
|
#
|
673
679
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/CreateStreamKeyRequest AWS API Documentation
|
@@ -961,14 +967,15 @@ module Aws::IVS
|
|
961
967
|
#
|
962
968
|
# @!attribute [rw] tags
|
963
969
|
# Any tags provided with the request are added to the playback key
|
964
|
-
# pair tags. See [
|
965
|
-
#
|
966
|
-
#
|
967
|
-
#
|
970
|
+
# pair tags. See [Best practices and strategies][1] in *Tagging Amazon
|
971
|
+
# Web Services Resources and Tag Editor* for details, including
|
972
|
+
# restrictions that apply to tags and "Tag naming limits and
|
973
|
+
# requirements"; Amazon IVS has no service-specific constraints
|
974
|
+
# beyond what is documented there.
|
968
975
|
#
|
969
976
|
#
|
970
977
|
#
|
971
|
-
# [1]: https://docs.aws.amazon.com/
|
978
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
972
979
|
# @return [Hash<String,String>]
|
973
980
|
#
|
974
981
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/ImportPlaybackKeyPairRequest AWS API Documentation
|
@@ -1363,14 +1370,15 @@ module Aws::IVS
|
|
1363
1370
|
#
|
1364
1371
|
# @!attribute [rw] tags
|
1365
1372
|
# Tags attached to the resource. Array of 1-50 maps, each of the form
|
1366
|
-
# `string:string (key:value)`. See [
|
1367
|
-
#
|
1368
|
-
# apply to tags and "Tag naming
|
1369
|
-
# has no service-specific
|
1373
|
+
# `string:string (key:value)`. See [Best practices and strategies][1]
|
1374
|
+
# in *Tagging Amazon Web Services Resources and Tag Editor* for
|
1375
|
+
# details, including restrictions that apply to tags and "Tag naming
|
1376
|
+
# limits and requirements"; Amazon IVS has no service-specific
|
1377
|
+
# constraints beyond what is documented there.
|
1370
1378
|
#
|
1371
1379
|
#
|
1372
1380
|
#
|
1373
|
-
# [1]: https://docs.aws.amazon.com/
|
1381
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
1374
1382
|
# @return [Hash<String,String>]
|
1375
1383
|
#
|
1376
1384
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/PlaybackKeyPair AWS API Documentation
|
@@ -1396,14 +1404,15 @@ module Aws::IVS
|
|
1396
1404
|
#
|
1397
1405
|
# @!attribute [rw] tags
|
1398
1406
|
# Tags attached to the resource. Array of 1-50 maps, each of the form
|
1399
|
-
# `string:string (key:value)`. See [
|
1400
|
-
#
|
1401
|
-
# apply to tags and "Tag naming
|
1402
|
-
# has no service-specific
|
1407
|
+
# `string:string (key:value)`. See [Best practices and strategies][1]
|
1408
|
+
# in *Tagging Amazon Web Services Resources and Tag Editor* for
|
1409
|
+
# details, including restrictions that apply to tags and "Tag naming
|
1410
|
+
# limits and requirements"; Amazon IVS has no service-specific
|
1411
|
+
# constraints beyond what is documented there.
|
1403
1412
|
#
|
1404
1413
|
#
|
1405
1414
|
#
|
1406
|
-
# [1]: https://docs.aws.amazon.com/
|
1415
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
1407
1416
|
# @return [Hash<String,String>]
|
1408
1417
|
#
|
1409
1418
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/PlaybackKeyPairSummary AWS API Documentation
|
@@ -1456,14 +1465,15 @@ module Aws::IVS
|
|
1456
1465
|
#
|
1457
1466
|
# @!attribute [rw] tags
|
1458
1467
|
# Tags attached to the resource. Array of 1-50 maps, each of the form
|
1459
|
-
# `string:string (key:value)`. See [
|
1460
|
-
#
|
1461
|
-
# apply to tags and "Tag naming
|
1462
|
-
# has no service-specific
|
1468
|
+
# `string:string (key:value)`. See [Best practices and strategies][1]
|
1469
|
+
# in *Tagging Amazon Web Services Resources and Tag Editor* for
|
1470
|
+
# details, including restrictions that apply to tags and "Tag naming
|
1471
|
+
# limits and requirements"; Amazon IVS has no service-specific
|
1472
|
+
# constraints beyond what is documented there.
|
1463
1473
|
#
|
1464
1474
|
#
|
1465
1475
|
#
|
1466
|
-
# [1]: https://docs.aws.amazon.com/
|
1476
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
1467
1477
|
# @return [Hash<String,String>]
|
1468
1478
|
#
|
1469
1479
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/PlaybackRestrictionPolicy AWS API Documentation
|
@@ -1518,14 +1528,15 @@ module Aws::IVS
|
|
1518
1528
|
#
|
1519
1529
|
# @!attribute [rw] tags
|
1520
1530
|
# Tags attached to the resource. Array of 1-50 maps, each of the form
|
1521
|
-
# `string:string (key:value)`. See [
|
1522
|
-
#
|
1523
|
-
# apply to tags and "Tag naming
|
1524
|
-
# has no service-specific
|
1531
|
+
# `string:string (key:value)`. See [Best practices and strategies][1]
|
1532
|
+
# in *Tagging Amazon Web Services Resources and Tag Editor* for
|
1533
|
+
# details, including restrictions that apply to tags and "Tag naming
|
1534
|
+
# limits and requirements"; Amazon IVS has no service-specific
|
1535
|
+
# constraints beyond what is documented there.
|
1525
1536
|
#
|
1526
1537
|
#
|
1527
1538
|
#
|
1528
|
-
# [1]: https://docs.aws.amazon.com/
|
1539
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
1529
1540
|
# @return [Hash<String,String>]
|
1530
1541
|
#
|
1531
1542
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/PlaybackRestrictionPolicySummary AWS API Documentation
|
@@ -1582,14 +1593,15 @@ module Aws::IVS
|
|
1582
1593
|
#
|
1583
1594
|
# @!attribute [rw] tags
|
1584
1595
|
# Tags attached to the resource. Array of 1-50 maps, each of the form
|
1585
|
-
# `string:string (key:value)`. See [
|
1586
|
-
#
|
1587
|
-
# apply to tags and "Tag naming
|
1588
|
-
# has no service-specific
|
1596
|
+
# `string:string (key:value)`. See [Best practices and strategies][1]
|
1597
|
+
# in *Tagging Amazon Web Services Resources and Tag Editor* for
|
1598
|
+
# details, including restrictions that apply to tags and "Tag naming
|
1599
|
+
# limits and requirements"; Amazon IVS has no service-specific
|
1600
|
+
# constraints beyond what is documented there.
|
1589
1601
|
#
|
1590
1602
|
#
|
1591
1603
|
#
|
1592
|
-
# [1]: https://docs.aws.amazon.com/
|
1604
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
1593
1605
|
# @return [Hash<String,String>]
|
1594
1606
|
#
|
1595
1607
|
# @!attribute [rw] thumbnail_configuration
|
@@ -1647,14 +1659,15 @@ module Aws::IVS
|
|
1647
1659
|
#
|
1648
1660
|
# @!attribute [rw] tags
|
1649
1661
|
# Tags attached to the resource. Array of 1-50 maps, each of the form
|
1650
|
-
# `string:string (key:value)`. See [
|
1651
|
-
#
|
1652
|
-
# apply to tags and "Tag naming
|
1653
|
-
# has no service-specific
|
1662
|
+
# `string:string (key:value)`. See [Best practices and strategies][1]
|
1663
|
+
# in *Tagging Amazon Web Services Resources and Tag Editor* for
|
1664
|
+
# details, including restrictions that apply to tags and "Tag naming
|
1665
|
+
# limits and requirements"; Amazon IVS has no service-specific
|
1666
|
+
# constraints beyond what is documented there.
|
1654
1667
|
#
|
1655
1668
|
#
|
1656
1669
|
#
|
1657
|
-
# [1]: https://docs.aws.amazon.com/
|
1670
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
1658
1671
|
# @return [Hash<String,String>]
|
1659
1672
|
#
|
1660
1673
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/RecordingConfigurationSummary AWS API Documentation
|
@@ -1922,14 +1935,15 @@ module Aws::IVS
|
|
1922
1935
|
#
|
1923
1936
|
# @!attribute [rw] tags
|
1924
1937
|
# Tags attached to the resource. Array of 1-50 maps, each of the form
|
1925
|
-
# `string:string (key:value)`. See [
|
1926
|
-
#
|
1927
|
-
# apply to tags and "Tag naming
|
1928
|
-
# has no service-specific
|
1938
|
+
# `string:string (key:value)`. See [Best practices and strategies][1]
|
1939
|
+
# in *Tagging Amazon Web Services Resources and Tag Editor* for
|
1940
|
+
# details, including restrictions that apply to tags and "Tag naming
|
1941
|
+
# limits and requirements"; Amazon IVS has no service-specific
|
1942
|
+
# constraints beyond what is documented there.
|
1929
1943
|
#
|
1930
1944
|
#
|
1931
1945
|
#
|
1932
|
-
# [1]: https://docs.aws.amazon.com/
|
1946
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
1933
1947
|
# @return [Hash<String,String>]
|
1934
1948
|
#
|
1935
1949
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/StreamKey AWS API Documentation
|
@@ -1955,14 +1969,15 @@ module Aws::IVS
|
|
1955
1969
|
#
|
1956
1970
|
# @!attribute [rw] tags
|
1957
1971
|
# Tags attached to the resource. Array of 1-50 maps, each of the form
|
1958
|
-
# `string:string (key:value)`. See [
|
1959
|
-
#
|
1960
|
-
# apply to tags and "Tag naming
|
1961
|
-
# has no service-specific
|
1972
|
+
# `string:string (key:value)`. See [Best practices and strategies][1]
|
1973
|
+
# in *Tagging Amazon Web Services Resources and Tag Editor* for
|
1974
|
+
# details, including restrictions that apply to tags and "Tag naming
|
1975
|
+
# limits and requirements"; Amazon IVS has no service-specific
|
1976
|
+
# constraints beyond what is documented there.
|
1962
1977
|
#
|
1963
1978
|
#
|
1964
1979
|
#
|
1965
|
-
# [1]: https://docs.aws.amazon.com/
|
1980
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
1966
1981
|
# @return [Hash<String,String>]
|
1967
1982
|
#
|
1968
1983
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/StreamKeySummary AWS API Documentation
|
@@ -2131,14 +2146,15 @@ module Aws::IVS
|
|
2131
2146
|
#
|
2132
2147
|
# @!attribute [rw] tags
|
2133
2148
|
# Array of tags to be added or updated. Array of maps, each of the
|
2134
|
-
# form `string:string (key:value)`. See [
|
2135
|
-
#
|
2136
|
-
#
|
2137
|
-
#
|
2149
|
+
# form `string:string (key:value)`. See [Best practices and
|
2150
|
+
# strategies][1] in *Tagging Amazon Web Services Resources and Tag
|
2151
|
+
# Editor* for details, including restrictions that apply to tags and
|
2152
|
+
# "Tag naming limits and requirements"; Amazon IVS has no
|
2153
|
+
# service-specific constraints beyond what is documented there.
|
2138
2154
|
#
|
2139
2155
|
#
|
2140
2156
|
#
|
2141
|
-
# [1]: https://docs.aws.amazon.com/
|
2157
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
2142
2158
|
# @return [Hash<String,String>]
|
2143
2159
|
#
|
2144
2160
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/TagResourceRequest AWS API Documentation
|
@@ -2233,14 +2249,15 @@ module Aws::IVS
|
|
2233
2249
|
#
|
2234
2250
|
# @!attribute [rw] tag_keys
|
2235
2251
|
# Array of tags to be removed. Array of maps, each of the form
|
2236
|
-
# `string:string (key:value)`. See [
|
2237
|
-
#
|
2238
|
-
# apply to tags and "Tag naming
|
2239
|
-
# has no service-specific
|
2252
|
+
# `string:string (key:value)`. See [Best practices and strategies][1]
|
2253
|
+
# in *Tagging Amazon Web Services Resources and Tag Editor* for
|
2254
|
+
# details, including restrictions that apply to tags and "Tag naming
|
2255
|
+
# limits and requirements"; Amazon IVS has no service-specific
|
2256
|
+
# constraints beyond what is documented there.
|
2240
2257
|
#
|
2241
2258
|
#
|
2242
2259
|
#
|
2243
|
-
# [1]: https://docs.aws.amazon.com/
|
2260
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
2244
2261
|
# @return [Array<String>]
|
2245
2262
|
#
|
2246
2263
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/UntagResourceRequest AWS API Documentation
|
data/lib/aws-sdk-ivs.rb
CHANGED
data/sig/client.rbs
CHANGED
data/sig/resource.rbs
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.59.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-09-
|
11
|
+
date: 2024-09-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.207.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.207.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|