aws-sdk-ivs 1.83.0 → 1.84.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: b5f4571d7ce47d86c295e93c6dacebc6813df3fc09f12bff9f1a00e534354678
4
- data.tar.gz: 246d13fb88cfac7fc7035849914b6bbd89f35e9bf3ecbcb2a9ba8a32c44b1f9b
3
+ metadata.gz: 20ce3ae5031ef094d90431d604a042379b9e01e93fb6a5205a6e7a99890e2a2d
4
+ data.tar.gz: 0150e9ac841f0965622179762cdb48afb5bd830a3247bd6eac172b0c410eb4fe
5
5
  SHA512:
6
- metadata.gz: 6842b97b3c1151f04e45161392d6b78374c4275e32df54fce2b4b42c58023e4cce6e05cc6adc67c978b1ee058bdee18989ff8bbf0767061a9f6999cd172ebd8d
7
- data.tar.gz: c29b73d43542a1827faee2cf62553d0b3836637f274628eff75c652be38f3d60bc800f138bd405163aa1501c08f22e4a35d878e27c8fe11b6a31d9fd2ee86e0b
6
+ metadata.gz: e01e860b8665405572918b66e8335edce41b1ba5d26e344255f9854364a4ef25c3ba14eca8fe46af617a2eb005aa359954d95c44a97b78a9a3b5cd116675d5ab
7
+ data.tar.gz: a7bee232e90f9bf9b9c745c82620228234eb3da1d49b5d02548bc96819bda5a4149b59c518d539c9a90efb4946a59aeb16dfa9b221c0eae8dc43df6891185b66
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.84.0 (2026-04-27)
5
+ ------------------
6
+
7
+ * Feature - Adds tags parameter to the CreateAdConfiguration operation
8
+
4
9
  1.83.0 (2026-04-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.83.0
1
+ 1.84.0
@@ -657,6 +657,17 @@ module Aws::IVS
657
657
  # @option params [required, Array<Types::MediaTailorPlaybackConfiguration>] :media_tailor_playback_configurations
658
658
  # List of integration configurations with media tailor resources.
659
659
  #
660
+ # @option params [Hash<String,String>] :tags
661
+ # Array of 1-50 maps, each of the form `string:string (key:value)`. See
662
+ # [Best practices and strategies][1] in *Tagging Amazon Web Services
663
+ # Resources and Tag Editor* for details, including restrictions that
664
+ # apply to tags and "Tag naming limits and requirements"; Amazon IVS
665
+ # has no service-specific constraints beyond what is documented there.
666
+ #
667
+ #
668
+ #
669
+ # [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
670
+ #
660
671
  # @return [Types::CreateAdConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
661
672
  #
662
673
  # * {Types::CreateAdConfigurationResponse#ad_configuration #ad_configuration} => Types::AdConfiguration
@@ -670,6 +681,9 @@ module Aws::IVS
670
681
  # playback_configuration_arn: "MediaTailorPlaybackConfigurationArn",
671
682
  # },
672
683
  # ],
684
+ # tags: {
685
+ # "TagKey" => "TagValue",
686
+ # },
673
687
  # })
674
688
  #
675
689
  # @example Response structure
@@ -2506,7 +2520,7 @@ module Aws::IVS
2506
2520
  tracer: tracer
2507
2521
  )
2508
2522
  context[:gem_name] = 'aws-sdk-ivs'
2509
- context[:gem_version] = '1.83.0'
2523
+ context[:gem_version] = '1.84.0'
2510
2524
  Seahorse::Client::Request.new(handlers, context)
2511
2525
  end
2512
2526
 
@@ -385,6 +385,7 @@ module Aws::IVS
385
385
 
386
386
  CreateAdConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: AdConfigurationName, location_name: "name"))
387
387
  CreateAdConfigurationRequest.add_member(:media_tailor_playback_configurations, Shapes::ShapeRef.new(shape: MediaTailorPlaybackConfigurationsList, required: true, location_name: "mediaTailorPlaybackConfigurations"))
388
+ CreateAdConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
388
389
  CreateAdConfigurationRequest.struct_class = Types::CreateAdConfigurationRequest
389
390
 
390
391
  CreateAdConfigurationResponse.add_member(:ad_configuration, Shapes::ShapeRef.new(shape: AdConfiguration, required: true, location_name: "adConfiguration"))
@@ -833,11 +833,25 @@ module Aws::IVS
833
833
  # List of integration configurations with media tailor resources.
834
834
  # @return [Array<Types::MediaTailorPlaybackConfiguration>]
835
835
  #
836
+ # @!attribute [rw] tags
837
+ # Array of 1-50 maps, each of the form `string:string (key:value)`.
838
+ # See [Best practices and strategies][1] in *Tagging Amazon Web
839
+ # Services Resources and Tag Editor* for details, including
840
+ # restrictions that apply to tags and "Tag naming limits and
841
+ # requirements"; Amazon IVS has no service-specific constraints
842
+ # beyond what is documented there.
843
+ #
844
+ #
845
+ #
846
+ # [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
847
+ # @return [Hash<String,String>]
848
+ #
836
849
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/CreateAdConfigurationRequest AWS API Documentation
837
850
  #
838
851
  class CreateAdConfigurationRequest < Struct.new(
839
852
  :name,
840
- :media_tailor_playback_configurations)
853
+ :media_tailor_playback_configurations,
854
+ :tags)
841
855
  SENSITIVE = []
842
856
  include Aws::Structure
843
857
  end
data/lib/aws-sdk-ivs.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::IVS
54
54
  autoload :EndpointProvider, 'aws-sdk-ivs/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-ivs/endpoints'
56
56
 
57
- GEM_VERSION = '1.83.0'
57
+ GEM_VERSION = '1.84.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -148,7 +148,8 @@ module Aws
148
148
  {
149
149
  playback_configuration_arn: ::String?
150
150
  },
151
- ]
151
+ ],
152
+ ?tags: Hash[::String, ::String]
152
153
  ) -> _CreateAdConfigurationResponseSuccess
153
154
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAdConfigurationResponseSuccess
154
155
 
data/sig/types.rbs CHANGED
@@ -185,6 +185,7 @@ module Aws::IVS
185
185
  class CreateAdConfigurationRequest
186
186
  attr_accessor name: ::String
187
187
  attr_accessor media_tailor_playback_configurations: ::Array[Types::MediaTailorPlaybackConfiguration]
188
+ attr_accessor tags: ::Hash[::String, ::String]
188
189
  SENSITIVE: []
189
190
  end
190
191
 
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.83.0
4
+ version: 1.84.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services