aws-sdk-mediapackage 1.57.0 → 1.58.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: 81832e94b8ab613fb9e284158c1a00d668d9fcc44de7f28153e7c950e184cfbc
4
- data.tar.gz: 307e950ff9db0b553460bbfb23277b38819d4d8cdf9a8bcee5f23966fbcd8a33
3
+ metadata.gz: 9a15c2b3bada1dff084371da815567a5479160cfb5ecf7ae0dc9024865681d76
4
+ data.tar.gz: 6044aaaef84e8e795e8d29f9ee109e47ee4770f4cb179c084dc253d5069e11dd
5
5
  SHA512:
6
- metadata.gz: '09f54fa9745991220681609b8d00eae51282c3fb023e12860767a4770bd7939fda1d0483b2cbd5b574495bbb9030fcc2b90e6a71d8403a10ae8e8d32f9596eef'
7
- data.tar.gz: c79044159ac52feb0348c3159dd458b80dff413b2354e67ca15dd38753a7b4323e88caeb45e26f89af9927b807b7cdfe44d6cedb29e9fe1c43850e2a267d107d
6
+ metadata.gz: 9e3738fde5ecb650ab65266940cef813ee8b6fa7bbd30ef72cf10303a3708027cffa6ce03cfd6180b5d00dfd16c1a6f5e67d247ba3c2759a9ba1c686eb6df2b1
7
+ data.tar.gz: 27f109c914159049413591cbedef3ed4f1519eef77b6869be9b145228c1646fc34190ca913804a6e2c388e15ab2f721c6fba85b884435c514e0d77dd19abc4f3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.58.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.57.0 (2022-10-25)
5
12
  ------------------
6
13
 
@@ -300,4 +307,4 @@ Unreleased Changes
300
307
  1.0.0 (2017-11-27)
301
308
  ------------------
302
309
 
303
- * Feature - Initial release of `aws-sdk-mediapackage`.
310
+ * Feature - Initial release of `aws-sdk-mediapackage`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.57.0
1
+ 1.58.0
@@ -1923,7 +1923,7 @@ module Aws::MediaPackage
1923
1923
  params: params,
1924
1924
  config: config)
1925
1925
  context[:gem_name] = 'aws-sdk-mediapackage'
1926
- context[:gem_version] = '1.57.0'
1926
+ context[:gem_version] = '1.58.0'
1927
1927
  Seahorse::Client::Request.new(handlers, context)
1928
1928
  end
1929
1929
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::MediaPackage
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://mediapackage-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://mediapackage-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://mediapackage.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://mediapackage.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL21lZGlhcGFja2FnZS1maXBzLntSZWdpb259
77
- LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3Bl
78
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0s
79
- eyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sg
80
- YXJlIGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBw
81
- b3J0IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlv
82
- bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVz
83
- ZUZJUFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
84
- aXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7
85
- ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3Vs
86
- dCJ9LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMi
87
- Olt7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
88
- b25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9tZWRp
89
- YXBhY2thZ2UtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1
90
- ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoi
91
- ZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBT
92
- IGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBv
93
- cnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJm
94
- biI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3Rh
95
- Y2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
96
- b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZu
97
- IjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9
98
- LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxl
99
- cyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBz
100
- Oi8vbWVkaWFwYWNrYWdlLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVh
101
- bFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7
102
- fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJy
103
- b3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24g
104
- ZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19
105
- LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8v
106
- bWVkaWFwYWNrYWdlLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3Vm
107
- Zml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJl
108
- bmRwb2ludCJ9XX1dfQ==
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -12,14 +12,6 @@ module Aws::MediaPackage
12
12
 
13
13
  # CDN Authorization credentials
14
14
  #
15
- # @note When making an API call, you may pass Authorization
16
- # data as a hash:
17
- #
18
- # {
19
- # cdn_identifier_secret: "__string", # required
20
- # secrets_role_arn: "__string", # required
21
- # }
22
- #
23
15
  # @!attribute [rw] cdn_identifier_secret
24
16
  # The Amazon Resource Name (ARN) for the secret in Secrets Manager
25
17
  # that your Content Distribution Network (CDN) uses for authorization
@@ -145,26 +137,6 @@ module Aws::MediaPackage
145
137
 
146
138
  # A Common Media Application Format (CMAF) encryption configuration.
147
139
  #
148
- # @note When making an API call, you may pass CmafEncryption
149
- # data as a hash:
150
- #
151
- # {
152
- # constant_initialization_vector: "__string",
153
- # encryption_method: "SAMPLE_AES", # accepts SAMPLE_AES, AES_CTR
154
- # key_rotation_interval_seconds: 1,
155
- # speke_key_provider: { # required
156
- # certificate_arn: "__string",
157
- # encryption_contract_configuration: {
158
- # preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1, PRESET-AUDIO-2, PRESET-AUDIO-3, SHARED, UNENCRYPTED
159
- # preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1, PRESET-VIDEO-2, PRESET-VIDEO-3, PRESET-VIDEO-4, PRESET-VIDEO-5, PRESET-VIDEO-6, PRESET-VIDEO-7, PRESET-VIDEO-8, SHARED, UNENCRYPTED
160
- # },
161
- # resource_id: "__string", # required
162
- # role_arn: "__string", # required
163
- # system_ids: ["__string"], # required
164
- # url: "__string", # required
165
- # },
166
- # }
167
- #
168
140
  # @!attribute [rw] constant_initialization_vector
169
141
  # An optional 128-bit, 16-byte hex value represented by a 32-character
170
142
  # string, used in conjunction with the key for encrypting blocks. If
@@ -235,48 +207,6 @@ module Aws::MediaPackage
235
207
 
236
208
  # A Common Media Application Format (CMAF) packaging configuration.
237
209
  #
238
- # @note When making an API call, you may pass CmafPackageCreateOrUpdateParameters
239
- # data as a hash:
240
- #
241
- # {
242
- # encryption: {
243
- # constant_initialization_vector: "__string",
244
- # encryption_method: "SAMPLE_AES", # accepts SAMPLE_AES, AES_CTR
245
- # key_rotation_interval_seconds: 1,
246
- # speke_key_provider: { # required
247
- # certificate_arn: "__string",
248
- # encryption_contract_configuration: {
249
- # preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1, PRESET-AUDIO-2, PRESET-AUDIO-3, SHARED, UNENCRYPTED
250
- # preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1, PRESET-VIDEO-2, PRESET-VIDEO-3, PRESET-VIDEO-4, PRESET-VIDEO-5, PRESET-VIDEO-6, PRESET-VIDEO-7, PRESET-VIDEO-8, SHARED, UNENCRYPTED
251
- # },
252
- # resource_id: "__string", # required
253
- # role_arn: "__string", # required
254
- # system_ids: ["__string"], # required
255
- # url: "__string", # required
256
- # },
257
- # },
258
- # hls_manifests: [
259
- # {
260
- # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
261
- # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
262
- # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
263
- # id: "__string", # required
264
- # include_iframe_only_stream: false,
265
- # manifest_name: "__string",
266
- # playlist_type: "NONE", # accepts NONE, EVENT, VOD
267
- # playlist_window_seconds: 1,
268
- # program_date_time_interval_seconds: 1,
269
- # },
270
- # ],
271
- # segment_duration_seconds: 1,
272
- # segment_prefix: "__string",
273
- # stream_selection: {
274
- # max_video_bits_per_second: 1,
275
- # min_video_bits_per_second: 1,
276
- # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
277
- # },
278
- # }
279
- #
280
210
  # @!attribute [rw] encryption
281
211
  # A Common Media Application Format (CMAF) encryption configuration.
282
212
  # @return [Types::CmafEncryption]
@@ -330,19 +260,6 @@ module Aws::MediaPackage
330
260
  include Aws::Structure
331
261
  end
332
262
 
333
- # @note When making an API call, you may pass ConfigureLogsRequest
334
- # data as a hash:
335
- #
336
- # {
337
- # egress_access_logs: {
338
- # log_group_name: "__string",
339
- # },
340
- # id: "__string", # required
341
- # ingress_access_logs: {
342
- # log_group_name: "__string",
343
- # },
344
- # }
345
- #
346
263
  # @!attribute [rw] egress_access_logs
347
264
  # Configure egress access logging.
348
265
  # @return [Types::EgressAccessLogs]
@@ -403,17 +320,6 @@ module Aws::MediaPackage
403
320
  include Aws::Structure
404
321
  end
405
322
 
406
- # @note When making an API call, you may pass CreateChannelRequest
407
- # data as a hash:
408
- #
409
- # {
410
- # description: "__string",
411
- # id: "__string", # required
412
- # tags: {
413
- # "__string" => "__string",
414
- # },
415
- # }
416
- #
417
323
  # @!attribute [rw] description
418
324
  # @return [String]
419
325
  #
@@ -473,21 +379,6 @@ module Aws::MediaPackage
473
379
  include Aws::Structure
474
380
  end
475
381
 
476
- # @note When making an API call, you may pass CreateHarvestJobRequest
477
- # data as a hash:
478
- #
479
- # {
480
- # end_time: "__string", # required
481
- # id: "__string", # required
482
- # origin_endpoint_id: "__string", # required
483
- # s3_destination: { # required
484
- # bucket_name: "__string", # required
485
- # manifest_key: "__string", # required
486
- # role_arn: "__string", # required
487
- # },
488
- # start_time: "__string", # required
489
- # }
490
- #
491
382
  # @!attribute [rw] end_time
492
383
  # @return [String]
493
384
  #
@@ -562,156 +453,6 @@ module Aws::MediaPackage
562
453
  include Aws::Structure
563
454
  end
564
455
 
565
- # @note When making an API call, you may pass CreateOriginEndpointRequest
566
- # data as a hash:
567
- #
568
- # {
569
- # authorization: {
570
- # cdn_identifier_secret: "__string", # required
571
- # secrets_role_arn: "__string", # required
572
- # },
573
- # channel_id: "__string", # required
574
- # cmaf_package: {
575
- # encryption: {
576
- # constant_initialization_vector: "__string",
577
- # encryption_method: "SAMPLE_AES", # accepts SAMPLE_AES, AES_CTR
578
- # key_rotation_interval_seconds: 1,
579
- # speke_key_provider: { # required
580
- # certificate_arn: "__string",
581
- # encryption_contract_configuration: {
582
- # preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1, PRESET-AUDIO-2, PRESET-AUDIO-3, SHARED, UNENCRYPTED
583
- # preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1, PRESET-VIDEO-2, PRESET-VIDEO-3, PRESET-VIDEO-4, PRESET-VIDEO-5, PRESET-VIDEO-6, PRESET-VIDEO-7, PRESET-VIDEO-8, SHARED, UNENCRYPTED
584
- # },
585
- # resource_id: "__string", # required
586
- # role_arn: "__string", # required
587
- # system_ids: ["__string"], # required
588
- # url: "__string", # required
589
- # },
590
- # },
591
- # hls_manifests: [
592
- # {
593
- # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
594
- # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
595
- # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
596
- # id: "__string", # required
597
- # include_iframe_only_stream: false,
598
- # manifest_name: "__string",
599
- # playlist_type: "NONE", # accepts NONE, EVENT, VOD
600
- # playlist_window_seconds: 1,
601
- # program_date_time_interval_seconds: 1,
602
- # },
603
- # ],
604
- # segment_duration_seconds: 1,
605
- # segment_prefix: "__string",
606
- # stream_selection: {
607
- # max_video_bits_per_second: 1,
608
- # min_video_bits_per_second: 1,
609
- # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
610
- # },
611
- # },
612
- # dash_package: {
613
- # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
614
- # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
615
- # encryption: {
616
- # key_rotation_interval_seconds: 1,
617
- # speke_key_provider: { # required
618
- # certificate_arn: "__string",
619
- # encryption_contract_configuration: {
620
- # preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1, PRESET-AUDIO-2, PRESET-AUDIO-3, SHARED, UNENCRYPTED
621
- # preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1, PRESET-VIDEO-2, PRESET-VIDEO-3, PRESET-VIDEO-4, PRESET-VIDEO-5, PRESET-VIDEO-6, PRESET-VIDEO-7, PRESET-VIDEO-8, SHARED, UNENCRYPTED
622
- # },
623
- # resource_id: "__string", # required
624
- # role_arn: "__string", # required
625
- # system_ids: ["__string"], # required
626
- # url: "__string", # required
627
- # },
628
- # },
629
- # include_iframe_only_stream: false,
630
- # manifest_layout: "FULL", # accepts FULL, COMPACT
631
- # manifest_window_seconds: 1,
632
- # min_buffer_time_seconds: 1,
633
- # min_update_period_seconds: 1,
634
- # period_triggers: ["ADS"], # accepts ADS
635
- # profile: "NONE", # accepts NONE, HBBTV_1_5, HYBRIDCAST, DVB_DASH_2014
636
- # segment_duration_seconds: 1,
637
- # segment_template_format: "NUMBER_WITH_TIMELINE", # accepts NUMBER_WITH_TIMELINE, TIME_WITH_TIMELINE, NUMBER_WITH_DURATION
638
- # stream_selection: {
639
- # max_video_bits_per_second: 1,
640
- # min_video_bits_per_second: 1,
641
- # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
642
- # },
643
- # suggested_presentation_delay_seconds: 1,
644
- # utc_timing: "NONE", # accepts NONE, HTTP-HEAD, HTTP-ISO, HTTP-XSDATE
645
- # utc_timing_uri: "__string",
646
- # },
647
- # description: "__string",
648
- # hls_package: {
649
- # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
650
- # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
651
- # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
652
- # encryption: {
653
- # constant_initialization_vector: "__string",
654
- # encryption_method: "AES_128", # accepts AES_128, SAMPLE_AES
655
- # key_rotation_interval_seconds: 1,
656
- # repeat_ext_x_key: false,
657
- # speke_key_provider: { # required
658
- # certificate_arn: "__string",
659
- # encryption_contract_configuration: {
660
- # preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1, PRESET-AUDIO-2, PRESET-AUDIO-3, SHARED, UNENCRYPTED
661
- # preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1, PRESET-VIDEO-2, PRESET-VIDEO-3, PRESET-VIDEO-4, PRESET-VIDEO-5, PRESET-VIDEO-6, PRESET-VIDEO-7, PRESET-VIDEO-8, SHARED, UNENCRYPTED
662
- # },
663
- # resource_id: "__string", # required
664
- # role_arn: "__string", # required
665
- # system_ids: ["__string"], # required
666
- # url: "__string", # required
667
- # },
668
- # },
669
- # include_dvb_subtitles: false,
670
- # include_iframe_only_stream: false,
671
- # playlist_type: "NONE", # accepts NONE, EVENT, VOD
672
- # playlist_window_seconds: 1,
673
- # program_date_time_interval_seconds: 1,
674
- # segment_duration_seconds: 1,
675
- # stream_selection: {
676
- # max_video_bits_per_second: 1,
677
- # min_video_bits_per_second: 1,
678
- # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
679
- # },
680
- # use_audio_rendition_group: false,
681
- # },
682
- # id: "__string", # required
683
- # manifest_name: "__string",
684
- # mss_package: {
685
- # encryption: {
686
- # speke_key_provider: { # required
687
- # certificate_arn: "__string",
688
- # encryption_contract_configuration: {
689
- # preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1, PRESET-AUDIO-2, PRESET-AUDIO-3, SHARED, UNENCRYPTED
690
- # preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1, PRESET-VIDEO-2, PRESET-VIDEO-3, PRESET-VIDEO-4, PRESET-VIDEO-5, PRESET-VIDEO-6, PRESET-VIDEO-7, PRESET-VIDEO-8, SHARED, UNENCRYPTED
691
- # },
692
- # resource_id: "__string", # required
693
- # role_arn: "__string", # required
694
- # system_ids: ["__string"], # required
695
- # url: "__string", # required
696
- # },
697
- # },
698
- # manifest_window_seconds: 1,
699
- # segment_duration_seconds: 1,
700
- # stream_selection: {
701
- # max_video_bits_per_second: 1,
702
- # min_video_bits_per_second: 1,
703
- # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
704
- # },
705
- # },
706
- # origination: "ALLOW", # accepts ALLOW, DENY
707
- # startover_window_seconds: 1,
708
- # tags: {
709
- # "__string" => "__string",
710
- # },
711
- # time_delay_seconds: 1,
712
- # whitelist: ["__string"],
713
- # }
714
- #
715
456
  # @!attribute [rw] authorization
716
457
  # CDN Authorization credentials
717
458
  # @return [Types::Authorization]
@@ -863,24 +604,6 @@ module Aws::MediaPackage
863
604
  # A Dynamic Adaptive Streaming over HTTP (DASH) encryption
864
605
  # configuration.
865
606
  #
866
- # @note When making an API call, you may pass DashEncryption
867
- # data as a hash:
868
- #
869
- # {
870
- # key_rotation_interval_seconds: 1,
871
- # speke_key_provider: { # required
872
- # certificate_arn: "__string",
873
- # encryption_contract_configuration: {
874
- # preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1, PRESET-AUDIO-2, PRESET-AUDIO-3, SHARED, UNENCRYPTED
875
- # preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1, PRESET-VIDEO-2, PRESET-VIDEO-3, PRESET-VIDEO-4, PRESET-VIDEO-5, PRESET-VIDEO-6, PRESET-VIDEO-7, PRESET-VIDEO-8, SHARED, UNENCRYPTED
876
- # },
877
- # resource_id: "__string", # required
878
- # role_arn: "__string", # required
879
- # system_ids: ["__string"], # required
880
- # url: "__string", # required
881
- # },
882
- # }
883
- #
884
607
  # @!attribute [rw] key_rotation_interval_seconds
885
608
  # Time (in seconds) between each encryption key rotation.
886
609
  # @return [Integer]
@@ -902,45 +625,6 @@ module Aws::MediaPackage
902
625
 
903
626
  # A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
904
627
  #
905
- # @note When making an API call, you may pass DashPackage
906
- # data as a hash:
907
- #
908
- # {
909
- # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
910
- # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
911
- # encryption: {
912
- # key_rotation_interval_seconds: 1,
913
- # speke_key_provider: { # required
914
- # certificate_arn: "__string",
915
- # encryption_contract_configuration: {
916
- # preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1, PRESET-AUDIO-2, PRESET-AUDIO-3, SHARED, UNENCRYPTED
917
- # preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1, PRESET-VIDEO-2, PRESET-VIDEO-3, PRESET-VIDEO-4, PRESET-VIDEO-5, PRESET-VIDEO-6, PRESET-VIDEO-7, PRESET-VIDEO-8, SHARED, UNENCRYPTED
918
- # },
919
- # resource_id: "__string", # required
920
- # role_arn: "__string", # required
921
- # system_ids: ["__string"], # required
922
- # url: "__string", # required
923
- # },
924
- # },
925
- # include_iframe_only_stream: false,
926
- # manifest_layout: "FULL", # accepts FULL, COMPACT
927
- # manifest_window_seconds: 1,
928
- # min_buffer_time_seconds: 1,
929
- # min_update_period_seconds: 1,
930
- # period_triggers: ["ADS"], # accepts ADS
931
- # profile: "NONE", # accepts NONE, HBBTV_1_5, HYBRIDCAST, DVB_DASH_2014
932
- # segment_duration_seconds: 1,
933
- # segment_template_format: "NUMBER_WITH_TIMELINE", # accepts NUMBER_WITH_TIMELINE, TIME_WITH_TIMELINE, NUMBER_WITH_DURATION
934
- # stream_selection: {
935
- # max_video_bits_per_second: 1,
936
- # min_video_bits_per_second: 1,
937
- # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
938
- # },
939
- # suggested_presentation_delay_seconds: 1,
940
- # utc_timing: "NONE", # accepts NONE, HTTP-HEAD, HTTP-ISO, HTTP-XSDATE
941
- # utc_timing_uri: "__string",
942
- # }
943
- #
944
628
  # @!attribute [rw] ad_triggers
945
629
  # A list of SCTE-35 message types that are treated as ad markers in
946
630
  # the output. If empty, no ad markers are output. Specify multiple
@@ -1065,13 +749,6 @@ module Aws::MediaPackage
1065
749
  include Aws::Structure
1066
750
  end
1067
751
 
1068
- # @note When making an API call, you may pass DeleteChannelRequest
1069
- # data as a hash:
1070
- #
1071
- # {
1072
- # id: "__string", # required
1073
- # }
1074
- #
1075
752
  # @!attribute [rw] id
1076
753
  # @return [String]
1077
754
  #
@@ -1087,13 +764,6 @@ module Aws::MediaPackage
1087
764
  #
1088
765
  class DeleteChannelResponse < Aws::EmptyStructure; end
1089
766
 
1090
- # @note When making an API call, you may pass DeleteOriginEndpointRequest
1091
- # data as a hash:
1092
- #
1093
- # {
1094
- # id: "__string", # required
1095
- # }
1096
- #
1097
767
  # @!attribute [rw] id
1098
768
  # @return [String]
1099
769
  #
@@ -1109,13 +779,6 @@ module Aws::MediaPackage
1109
779
  #
1110
780
  class DeleteOriginEndpointResponse < Aws::EmptyStructure; end
1111
781
 
1112
- # @note When making an API call, you may pass DescribeChannelRequest
1113
- # data as a hash:
1114
- #
1115
- # {
1116
- # id: "__string", # required
1117
- # }
1118
- #
1119
782
  # @!attribute [rw] id
1120
783
  # @return [String]
1121
784
  #
@@ -1166,13 +829,6 @@ module Aws::MediaPackage
1166
829
  include Aws::Structure
1167
830
  end
1168
831
 
1169
- # @note When making an API call, you may pass DescribeHarvestJobRequest
1170
- # data as a hash:
1171
- #
1172
- # {
1173
- # id: "__string", # required
1174
- # }
1175
- #
1176
832
  # @!attribute [rw] id
1177
833
  # @return [String]
1178
834
  #
@@ -1229,13 +885,6 @@ module Aws::MediaPackage
1229
885
  include Aws::Structure
1230
886
  end
1231
887
 
1232
- # @note When making an API call, you may pass DescribeOriginEndpointRequest
1233
- # data as a hash:
1234
- #
1235
- # {
1236
- # id: "__string", # required
1237
- # }
1238
- #
1239
888
  # @!attribute [rw] id
1240
889
  # @return [String]
1241
890
  #
@@ -1327,13 +976,6 @@ module Aws::MediaPackage
1327
976
 
1328
977
  # Configure egress access logging.
1329
978
  #
1330
- # @note When making an API call, you may pass EgressAccessLogs
1331
- # data as a hash:
1332
- #
1333
- # {
1334
- # log_group_name: "__string",
1335
- # }
1336
- #
1337
979
  # @!attribute [rw] log_group_name
1338
980
  # Customize the log group name.
1339
981
  # @return [String]
@@ -1357,14 +999,6 @@ module Aws::MediaPackage
1357
999
  # You must disable key rotation for this endpoint by setting
1358
1000
  # keyRotationIntervalSeconds to 0.
1359
1001
  #
1360
- # @note When making an API call, you may pass EncryptionContractConfiguration
1361
- # data as a hash:
1362
- #
1363
- # {
1364
- # preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1, PRESET-AUDIO-2, PRESET-AUDIO-3, SHARED, UNENCRYPTED
1365
- # preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1, PRESET-VIDEO-2, PRESET-VIDEO-3, PRESET-VIDEO-4, PRESET-VIDEO-5, PRESET-VIDEO-6, PRESET-VIDEO-7, PRESET-VIDEO-8, SHARED, UNENCRYPTED
1366
- # }
1367
- #
1368
1002
  # @!attribute [rw] preset_speke_20_audio
1369
1003
  # A collection of audio encryption presets.
1370
1004
  # @return [String]
@@ -1512,27 +1146,6 @@ module Aws::MediaPackage
1512
1146
 
1513
1147
  # An HTTP Live Streaming (HLS) encryption configuration.
1514
1148
  #
1515
- # @note When making an API call, you may pass HlsEncryption
1516
- # data as a hash:
1517
- #
1518
- # {
1519
- # constant_initialization_vector: "__string",
1520
- # encryption_method: "AES_128", # accepts AES_128, SAMPLE_AES
1521
- # key_rotation_interval_seconds: 1,
1522
- # repeat_ext_x_key: false,
1523
- # speke_key_provider: { # required
1524
- # certificate_arn: "__string",
1525
- # encryption_contract_configuration: {
1526
- # preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1, PRESET-AUDIO-2, PRESET-AUDIO-3, SHARED, UNENCRYPTED
1527
- # preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1, PRESET-VIDEO-2, PRESET-VIDEO-3, PRESET-VIDEO-4, PRESET-VIDEO-5, PRESET-VIDEO-6, PRESET-VIDEO-7, PRESET-VIDEO-8, SHARED, UNENCRYPTED
1528
- # },
1529
- # resource_id: "__string", # required
1530
- # role_arn: "__string", # required
1531
- # system_ids: ["__string"], # required
1532
- # url: "__string", # required
1533
- # },
1534
- # }
1535
- #
1536
1149
  # @!attribute [rw] constant_initialization_vector
1537
1150
  # A constant initialization vector for encryption (optional). When not
1538
1151
  # specified the initialization vector will be periodically rotated.
@@ -1656,21 +1269,6 @@ module Aws::MediaPackage
1656
1269
 
1657
1270
  # A HTTP Live Streaming (HLS) manifest configuration.
1658
1271
  #
1659
- # @note When making an API call, you may pass HlsManifestCreateOrUpdateParameters
1660
- # data as a hash:
1661
- #
1662
- # {
1663
- # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
1664
- # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
1665
- # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
1666
- # id: "__string", # required
1667
- # include_iframe_only_stream: false,
1668
- # manifest_name: "__string",
1669
- # playlist_type: "NONE", # accepts NONE, EVENT, VOD
1670
- # playlist_window_seconds: 1,
1671
- # program_date_time_interval_seconds: 1,
1672
- # }
1673
- #
1674
1272
  # @!attribute [rw] ad_markers
1675
1273
  # This setting controls how ad markers are included in the packaged
1676
1274
  # OriginEndpoint. "NONE" will omit all SCTE-35 ad markers from the
@@ -1759,44 +1357,6 @@ module Aws::MediaPackage
1759
1357
 
1760
1358
  # An HTTP Live Streaming (HLS) packaging configuration.
1761
1359
  #
1762
- # @note When making an API call, you may pass HlsPackage
1763
- # data as a hash:
1764
- #
1765
- # {
1766
- # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
1767
- # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
1768
- # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
1769
- # encryption: {
1770
- # constant_initialization_vector: "__string",
1771
- # encryption_method: "AES_128", # accepts AES_128, SAMPLE_AES
1772
- # key_rotation_interval_seconds: 1,
1773
- # repeat_ext_x_key: false,
1774
- # speke_key_provider: { # required
1775
- # certificate_arn: "__string",
1776
- # encryption_contract_configuration: {
1777
- # preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1, PRESET-AUDIO-2, PRESET-AUDIO-3, SHARED, UNENCRYPTED
1778
- # preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1, PRESET-VIDEO-2, PRESET-VIDEO-3, PRESET-VIDEO-4, PRESET-VIDEO-5, PRESET-VIDEO-6, PRESET-VIDEO-7, PRESET-VIDEO-8, SHARED, UNENCRYPTED
1779
- # },
1780
- # resource_id: "__string", # required
1781
- # role_arn: "__string", # required
1782
- # system_ids: ["__string"], # required
1783
- # url: "__string", # required
1784
- # },
1785
- # },
1786
- # include_dvb_subtitles: false,
1787
- # include_iframe_only_stream: false,
1788
- # playlist_type: "NONE", # accepts NONE, EVENT, VOD
1789
- # playlist_window_seconds: 1,
1790
- # program_date_time_interval_seconds: 1,
1791
- # segment_duration_seconds: 1,
1792
- # stream_selection: {
1793
- # max_video_bits_per_second: 1,
1794
- # min_video_bits_per_second: 1,
1795
- # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
1796
- # },
1797
- # use_audio_rendition_group: false,
1798
- # }
1799
- #
1800
1360
  # @!attribute [rw] ad_markers
1801
1361
  # This setting controls how ad markers are included in the packaged
1802
1362
  # OriginEndpoint. "NONE" will omit all SCTE-35 ad markers from the
@@ -1929,13 +1489,6 @@ module Aws::MediaPackage
1929
1489
 
1930
1490
  # Configure ingress access logging.
1931
1491
  #
1932
- # @note When making an API call, you may pass IngressAccessLogs
1933
- # data as a hash:
1934
- #
1935
- # {
1936
- # log_group_name: "__string",
1937
- # }
1938
- #
1939
1492
  # @!attribute [rw] log_group_name
1940
1493
  # Customize the log group name.
1941
1494
  # @return [String]
@@ -1959,14 +1512,6 @@ module Aws::MediaPackage
1959
1512
  include Aws::Structure
1960
1513
  end
1961
1514
 
1962
- # @note When making an API call, you may pass ListChannelsRequest
1963
- # data as a hash:
1964
- #
1965
- # {
1966
- # max_results: 1,
1967
- # next_token: "__string",
1968
- # }
1969
- #
1970
1515
  # @!attribute [rw] max_results
1971
1516
  # @return [Integer]
1972
1517
  #
@@ -1997,16 +1542,6 @@ module Aws::MediaPackage
1997
1542
  include Aws::Structure
1998
1543
  end
1999
1544
 
2000
- # @note When making an API call, you may pass ListHarvestJobsRequest
2001
- # data as a hash:
2002
- #
2003
- # {
2004
- # include_channel_id: "__string",
2005
- # include_status: "__string",
2006
- # max_results: 1,
2007
- # next_token: "__string",
2008
- # }
2009
- #
2010
1545
  # @!attribute [rw] include_channel_id
2011
1546
  # @return [String]
2012
1547
  #
@@ -2045,15 +1580,6 @@ module Aws::MediaPackage
2045
1580
  include Aws::Structure
2046
1581
  end
2047
1582
 
2048
- # @note When making an API call, you may pass ListOriginEndpointsRequest
2049
- # data as a hash:
2050
- #
2051
- # {
2052
- # channel_id: "__string",
2053
- # max_results: 1,
2054
- # next_token: "__string",
2055
- # }
2056
- #
2057
1583
  # @!attribute [rw] channel_id
2058
1584
  # @return [String]
2059
1585
  #
@@ -2088,13 +1614,6 @@ module Aws::MediaPackage
2088
1614
  include Aws::Structure
2089
1615
  end
2090
1616
 
2091
- # @note When making an API call, you may pass ListTagsForResourceRequest
2092
- # data as a hash:
2093
- #
2094
- # {
2095
- # resource_arn: "__string", # required
2096
- # }
2097
- #
2098
1617
  # @!attribute [rw] resource_arn
2099
1618
  # @return [String]
2100
1619
  #
@@ -2119,23 +1638,6 @@ module Aws::MediaPackage
2119
1638
 
2120
1639
  # A Microsoft Smooth Streaming (MSS) encryption configuration.
2121
1640
  #
2122
- # @note When making an API call, you may pass MssEncryption
2123
- # data as a hash:
2124
- #
2125
- # {
2126
- # speke_key_provider: { # required
2127
- # certificate_arn: "__string",
2128
- # encryption_contract_configuration: {
2129
- # preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1, PRESET-AUDIO-2, PRESET-AUDIO-3, SHARED, UNENCRYPTED
2130
- # preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1, PRESET-VIDEO-2, PRESET-VIDEO-3, PRESET-VIDEO-4, PRESET-VIDEO-5, PRESET-VIDEO-6, PRESET-VIDEO-7, PRESET-VIDEO-8, SHARED, UNENCRYPTED
2131
- # },
2132
- # resource_id: "__string", # required
2133
- # role_arn: "__string", # required
2134
- # system_ids: ["__string"], # required
2135
- # url: "__string", # required
2136
- # },
2137
- # }
2138
- #
2139
1641
  # @!attribute [rw] speke_key_provider
2140
1642
  # A configuration for accessing an external Secure Packager and
2141
1643
  # Encoder Key Exchange (SPEKE) service that will provide encryption
@@ -2152,32 +1654,6 @@ module Aws::MediaPackage
2152
1654
 
2153
1655
  # A Microsoft Smooth Streaming (MSS) packaging configuration.
2154
1656
  #
2155
- # @note When making an API call, you may pass MssPackage
2156
- # data as a hash:
2157
- #
2158
- # {
2159
- # encryption: {
2160
- # speke_key_provider: { # required
2161
- # certificate_arn: "__string",
2162
- # encryption_contract_configuration: {
2163
- # preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1, PRESET-AUDIO-2, PRESET-AUDIO-3, SHARED, UNENCRYPTED
2164
- # preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1, PRESET-VIDEO-2, PRESET-VIDEO-3, PRESET-VIDEO-4, PRESET-VIDEO-5, PRESET-VIDEO-6, PRESET-VIDEO-7, PRESET-VIDEO-8, SHARED, UNENCRYPTED
2165
- # },
2166
- # resource_id: "__string", # required
2167
- # role_arn: "__string", # required
2168
- # system_ids: ["__string"], # required
2169
- # url: "__string", # required
2170
- # },
2171
- # },
2172
- # manifest_window_seconds: 1,
2173
- # segment_duration_seconds: 1,
2174
- # stream_selection: {
2175
- # max_video_bits_per_second: 1,
2176
- # min_video_bits_per_second: 1,
2177
- # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
2178
- # },
2179
- # }
2180
- #
2181
1657
  # @!attribute [rw] encryption
2182
1658
  # A Microsoft Smooth Streaming (MSS) encryption configuration.
2183
1659
  # @return [Types::MssEncryption]
@@ -2501,13 +1977,6 @@ module Aws::MediaPackage
2501
1977
  include Aws::Structure
2502
1978
  end
2503
1979
 
2504
- # @note When making an API call, you may pass RotateChannelCredentialsRequest
2505
- # data as a hash:
2506
- #
2507
- # {
2508
- # id: "__string", # required
2509
- # }
2510
- #
2511
1980
  # @!attribute [rw] id
2512
1981
  # @return [String]
2513
1982
  #
@@ -2558,14 +2027,6 @@ module Aws::MediaPackage
2558
2027
  include Aws::Structure
2559
2028
  end
2560
2029
 
2561
- # @note When making an API call, you may pass RotateIngestEndpointCredentialsRequest
2562
- # data as a hash:
2563
- #
2564
- # {
2565
- # id: "__string", # required
2566
- # ingest_endpoint_id: "__string", # required
2567
- # }
2568
- #
2569
2030
  # @!attribute [rw] id
2570
2031
  # @return [String]
2571
2032
  #
@@ -2623,15 +2084,6 @@ module Aws::MediaPackage
2623
2084
  # Configuration parameters for where in an S3 bucket to place the
2624
2085
  # harvested content
2625
2086
  #
2626
- # @note When making an API call, you may pass S3Destination
2627
- # data as a hash:
2628
- #
2629
- # {
2630
- # bucket_name: "__string", # required
2631
- # manifest_key: "__string", # required
2632
- # role_arn: "__string", # required
2633
- # }
2634
- #
2635
2087
  # @!attribute [rw] bucket_name
2636
2088
  # The name of an S3 bucket within which harvested content will be
2637
2089
  # exported
@@ -2670,21 +2122,6 @@ module Aws::MediaPackage
2670
2122
  # A configuration for accessing an external Secure Packager and Encoder
2671
2123
  # Key Exchange (SPEKE) service that will provide encryption keys.
2672
2124
  #
2673
- # @note When making an API call, you may pass SpekeKeyProvider
2674
- # data as a hash:
2675
- #
2676
- # {
2677
- # certificate_arn: "__string",
2678
- # encryption_contract_configuration: {
2679
- # preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1, PRESET-AUDIO-2, PRESET-AUDIO-3, SHARED, UNENCRYPTED
2680
- # preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1, PRESET-VIDEO-2, PRESET-VIDEO-3, PRESET-VIDEO-4, PRESET-VIDEO-5, PRESET-VIDEO-6, PRESET-VIDEO-7, PRESET-VIDEO-8, SHARED, UNENCRYPTED
2681
- # },
2682
- # resource_id: "__string", # required
2683
- # role_arn: "__string", # required
2684
- # system_ids: ["__string"], # required
2685
- # url: "__string", # required
2686
- # }
2687
- #
2688
2125
  # @!attribute [rw] certificate_arn
2689
2126
  # An Amazon Resource Name (ARN) of a Certificate Manager certificate
2690
2127
  # that MediaPackage will use for enforcing secure end-to-end data
@@ -2736,15 +2173,6 @@ module Aws::MediaPackage
2736
2173
 
2737
2174
  # A StreamSelection configuration.
2738
2175
  #
2739
- # @note When making an API call, you may pass StreamSelection
2740
- # data as a hash:
2741
- #
2742
- # {
2743
- # max_video_bits_per_second: 1,
2744
- # min_video_bits_per_second: 1,
2745
- # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
2746
- # }
2747
- #
2748
2176
  # @!attribute [rw] max_video_bits_per_second
2749
2177
  # The maximum video bitrate (bps) to include in output.
2750
2178
  # @return [Integer]
@@ -2767,16 +2195,6 @@ module Aws::MediaPackage
2767
2195
  include Aws::Structure
2768
2196
  end
2769
2197
 
2770
- # @note When making an API call, you may pass TagResourceRequest
2771
- # data as a hash:
2772
- #
2773
- # {
2774
- # resource_arn: "__string", # required
2775
- # tags: { # required
2776
- # "__string" => "__string",
2777
- # },
2778
- # }
2779
- #
2780
2198
  # @!attribute [rw] resource_arn
2781
2199
  # @return [String]
2782
2200
  #
@@ -2825,14 +2243,6 @@ module Aws::MediaPackage
2825
2243
  include Aws::Structure
2826
2244
  end
2827
2245
 
2828
- # @note When making an API call, you may pass UntagResourceRequest
2829
- # data as a hash:
2830
- #
2831
- # {
2832
- # resource_arn: "__string", # required
2833
- # tag_keys: ["__string"], # required
2834
- # }
2835
- #
2836
2246
  # @!attribute [rw] resource_arn
2837
2247
  # @return [String]
2838
2248
  #
@@ -2848,14 +2258,6 @@ module Aws::MediaPackage
2848
2258
  include Aws::Structure
2849
2259
  end
2850
2260
 
2851
- # @note When making an API call, you may pass UpdateChannelRequest
2852
- # data as a hash:
2853
- #
2854
- # {
2855
- # description: "__string",
2856
- # id: "__string", # required
2857
- # }
2858
- #
2859
2261
  # @!attribute [rw] description
2860
2262
  # @return [String]
2861
2263
  #
@@ -2910,152 +2312,6 @@ module Aws::MediaPackage
2910
2312
  include Aws::Structure
2911
2313
  end
2912
2314
 
2913
- # @note When making an API call, you may pass UpdateOriginEndpointRequest
2914
- # data as a hash:
2915
- #
2916
- # {
2917
- # authorization: {
2918
- # cdn_identifier_secret: "__string", # required
2919
- # secrets_role_arn: "__string", # required
2920
- # },
2921
- # cmaf_package: {
2922
- # encryption: {
2923
- # constant_initialization_vector: "__string",
2924
- # encryption_method: "SAMPLE_AES", # accepts SAMPLE_AES, AES_CTR
2925
- # key_rotation_interval_seconds: 1,
2926
- # speke_key_provider: { # required
2927
- # certificate_arn: "__string",
2928
- # encryption_contract_configuration: {
2929
- # preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1, PRESET-AUDIO-2, PRESET-AUDIO-3, SHARED, UNENCRYPTED
2930
- # preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1, PRESET-VIDEO-2, PRESET-VIDEO-3, PRESET-VIDEO-4, PRESET-VIDEO-5, PRESET-VIDEO-6, PRESET-VIDEO-7, PRESET-VIDEO-8, SHARED, UNENCRYPTED
2931
- # },
2932
- # resource_id: "__string", # required
2933
- # role_arn: "__string", # required
2934
- # system_ids: ["__string"], # required
2935
- # url: "__string", # required
2936
- # },
2937
- # },
2938
- # hls_manifests: [
2939
- # {
2940
- # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
2941
- # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
2942
- # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
2943
- # id: "__string", # required
2944
- # include_iframe_only_stream: false,
2945
- # manifest_name: "__string",
2946
- # playlist_type: "NONE", # accepts NONE, EVENT, VOD
2947
- # playlist_window_seconds: 1,
2948
- # program_date_time_interval_seconds: 1,
2949
- # },
2950
- # ],
2951
- # segment_duration_seconds: 1,
2952
- # segment_prefix: "__string",
2953
- # stream_selection: {
2954
- # max_video_bits_per_second: 1,
2955
- # min_video_bits_per_second: 1,
2956
- # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
2957
- # },
2958
- # },
2959
- # dash_package: {
2960
- # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
2961
- # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
2962
- # encryption: {
2963
- # key_rotation_interval_seconds: 1,
2964
- # speke_key_provider: { # required
2965
- # certificate_arn: "__string",
2966
- # encryption_contract_configuration: {
2967
- # preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1, PRESET-AUDIO-2, PRESET-AUDIO-3, SHARED, UNENCRYPTED
2968
- # preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1, PRESET-VIDEO-2, PRESET-VIDEO-3, PRESET-VIDEO-4, PRESET-VIDEO-5, PRESET-VIDEO-6, PRESET-VIDEO-7, PRESET-VIDEO-8, SHARED, UNENCRYPTED
2969
- # },
2970
- # resource_id: "__string", # required
2971
- # role_arn: "__string", # required
2972
- # system_ids: ["__string"], # required
2973
- # url: "__string", # required
2974
- # },
2975
- # },
2976
- # include_iframe_only_stream: false,
2977
- # manifest_layout: "FULL", # accepts FULL, COMPACT
2978
- # manifest_window_seconds: 1,
2979
- # min_buffer_time_seconds: 1,
2980
- # min_update_period_seconds: 1,
2981
- # period_triggers: ["ADS"], # accepts ADS
2982
- # profile: "NONE", # accepts NONE, HBBTV_1_5, HYBRIDCAST, DVB_DASH_2014
2983
- # segment_duration_seconds: 1,
2984
- # segment_template_format: "NUMBER_WITH_TIMELINE", # accepts NUMBER_WITH_TIMELINE, TIME_WITH_TIMELINE, NUMBER_WITH_DURATION
2985
- # stream_selection: {
2986
- # max_video_bits_per_second: 1,
2987
- # min_video_bits_per_second: 1,
2988
- # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
2989
- # },
2990
- # suggested_presentation_delay_seconds: 1,
2991
- # utc_timing: "NONE", # accepts NONE, HTTP-HEAD, HTTP-ISO, HTTP-XSDATE
2992
- # utc_timing_uri: "__string",
2993
- # },
2994
- # description: "__string",
2995
- # hls_package: {
2996
- # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
2997
- # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
2998
- # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
2999
- # encryption: {
3000
- # constant_initialization_vector: "__string",
3001
- # encryption_method: "AES_128", # accepts AES_128, SAMPLE_AES
3002
- # key_rotation_interval_seconds: 1,
3003
- # repeat_ext_x_key: false,
3004
- # speke_key_provider: { # required
3005
- # certificate_arn: "__string",
3006
- # encryption_contract_configuration: {
3007
- # preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1, PRESET-AUDIO-2, PRESET-AUDIO-3, SHARED, UNENCRYPTED
3008
- # preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1, PRESET-VIDEO-2, PRESET-VIDEO-3, PRESET-VIDEO-4, PRESET-VIDEO-5, PRESET-VIDEO-6, PRESET-VIDEO-7, PRESET-VIDEO-8, SHARED, UNENCRYPTED
3009
- # },
3010
- # resource_id: "__string", # required
3011
- # role_arn: "__string", # required
3012
- # system_ids: ["__string"], # required
3013
- # url: "__string", # required
3014
- # },
3015
- # },
3016
- # include_dvb_subtitles: false,
3017
- # include_iframe_only_stream: false,
3018
- # playlist_type: "NONE", # accepts NONE, EVENT, VOD
3019
- # playlist_window_seconds: 1,
3020
- # program_date_time_interval_seconds: 1,
3021
- # segment_duration_seconds: 1,
3022
- # stream_selection: {
3023
- # max_video_bits_per_second: 1,
3024
- # min_video_bits_per_second: 1,
3025
- # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
3026
- # },
3027
- # use_audio_rendition_group: false,
3028
- # },
3029
- # id: "__string", # required
3030
- # manifest_name: "__string",
3031
- # mss_package: {
3032
- # encryption: {
3033
- # speke_key_provider: { # required
3034
- # certificate_arn: "__string",
3035
- # encryption_contract_configuration: {
3036
- # preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1, PRESET-AUDIO-2, PRESET-AUDIO-3, SHARED, UNENCRYPTED
3037
- # preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1, PRESET-VIDEO-2, PRESET-VIDEO-3, PRESET-VIDEO-4, PRESET-VIDEO-5, PRESET-VIDEO-6, PRESET-VIDEO-7, PRESET-VIDEO-8, SHARED, UNENCRYPTED
3038
- # },
3039
- # resource_id: "__string", # required
3040
- # role_arn: "__string", # required
3041
- # system_ids: ["__string"], # required
3042
- # url: "__string", # required
3043
- # },
3044
- # },
3045
- # manifest_window_seconds: 1,
3046
- # segment_duration_seconds: 1,
3047
- # stream_selection: {
3048
- # max_video_bits_per_second: 1,
3049
- # min_video_bits_per_second: 1,
3050
- # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
3051
- # },
3052
- # },
3053
- # origination: "ALLOW", # accepts ALLOW, DENY
3054
- # startover_window_seconds: 1,
3055
- # time_delay_seconds: 1,
3056
- # whitelist: ["__string"],
3057
- # }
3058
- #
3059
2315
  # @!attribute [rw] authorization
3060
2316
  # CDN Authorization credentials
3061
2317
  # @return [Types::Authorization]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-mediapackage/customizations'
52
52
  # @!group service
53
53
  module Aws::MediaPackage
54
54
 
55
- GEM_VERSION = '1.57.0'
55
+ GEM_VERSION = '1.58.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediapackage
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.57.0
4
+ version: 1.58.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core