aws-sdk-mediatailor 1.67.0 → 1.69.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d3738e89228dae6664729ceafa0a4e78413879d96aedebc03fa23eeb05b287eb
4
- data.tar.gz: 4fcbd6f16092ef9e83062e8365c7cddae7200da19c8e8ec0ffa93e57852f3727
3
+ metadata.gz: a02d9095c49f5913c20ca66ac5b988754d88803200f6261e387811971e12167d
4
+ data.tar.gz: 6b9a34e9363068aace6759e0858a69c53f037c132618cc9c3211a970be7ef6f6
5
5
  SHA512:
6
- metadata.gz: 437172ece3a4c57ba6962ef8a4135234376dc01aa34a815128d9350d2bf4543b86a4322320e75c17ba53965aec52ce08cf41be4cde2223232c3df7716474f559
7
- data.tar.gz: 2bf014f8b4fec59d0407b79f665ba420676fc97349a8e103095ab9c2c87970bb4deaabdb449c3caf6018c12cb0d9fb18f8482c069f72201ab95c359ca4e6dba4
6
+ metadata.gz: 41b363c7d08972323f65bac6781ba071507f453a1d10be6f69ff13a2eaeeb138c936b94bfba95e2962a08caca0f91c8aa651013cc68cf9c7c4fcf670e6b9eba0
7
+ data.tar.gz: 54d90420ebfb23a58b807c738a759a1f55a76c572d745c1d7ee24b5c131387db9914499969ad2dade032667c813e8a2b018c160363d697d0e472b6026abb29a4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.69.0 (2023-08-24)
5
+ ------------------
6
+
7
+ * Feature - Adds new source location AUTODETECT_SIGV4 access type.
8
+
9
+ 1.68.0 (2023-07-13)
10
+ ------------------
11
+
12
+ * Feature - Adds categories to MediaTailor channel assembly alerts
13
+
4
14
  1.67.0 (2023-07-11)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.69.0
@@ -949,7 +949,7 @@ module Aws::MediaTailor
949
949
  #
950
950
  # resp = client.create_source_location({
951
951
  # access_configuration: {
952
- # access_type: "S3_SIGV4", # accepts S3_SIGV4, SECRETS_MANAGER_ACCESS_TOKEN
952
+ # access_type: "S3_SIGV4", # accepts S3_SIGV4, SECRETS_MANAGER_ACCESS_TOKEN, AUTODETECT_SIGV4
953
953
  # secrets_manager_access_token_configuration: {
954
954
  # header_name: "__string",
955
955
  # secret_arn: "__string",
@@ -976,7 +976,7 @@ module Aws::MediaTailor
976
976
  #
977
977
  # @example Response structure
978
978
  #
979
- # resp.access_configuration.access_type #=> String, one of "S3_SIGV4", "SECRETS_MANAGER_ACCESS_TOKEN"
979
+ # resp.access_configuration.access_type #=> String, one of "S3_SIGV4", "SECRETS_MANAGER_ACCESS_TOKEN", "AUTODETECT_SIGV4"
980
980
  # resp.access_configuration.secrets_manager_access_token_configuration.header_name #=> String
981
981
  # resp.access_configuration.secrets_manager_access_token_configuration.secret_arn #=> String
982
982
  # resp.access_configuration.secrets_manager_access_token_configuration.secret_string_key #=> String
@@ -1517,7 +1517,7 @@ module Aws::MediaTailor
1517
1517
  #
1518
1518
  # @example Response structure
1519
1519
  #
1520
- # resp.access_configuration.access_type #=> String, one of "S3_SIGV4", "SECRETS_MANAGER_ACCESS_TOKEN"
1520
+ # resp.access_configuration.access_type #=> String, one of "S3_SIGV4", "SECRETS_MANAGER_ACCESS_TOKEN", "AUTODETECT_SIGV4"
1521
1521
  # resp.access_configuration.secrets_manager_access_token_configuration.header_name #=> String
1522
1522
  # resp.access_configuration.secrets_manager_access_token_configuration.secret_arn #=> String
1523
1523
  # resp.access_configuration.secrets_manager_access_token_configuration.secret_string_key #=> String
@@ -1870,6 +1870,7 @@ module Aws::MediaTailor
1870
1870
  # resp.items #=> Array
1871
1871
  # resp.items[0].alert_code #=> String
1872
1872
  # resp.items[0].alert_message #=> String
1873
+ # resp.items[0].category #=> String, one of "SCHEDULING_ERROR", "PLAYBACK_WARNING", "INFO"
1873
1874
  # resp.items[0].last_modified_time #=> Time
1874
1875
  # resp.items[0].related_resource_arns #=> Array
1875
1876
  # resp.items[0].related_resource_arns[0] #=> String
@@ -2185,7 +2186,7 @@ module Aws::MediaTailor
2185
2186
  # @example Response structure
2186
2187
  #
2187
2188
  # resp.items #=> Array
2188
- # resp.items[0].access_configuration.access_type #=> String, one of "S3_SIGV4", "SECRETS_MANAGER_ACCESS_TOKEN"
2189
+ # resp.items[0].access_configuration.access_type #=> String, one of "S3_SIGV4", "SECRETS_MANAGER_ACCESS_TOKEN", "AUTODETECT_SIGV4"
2189
2190
  # resp.items[0].access_configuration.secrets_manager_access_token_configuration.header_name #=> String
2190
2191
  # resp.items[0].access_configuration.secrets_manager_access_token_configuration.secret_arn #=> String
2191
2192
  # resp.items[0].access_configuration.secrets_manager_access_token_configuration.secret_string_key #=> String
@@ -2978,7 +2979,7 @@ module Aws::MediaTailor
2978
2979
  #
2979
2980
  # resp = client.update_source_location({
2980
2981
  # access_configuration: {
2981
- # access_type: "S3_SIGV4", # accepts S3_SIGV4, SECRETS_MANAGER_ACCESS_TOKEN
2982
+ # access_type: "S3_SIGV4", # accepts S3_SIGV4, SECRETS_MANAGER_ACCESS_TOKEN, AUTODETECT_SIGV4
2982
2983
  # secrets_manager_access_token_configuration: {
2983
2984
  # header_name: "__string",
2984
2985
  # secret_arn: "__string",
@@ -3002,7 +3003,7 @@ module Aws::MediaTailor
3002
3003
  #
3003
3004
  # @example Response structure
3004
3005
  #
3005
- # resp.access_configuration.access_type #=> String, one of "S3_SIGV4", "SECRETS_MANAGER_ACCESS_TOKEN"
3006
+ # resp.access_configuration.access_type #=> String, one of "S3_SIGV4", "SECRETS_MANAGER_ACCESS_TOKEN", "AUTODETECT_SIGV4"
3006
3007
  # resp.access_configuration.secrets_manager_access_token_configuration.header_name #=> String
3007
3008
  # resp.access_configuration.secrets_manager_access_token_configuration.secret_arn #=> String
3008
3009
  # resp.access_configuration.secrets_manager_access_token_configuration.secret_string_key #=> String
@@ -3099,7 +3100,7 @@ module Aws::MediaTailor
3099
3100
  params: params,
3100
3101
  config: config)
3101
3102
  context[:gem_name] = 'aws-sdk-mediatailor'
3102
- context[:gem_version] = '1.67.0'
3103
+ context[:gem_version] = '1.69.0'
3103
3104
  Seahorse::Client::Request.new(handlers, context)
3104
3105
  end
3105
3106
 
@@ -20,6 +20,7 @@ module Aws::MediaTailor
20
20
  AdMarkerPassthrough = Shapes::StructureShape.new(name: 'AdMarkerPassthrough')
21
21
  AdMarkupType = Shapes::StringShape.new(name: 'AdMarkupType')
22
22
  Alert = Shapes::StructureShape.new(name: 'Alert')
23
+ AlertCategory = Shapes::StringShape.new(name: 'AlertCategory')
23
24
  AvailMatchingCriteria = Shapes::StructureShape.new(name: 'AvailMatchingCriteria')
24
25
  AvailSuppression = Shapes::StructureShape.new(name: 'AvailSuppression')
25
26
  BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
@@ -212,6 +213,7 @@ module Aws::MediaTailor
212
213
 
213
214
  Alert.add_member(:alert_code, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "AlertCode"))
214
215
  Alert.add_member(:alert_message, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "AlertMessage"))
216
+ Alert.add_member(:category, Shapes::ShapeRef.new(shape: AlertCategory, location_name: "Category"))
215
217
  Alert.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, required: true, location_name: "LastModifiedTime"))
216
218
  Alert.add_member(:related_resource_arns, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "RelatedResourceArns"))
217
219
  Alert.add_member(:resource_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ResourceArn"))
@@ -14,8 +14,7 @@ module Aws::MediaTailor
14
14
  #
15
15
  # @!attribute [rw] access_type
16
16
  # The type of authentication used to access content from
17
- # `HttpConfiguration::BaseUrl` on your source location. Accepted
18
- # value: `S3_SIGV4`.
17
+ # `HttpConfiguration::BaseUrl` on your source location.
19
18
  #
20
19
  # `S3_SIGV4` - AWS Signature Version 4 authentication for Amazon S3
21
20
  # hosted virtual-style access. If your source location base URL is an
@@ -39,6 +38,47 @@ module Aws::MediaTailor
39
38
  # • The caller of the API must have s3:GetObject IAM permissions to
40
39
  # read all top level manifests referenced by your MediaTailor
41
40
  # VodSource packaging configurations.
41
+ #
42
+ # `AUTODETECT_SIGV4` - AWS Signature Version 4 authentication for a
43
+ # set of supported services: MediaPackage Version 2 and Amazon S3
44
+ # hosted virtual-style access. If your source location base URL is a
45
+ # MediaPackage Version 2 endpoint or an Amazon S3 bucket, MediaTailor
46
+ # can use AWS Signature Version 4 (SigV4) authentication to access the
47
+ # resource where your source content is stored.
48
+ #
49
+ # Before you can use `AUTODETECT_SIGV4` with a MediaPackage Version 2
50
+ # endpoint, you must meet these requirements:
51
+ #
52
+ # • You must grant MediaTailor access to your MediaPackage endpoint by
53
+ # granting `mediatailor.amazonaws.com` principal access in an Origin
54
+ # Access policy on the endpoint.
55
+ #
56
+ # • Your MediaTailor source location base URL must be a MediaPackage
57
+ # V2 endpoint.
58
+ #
59
+ # • The caller of the API must have `mediapackagev2:GetObject` IAM
60
+ # permissions to read all top level manifests referenced by the
61
+ # MediaTailor source packaging configurations.
62
+ #
63
+ # Before you can use `AUTODETECT_SIGV4` with an Amazon S3 bucket, you
64
+ # must meet these requirements:
65
+ #
66
+ # • You must grant MediaTailor access to your S3 bucket by granting
67
+ # `mediatailor.amazonaws.com` principal access in IAM. For more
68
+ # information about configuring access in IAM, see [Access
69
+ # management][1] in the *IAM User Guide.*.
70
+ #
71
+ # • The `mediatailor.amazonaws.com` service principal must have
72
+ # permissions to read all top-level manifests referenced by the
73
+ # `VodSource` packaging configurations.
74
+ #
75
+ # • The caller of the API must have `s3:GetObject` IAM permissions to
76
+ # read all top level manifests referenced by your MediaTailor
77
+ # `VodSource` packaging configurations.
78
+ #
79
+ #
80
+ #
81
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html
42
82
  # @return [String]
43
83
  #
44
84
  # @!attribute [rw] secrets_manager_access_token_configuration
@@ -138,6 +178,10 @@ module Aws::MediaTailor
138
178
  # reason for the alert.
139
179
  # @return [String]
140
180
  #
181
+ # @!attribute [rw] category
182
+ # The category that MediaTailor assigns to the alert.
183
+ # @return [String]
184
+ #
141
185
  # @!attribute [rw] last_modified_time
142
186
  # The timestamp when the alert was last modified.
143
187
  # @return [Time]
@@ -155,6 +199,7 @@ module Aws::MediaTailor
155
199
  class Alert < Struct.new(
156
200
  :alert_code,
157
201
  :alert_message,
202
+ :category,
158
203
  :last_modified_time,
159
204
  :related_resource_arns,
160
205
  :resource_arn)
@@ -2170,7 +2215,7 @@ module Aws::MediaTailor
2170
2215
  # @return [String]
2171
2216
  #
2172
2217
  # @!attribute [rw] value
2173
- # For `SCTE35_ENHANCED` output, defines a vaue. MediaTailor; takes
2218
+ # For `SCTE35_ENHANCED` output, defines a value. MediaTailor; takes
2174
2219
  # this value, and its associated key, and generates the key/value pair
2175
2220
  # within the `EXT-X-ASSET`tag. If you specify a value, you must also
2176
2221
  # specify a corresponding key.
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-mediatailor/customizations'
52
52
  # @!group service
53
53
  module Aws::MediaTailor
54
54
 
55
- GEM_VERSION = '1.67.0'
55
+ GEM_VERSION = '1.69.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediatailor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.67.0
4
+ version: 1.69.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: 2023-07-11 00:00:00.000000000 Z
11
+ date: 2023-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core