aws-sdk-mediapackage 1.0.0 → 1.1.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
  SHA1:
3
- metadata.gz: 14ee0f362fa573c45e2f3951f97c8abcd6227087
4
- data.tar.gz: 02f0eddfa4ad12c982810d73a539cb88b50c11c8
3
+ metadata.gz: 8a44a4f989828b24fc37bb51dbd0665cf00c4bf3
4
+ data.tar.gz: a98a89db48e94797c2bc3209cb4ee186a5188469
5
5
  SHA512:
6
- metadata.gz: 63c9ff4aeaf8c3210bc06cdd112c7c431e751497c22498a3f0b950db5024bd85591dc8bda4d9ee4ea5f236064bc417100766818edcab880fd4ef838ad4ceb359
7
- data.tar.gz: 2bcc36d54b61609cca6b72970f4e6a0bc4dd31568145f24c80fa22cadc369bdaa92f657540d05a9626f61ab3449ed6e79f0fc6dbdfde283c1b3a1bb4de7e6697
6
+ metadata.gz: 5f8e33b06a628b37135fb720888bbff73d66c1c603c924d2e4faa2e990b7ba81b6c13d1a20ce235ba90f18cec2e80d6822f8e373d77ede8189d333c3d6399a2f
7
+ data.tar.gz: c02e62a7add71c90cb76dfa71eed6db15f89ce85c03f6cbe3422a35a232fc55cad3953872df65b74ca86dc914d7d0d749a4b64c2833488607943f1925cf7211d
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-mediapackage/customizations'
42
42
  # @service
43
43
  module Aws::MediaPackage
44
44
 
45
- GEM_VERSION = '1.0.0'
45
+ GEM_VERSION = '1.1.0'
46
46
 
47
47
  end
@@ -188,6 +188,9 @@ module Aws::MediaPackage
188
188
  #
189
189
  # @option params [required, String] :channel_id
190
190
  #
191
+ # @option params [Types::CmafPackageCreateOrUpdateParameters] :cmaf_package
192
+ # A Common Media Application Format (CMAF) packaging configuration.
193
+ #
191
194
  # @option params [Types::DashPackage] :dash_package
192
195
  # A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
193
196
  #
@@ -213,6 +216,7 @@ module Aws::MediaPackage
213
216
  #
214
217
  # * {Types::CreateOriginEndpointResponse#arn #arn} => String
215
218
  # * {Types::CreateOriginEndpointResponse#channel_id #channel_id} => String
219
+ # * {Types::CreateOriginEndpointResponse#cmaf_package #cmaf_package} => Types::CmafPackage
216
220
  # * {Types::CreateOriginEndpointResponse#dash_package #dash_package} => Types::DashPackage
217
221
  # * {Types::CreateOriginEndpointResponse#description #description} => String
218
222
  # * {Types::CreateOriginEndpointResponse#hls_package #hls_package} => Types::HlsPackage
@@ -228,6 +232,35 @@ module Aws::MediaPackage
228
232
  #
229
233
  # resp = client.create_origin_endpoint({
230
234
  # channel_id: "__string", # required
235
+ # cmaf_package: {
236
+ # encryption: {
237
+ # key_rotation_interval_seconds: 1,
238
+ # speke_key_provider: { # required
239
+ # resource_id: "__string", # required
240
+ # role_arn: "__string", # required
241
+ # system_ids: ["__string"], # required
242
+ # url: "__string", # required
243
+ # },
244
+ # },
245
+ # hls_manifests: [
246
+ # {
247
+ # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
248
+ # id: "__string", # required
249
+ # include_iframe_only_stream: false,
250
+ # manifest_name: "__string",
251
+ # playlist_type: "NONE", # accepts NONE, EVENT, VOD
252
+ # playlist_window_seconds: 1,
253
+ # program_date_time_interval_seconds: 1,
254
+ # },
255
+ # ],
256
+ # segment_duration_seconds: 1,
257
+ # segment_prefix: "__string",
258
+ # stream_selection: {
259
+ # max_video_bits_per_second: 1,
260
+ # min_video_bits_per_second: 1,
261
+ # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
262
+ # },
263
+ # },
231
264
  # dash_package: {
232
265
  # encryption: {
233
266
  # key_rotation_interval_seconds: 1,
@@ -305,6 +338,26 @@ module Aws::MediaPackage
305
338
  #
306
339
  # resp.arn #=> String
307
340
  # resp.channel_id #=> String
341
+ # resp.cmaf_package.encryption.key_rotation_interval_seconds #=> Integer
342
+ # resp.cmaf_package.encryption.speke_key_provider.resource_id #=> String
343
+ # resp.cmaf_package.encryption.speke_key_provider.role_arn #=> String
344
+ # resp.cmaf_package.encryption.speke_key_provider.system_ids #=> Array
345
+ # resp.cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
346
+ # resp.cmaf_package.encryption.speke_key_provider.url #=> String
347
+ # resp.cmaf_package.hls_manifests #=> Array
348
+ # resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
349
+ # resp.cmaf_package.hls_manifests[0].id #=> String
350
+ # resp.cmaf_package.hls_manifests[0].include_iframe_only_stream #=> Boolean
351
+ # resp.cmaf_package.hls_manifests[0].manifest_name #=> String
352
+ # resp.cmaf_package.hls_manifests[0].playlist_type #=> String, one of "NONE", "EVENT", "VOD"
353
+ # resp.cmaf_package.hls_manifests[0].playlist_window_seconds #=> Integer
354
+ # resp.cmaf_package.hls_manifests[0].program_date_time_interval_seconds #=> Integer
355
+ # resp.cmaf_package.hls_manifests[0].url #=> String
356
+ # resp.cmaf_package.segment_duration_seconds #=> Integer
357
+ # resp.cmaf_package.segment_prefix #=> String
358
+ # resp.cmaf_package.stream_selection.max_video_bits_per_second #=> Integer
359
+ # resp.cmaf_package.stream_selection.min_video_bits_per_second #=> Integer
360
+ # resp.cmaf_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
308
361
  # resp.dash_package.encryption.key_rotation_interval_seconds #=> Integer
309
362
  # resp.dash_package.encryption.speke_key_provider.resource_id #=> String
310
363
  # resp.dash_package.encryption.speke_key_provider.role_arn #=> String
@@ -453,6 +506,7 @@ module Aws::MediaPackage
453
506
  #
454
507
  # * {Types::DescribeOriginEndpointResponse#arn #arn} => String
455
508
  # * {Types::DescribeOriginEndpointResponse#channel_id #channel_id} => String
509
+ # * {Types::DescribeOriginEndpointResponse#cmaf_package #cmaf_package} => Types::CmafPackage
456
510
  # * {Types::DescribeOriginEndpointResponse#dash_package #dash_package} => Types::DashPackage
457
511
  # * {Types::DescribeOriginEndpointResponse#description #description} => String
458
512
  # * {Types::DescribeOriginEndpointResponse#hls_package #hls_package} => Types::HlsPackage
@@ -474,6 +528,26 @@ module Aws::MediaPackage
474
528
  #
475
529
  # resp.arn #=> String
476
530
  # resp.channel_id #=> String
531
+ # resp.cmaf_package.encryption.key_rotation_interval_seconds #=> Integer
532
+ # resp.cmaf_package.encryption.speke_key_provider.resource_id #=> String
533
+ # resp.cmaf_package.encryption.speke_key_provider.role_arn #=> String
534
+ # resp.cmaf_package.encryption.speke_key_provider.system_ids #=> Array
535
+ # resp.cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
536
+ # resp.cmaf_package.encryption.speke_key_provider.url #=> String
537
+ # resp.cmaf_package.hls_manifests #=> Array
538
+ # resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
539
+ # resp.cmaf_package.hls_manifests[0].id #=> String
540
+ # resp.cmaf_package.hls_manifests[0].include_iframe_only_stream #=> Boolean
541
+ # resp.cmaf_package.hls_manifests[0].manifest_name #=> String
542
+ # resp.cmaf_package.hls_manifests[0].playlist_type #=> String, one of "NONE", "EVENT", "VOD"
543
+ # resp.cmaf_package.hls_manifests[0].playlist_window_seconds #=> Integer
544
+ # resp.cmaf_package.hls_manifests[0].program_date_time_interval_seconds #=> Integer
545
+ # resp.cmaf_package.hls_manifests[0].url #=> String
546
+ # resp.cmaf_package.segment_duration_seconds #=> Integer
547
+ # resp.cmaf_package.segment_prefix #=> String
548
+ # resp.cmaf_package.stream_selection.max_video_bits_per_second #=> Integer
549
+ # resp.cmaf_package.stream_selection.min_video_bits_per_second #=> Integer
550
+ # resp.cmaf_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
477
551
  # resp.dash_package.encryption.key_rotation_interval_seconds #=> Integer
478
552
  # resp.dash_package.encryption.speke_key_provider.resource_id #=> String
479
553
  # resp.dash_package.encryption.speke_key_provider.role_arn #=> String
@@ -602,6 +676,26 @@ module Aws::MediaPackage
602
676
  # resp.origin_endpoints #=> Array
603
677
  # resp.origin_endpoints[0].arn #=> String
604
678
  # resp.origin_endpoints[0].channel_id #=> String
679
+ # resp.origin_endpoints[0].cmaf_package.encryption.key_rotation_interval_seconds #=> Integer
680
+ # resp.origin_endpoints[0].cmaf_package.encryption.speke_key_provider.resource_id #=> String
681
+ # resp.origin_endpoints[0].cmaf_package.encryption.speke_key_provider.role_arn #=> String
682
+ # resp.origin_endpoints[0].cmaf_package.encryption.speke_key_provider.system_ids #=> Array
683
+ # resp.origin_endpoints[0].cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
684
+ # resp.origin_endpoints[0].cmaf_package.encryption.speke_key_provider.url #=> String
685
+ # resp.origin_endpoints[0].cmaf_package.hls_manifests #=> Array
686
+ # resp.origin_endpoints[0].cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
687
+ # resp.origin_endpoints[0].cmaf_package.hls_manifests[0].id #=> String
688
+ # resp.origin_endpoints[0].cmaf_package.hls_manifests[0].include_iframe_only_stream #=> Boolean
689
+ # resp.origin_endpoints[0].cmaf_package.hls_manifests[0].manifest_name #=> String
690
+ # resp.origin_endpoints[0].cmaf_package.hls_manifests[0].playlist_type #=> String, one of "NONE", "EVENT", "VOD"
691
+ # resp.origin_endpoints[0].cmaf_package.hls_manifests[0].playlist_window_seconds #=> Integer
692
+ # resp.origin_endpoints[0].cmaf_package.hls_manifests[0].program_date_time_interval_seconds #=> Integer
693
+ # resp.origin_endpoints[0].cmaf_package.hls_manifests[0].url #=> String
694
+ # resp.origin_endpoints[0].cmaf_package.segment_duration_seconds #=> Integer
695
+ # resp.origin_endpoints[0].cmaf_package.segment_prefix #=> String
696
+ # resp.origin_endpoints[0].cmaf_package.stream_selection.max_video_bits_per_second #=> Integer
697
+ # resp.origin_endpoints[0].cmaf_package.stream_selection.min_video_bits_per_second #=> Integer
698
+ # resp.origin_endpoints[0].cmaf_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
605
699
  # resp.origin_endpoints[0].dash_package.encryption.key_rotation_interval_seconds #=> Integer
606
700
  # resp.origin_endpoints[0].dash_package.encryption.speke_key_provider.resource_id #=> String
607
701
  # resp.origin_endpoints[0].dash_package.encryption.speke_key_provider.role_arn #=> String
@@ -741,6 +835,9 @@ module Aws::MediaPackage
741
835
 
742
836
  # Updates an existing OriginEndpoint.
743
837
  #
838
+ # @option params [Types::CmafPackageCreateOrUpdateParameters] :cmaf_package
839
+ # A Common Media Application Format (CMAF) packaging configuration.
840
+ #
744
841
  # @option params [Types::DashPackage] :dash_package
745
842
  # A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
746
843
  #
@@ -766,6 +863,7 @@ module Aws::MediaPackage
766
863
  #
767
864
  # * {Types::UpdateOriginEndpointResponse#arn #arn} => String
768
865
  # * {Types::UpdateOriginEndpointResponse#channel_id #channel_id} => String
866
+ # * {Types::UpdateOriginEndpointResponse#cmaf_package #cmaf_package} => Types::CmafPackage
769
867
  # * {Types::UpdateOriginEndpointResponse#dash_package #dash_package} => Types::DashPackage
770
868
  # * {Types::UpdateOriginEndpointResponse#description #description} => String
771
869
  # * {Types::UpdateOriginEndpointResponse#hls_package #hls_package} => Types::HlsPackage
@@ -780,6 +878,35 @@ module Aws::MediaPackage
780
878
  # @example Request syntax with placeholder values
781
879
  #
782
880
  # resp = client.update_origin_endpoint({
881
+ # cmaf_package: {
882
+ # encryption: {
883
+ # key_rotation_interval_seconds: 1,
884
+ # speke_key_provider: { # required
885
+ # resource_id: "__string", # required
886
+ # role_arn: "__string", # required
887
+ # system_ids: ["__string"], # required
888
+ # url: "__string", # required
889
+ # },
890
+ # },
891
+ # hls_manifests: [
892
+ # {
893
+ # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
894
+ # id: "__string", # required
895
+ # include_iframe_only_stream: false,
896
+ # manifest_name: "__string",
897
+ # playlist_type: "NONE", # accepts NONE, EVENT, VOD
898
+ # playlist_window_seconds: 1,
899
+ # program_date_time_interval_seconds: 1,
900
+ # },
901
+ # ],
902
+ # segment_duration_seconds: 1,
903
+ # segment_prefix: "__string",
904
+ # stream_selection: {
905
+ # max_video_bits_per_second: 1,
906
+ # min_video_bits_per_second: 1,
907
+ # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
908
+ # },
909
+ # },
783
910
  # dash_package: {
784
911
  # encryption: {
785
912
  # key_rotation_interval_seconds: 1,
@@ -857,6 +984,26 @@ module Aws::MediaPackage
857
984
  #
858
985
  # resp.arn #=> String
859
986
  # resp.channel_id #=> String
987
+ # resp.cmaf_package.encryption.key_rotation_interval_seconds #=> Integer
988
+ # resp.cmaf_package.encryption.speke_key_provider.resource_id #=> String
989
+ # resp.cmaf_package.encryption.speke_key_provider.role_arn #=> String
990
+ # resp.cmaf_package.encryption.speke_key_provider.system_ids #=> Array
991
+ # resp.cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
992
+ # resp.cmaf_package.encryption.speke_key_provider.url #=> String
993
+ # resp.cmaf_package.hls_manifests #=> Array
994
+ # resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
995
+ # resp.cmaf_package.hls_manifests[0].id #=> String
996
+ # resp.cmaf_package.hls_manifests[0].include_iframe_only_stream #=> Boolean
997
+ # resp.cmaf_package.hls_manifests[0].manifest_name #=> String
998
+ # resp.cmaf_package.hls_manifests[0].playlist_type #=> String, one of "NONE", "EVENT", "VOD"
999
+ # resp.cmaf_package.hls_manifests[0].playlist_window_seconds #=> Integer
1000
+ # resp.cmaf_package.hls_manifests[0].program_date_time_interval_seconds #=> Integer
1001
+ # resp.cmaf_package.hls_manifests[0].url #=> String
1002
+ # resp.cmaf_package.segment_duration_seconds #=> Integer
1003
+ # resp.cmaf_package.segment_prefix #=> String
1004
+ # resp.cmaf_package.stream_selection.max_video_bits_per_second #=> Integer
1005
+ # resp.cmaf_package.stream_selection.min_video_bits_per_second #=> Integer
1006
+ # resp.cmaf_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
860
1007
  # resp.dash_package.encryption.key_rotation_interval_seconds #=> Integer
861
1008
  # resp.dash_package.encryption.speke_key_provider.resource_id #=> String
862
1009
  # resp.dash_package.encryption.speke_key_provider.role_arn #=> String
@@ -932,7 +1079,7 @@ module Aws::MediaPackage
932
1079
  params: params,
933
1080
  config: config)
934
1081
  context[:gem_name] = 'aws-sdk-mediapackage'
935
- context[:gem_version] = '1.0.0'
1082
+ context[:gem_version] = '1.1.0'
936
1083
  Seahorse::Client::Request.new(handlers, context)
937
1084
  end
938
1085
 
@@ -16,6 +16,9 @@ module Aws::MediaPackage
16
16
  ChannelCreateParameters = Shapes::StructureShape.new(name: 'ChannelCreateParameters')
17
17
  ChannelList = Shapes::StructureShape.new(name: 'ChannelList')
18
18
  ChannelUpdateParameters = Shapes::StructureShape.new(name: 'ChannelUpdateParameters')
19
+ CmafEncryption = Shapes::StructureShape.new(name: 'CmafEncryption')
20
+ CmafPackage = Shapes::StructureShape.new(name: 'CmafPackage')
21
+ CmafPackageCreateOrUpdateParameters = Shapes::StructureShape.new(name: 'CmafPackageCreateOrUpdateParameters')
19
22
  CreateChannelRequest = Shapes::StructureShape.new(name: 'CreateChannelRequest')
20
23
  CreateChannelResponse = Shapes::StructureShape.new(name: 'CreateChannelResponse')
21
24
  CreateOriginEndpointRequest = Shapes::StructureShape.new(name: 'CreateOriginEndpointRequest')
@@ -34,15 +37,13 @@ module Aws::MediaPackage
34
37
  ForbiddenException = Shapes::StructureShape.new(name: 'ForbiddenException')
35
38
  HlsEncryption = Shapes::StructureShape.new(name: 'HlsEncryption')
36
39
  HlsIngest = Shapes::StructureShape.new(name: 'HlsIngest')
40
+ HlsManifest = Shapes::StructureShape.new(name: 'HlsManifest')
41
+ HlsManifestCreateOrUpdateParameters = Shapes::StructureShape.new(name: 'HlsManifestCreateOrUpdateParameters')
37
42
  HlsPackage = Shapes::StructureShape.new(name: 'HlsPackage')
38
43
  IngestEndpoint = Shapes::StructureShape.new(name: 'IngestEndpoint')
39
44
  InternalServerErrorException = Shapes::StructureShape.new(name: 'InternalServerErrorException')
40
45
  ListChannelsRequest = Shapes::StructureShape.new(name: 'ListChannelsRequest')
41
46
  ListChannelsResponse = Shapes::StructureShape.new(name: 'ListChannelsResponse')
42
- ListOfChannel = Shapes::ListShape.new(name: 'ListOfChannel')
43
- ListOfIngestEndpoint = Shapes::ListShape.new(name: 'ListOfIngestEndpoint')
44
- ListOfOriginEndpoint = Shapes::ListShape.new(name: 'ListOfOriginEndpoint')
45
- ListOf__string = Shapes::ListShape.new(name: 'ListOf__string')
46
47
  ListOriginEndpointsRequest = Shapes::StructureShape.new(name: 'ListOriginEndpointsRequest')
47
48
  ListOriginEndpointsResponse = Shapes::StructureShape.new(name: 'ListOriginEndpointsResponse')
48
49
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
@@ -70,8 +71,14 @@ module Aws::MediaPackage
70
71
  __boolean = Shapes::BooleanShape.new(name: '__boolean')
71
72
  __double = Shapes::FloatShape.new(name: '__double')
72
73
  __integer = Shapes::IntegerShape.new(name: '__integer')
74
+ __listOfChannel = Shapes::ListShape.new(name: '__listOfChannel')
75
+ __listOfHlsManifest = Shapes::ListShape.new(name: '__listOfHlsManifest')
76
+ __listOfHlsManifestCreateOrUpdateParameters = Shapes::ListShape.new(name: '__listOfHlsManifestCreateOrUpdateParameters')
77
+ __listOfIngestEndpoint = Shapes::ListShape.new(name: '__listOfIngestEndpoint')
78
+ __listOfOriginEndpoint = Shapes::ListShape.new(name: '__listOfOriginEndpoint')
79
+ __listOf__string = Shapes::ListShape.new(name: '__listOf__string')
80
+ __long = Shapes::IntegerShape.new(name: '__long')
73
81
  __string = Shapes::StringShape.new(name: '__string')
74
- __timestamp = Shapes::TimestampShape.new(name: '__timestamp')
75
82
 
76
83
  Channel.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
77
84
  Channel.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
@@ -80,16 +87,34 @@ module Aws::MediaPackage
80
87
  Channel.struct_class = Types::Channel
81
88
 
82
89
  ChannelCreateParameters.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
83
- ChannelCreateParameters.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
90
+ ChannelCreateParameters.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "id"))
84
91
  ChannelCreateParameters.struct_class = Types::ChannelCreateParameters
85
92
 
86
- ChannelList.add_member(:channels, Shapes::ShapeRef.new(shape: ListOfChannel, location_name: "channels"))
93
+ ChannelList.add_member(:channels, Shapes::ShapeRef.new(shape: __listOfChannel, location_name: "channels"))
87
94
  ChannelList.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
88
95
  ChannelList.struct_class = Types::ChannelList
89
96
 
90
97
  ChannelUpdateParameters.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
91
98
  ChannelUpdateParameters.struct_class = Types::ChannelUpdateParameters
92
99
 
100
+ CmafEncryption.add_member(:key_rotation_interval_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "keyRotationIntervalSeconds"))
101
+ CmafEncryption.add_member(:speke_key_provider, Shapes::ShapeRef.new(shape: SpekeKeyProvider, required: true, location_name: "spekeKeyProvider"))
102
+ CmafEncryption.struct_class = Types::CmafEncryption
103
+
104
+ CmafPackage.add_member(:encryption, Shapes::ShapeRef.new(shape: CmafEncryption, location_name: "encryption"))
105
+ CmafPackage.add_member(:hls_manifests, Shapes::ShapeRef.new(shape: __listOfHlsManifest, location_name: "hlsManifests"))
106
+ CmafPackage.add_member(:segment_duration_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "segmentDurationSeconds"))
107
+ CmafPackage.add_member(:segment_prefix, Shapes::ShapeRef.new(shape: __string, location_name: "segmentPrefix"))
108
+ CmafPackage.add_member(:stream_selection, Shapes::ShapeRef.new(shape: StreamSelection, location_name: "streamSelection"))
109
+ CmafPackage.struct_class = Types::CmafPackage
110
+
111
+ CmafPackageCreateOrUpdateParameters.add_member(:encryption, Shapes::ShapeRef.new(shape: CmafEncryption, location_name: "encryption"))
112
+ CmafPackageCreateOrUpdateParameters.add_member(:hls_manifests, Shapes::ShapeRef.new(shape: __listOfHlsManifestCreateOrUpdateParameters, location_name: "hlsManifests"))
113
+ CmafPackageCreateOrUpdateParameters.add_member(:segment_duration_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "segmentDurationSeconds"))
114
+ CmafPackageCreateOrUpdateParameters.add_member(:segment_prefix, Shapes::ShapeRef.new(shape: __string, location_name: "segmentPrefix"))
115
+ CmafPackageCreateOrUpdateParameters.add_member(:stream_selection, Shapes::ShapeRef.new(shape: StreamSelection, location_name: "streamSelection"))
116
+ CmafPackageCreateOrUpdateParameters.struct_class = Types::CmafPackageCreateOrUpdateParameters
117
+
93
118
  CreateChannelRequest.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
94
119
  CreateChannelRequest.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "id"))
95
120
  CreateChannelRequest.struct_class = Types::CreateChannelRequest
@@ -101,6 +126,7 @@ module Aws::MediaPackage
101
126
  CreateChannelResponse.struct_class = Types::CreateChannelResponse
102
127
 
103
128
  CreateOriginEndpointRequest.add_member(:channel_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "channelId"))
129
+ CreateOriginEndpointRequest.add_member(:cmaf_package, Shapes::ShapeRef.new(shape: CmafPackageCreateOrUpdateParameters, location_name: "cmafPackage"))
104
130
  CreateOriginEndpointRequest.add_member(:dash_package, Shapes::ShapeRef.new(shape: DashPackage, location_name: "dashPackage"))
105
131
  CreateOriginEndpointRequest.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
106
132
  CreateOriginEndpointRequest.add_member(:hls_package, Shapes::ShapeRef.new(shape: HlsPackage, location_name: "hlsPackage"))
@@ -109,11 +135,12 @@ module Aws::MediaPackage
109
135
  CreateOriginEndpointRequest.add_member(:mss_package, Shapes::ShapeRef.new(shape: MssPackage, location_name: "mssPackage"))
110
136
  CreateOriginEndpointRequest.add_member(:startover_window_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "startoverWindowSeconds"))
111
137
  CreateOriginEndpointRequest.add_member(:time_delay_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "timeDelaySeconds"))
112
- CreateOriginEndpointRequest.add_member(:whitelist, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "whitelist"))
138
+ CreateOriginEndpointRequest.add_member(:whitelist, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "whitelist"))
113
139
  CreateOriginEndpointRequest.struct_class = Types::CreateOriginEndpointRequest
114
140
 
115
141
  CreateOriginEndpointResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
116
142
  CreateOriginEndpointResponse.add_member(:channel_id, Shapes::ShapeRef.new(shape: __string, location_name: "channelId"))
143
+ CreateOriginEndpointResponse.add_member(:cmaf_package, Shapes::ShapeRef.new(shape: CmafPackage, location_name: "cmafPackage"))
117
144
  CreateOriginEndpointResponse.add_member(:dash_package, Shapes::ShapeRef.new(shape: DashPackage, location_name: "dashPackage"))
118
145
  CreateOriginEndpointResponse.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
119
146
  CreateOriginEndpointResponse.add_member(:hls_package, Shapes::ShapeRef.new(shape: HlsPackage, location_name: "hlsPackage"))
@@ -123,7 +150,7 @@ module Aws::MediaPackage
123
150
  CreateOriginEndpointResponse.add_member(:startover_window_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "startoverWindowSeconds"))
124
151
  CreateOriginEndpointResponse.add_member(:time_delay_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "timeDelaySeconds"))
125
152
  CreateOriginEndpointResponse.add_member(:url, Shapes::ShapeRef.new(shape: __string, location_name: "url"))
126
- CreateOriginEndpointResponse.add_member(:whitelist, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "whitelist"))
153
+ CreateOriginEndpointResponse.add_member(:whitelist, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "whitelist"))
127
154
  CreateOriginEndpointResponse.struct_class = Types::CreateOriginEndpointResponse
128
155
 
129
156
  DashEncryption.add_member(:key_rotation_interval_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "keyRotationIntervalSeconds"))
@@ -164,6 +191,7 @@ module Aws::MediaPackage
164
191
 
165
192
  DescribeOriginEndpointResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
166
193
  DescribeOriginEndpointResponse.add_member(:channel_id, Shapes::ShapeRef.new(shape: __string, location_name: "channelId"))
194
+ DescribeOriginEndpointResponse.add_member(:cmaf_package, Shapes::ShapeRef.new(shape: CmafPackage, location_name: "cmafPackage"))
167
195
  DescribeOriginEndpointResponse.add_member(:dash_package, Shapes::ShapeRef.new(shape: DashPackage, location_name: "dashPackage"))
168
196
  DescribeOriginEndpointResponse.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
169
197
  DescribeOriginEndpointResponse.add_member(:hls_package, Shapes::ShapeRef.new(shape: HlsPackage, location_name: "hlsPackage"))
@@ -173,7 +201,7 @@ module Aws::MediaPackage
173
201
  DescribeOriginEndpointResponse.add_member(:startover_window_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "startoverWindowSeconds"))
174
202
  DescribeOriginEndpointResponse.add_member(:time_delay_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "timeDelaySeconds"))
175
203
  DescribeOriginEndpointResponse.add_member(:url, Shapes::ShapeRef.new(shape: __string, location_name: "url"))
176
- DescribeOriginEndpointResponse.add_member(:whitelist, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "whitelist"))
204
+ DescribeOriginEndpointResponse.add_member(:whitelist, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "whitelist"))
177
205
  DescribeOriginEndpointResponse.struct_class = Types::DescribeOriginEndpointResponse
178
206
 
179
207
  HlsEncryption.add_member(:constant_initialization_vector, Shapes::ShapeRef.new(shape: __string, location_name: "constantInitializationVector"))
@@ -183,9 +211,28 @@ module Aws::MediaPackage
183
211
  HlsEncryption.add_member(:speke_key_provider, Shapes::ShapeRef.new(shape: SpekeKeyProvider, required: true, location_name: "spekeKeyProvider"))
184
212
  HlsEncryption.struct_class = Types::HlsEncryption
185
213
 
186
- HlsIngest.add_member(:ingest_endpoints, Shapes::ShapeRef.new(shape: ListOfIngestEndpoint, location_name: "ingestEndpoints"))
214
+ HlsIngest.add_member(:ingest_endpoints, Shapes::ShapeRef.new(shape: __listOfIngestEndpoint, location_name: "ingestEndpoints"))
187
215
  HlsIngest.struct_class = Types::HlsIngest
188
216
 
217
+ HlsManifest.add_member(:ad_markers, Shapes::ShapeRef.new(shape: AdMarkers, location_name: "adMarkers"))
218
+ HlsManifest.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "id"))
219
+ HlsManifest.add_member(:include_iframe_only_stream, Shapes::ShapeRef.new(shape: __boolean, location_name: "includeIframeOnlyStream"))
220
+ HlsManifest.add_member(:manifest_name, Shapes::ShapeRef.new(shape: __string, location_name: "manifestName"))
221
+ HlsManifest.add_member(:playlist_type, Shapes::ShapeRef.new(shape: PlaylistType, location_name: "playlistType"))
222
+ HlsManifest.add_member(:playlist_window_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "playlistWindowSeconds"))
223
+ HlsManifest.add_member(:program_date_time_interval_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "programDateTimeIntervalSeconds"))
224
+ HlsManifest.add_member(:url, Shapes::ShapeRef.new(shape: __string, location_name: "url"))
225
+ HlsManifest.struct_class = Types::HlsManifest
226
+
227
+ HlsManifestCreateOrUpdateParameters.add_member(:ad_markers, Shapes::ShapeRef.new(shape: AdMarkers, location_name: "adMarkers"))
228
+ HlsManifestCreateOrUpdateParameters.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "id"))
229
+ HlsManifestCreateOrUpdateParameters.add_member(:include_iframe_only_stream, Shapes::ShapeRef.new(shape: __boolean, location_name: "includeIframeOnlyStream"))
230
+ HlsManifestCreateOrUpdateParameters.add_member(:manifest_name, Shapes::ShapeRef.new(shape: __string, location_name: "manifestName"))
231
+ HlsManifestCreateOrUpdateParameters.add_member(:playlist_type, Shapes::ShapeRef.new(shape: PlaylistType, location_name: "playlistType"))
232
+ HlsManifestCreateOrUpdateParameters.add_member(:playlist_window_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "playlistWindowSeconds"))
233
+ HlsManifestCreateOrUpdateParameters.add_member(:program_date_time_interval_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "programDateTimeIntervalSeconds"))
234
+ HlsManifestCreateOrUpdateParameters.struct_class = Types::HlsManifestCreateOrUpdateParameters
235
+
189
236
  HlsPackage.add_member(:ad_markers, Shapes::ShapeRef.new(shape: AdMarkers, location_name: "adMarkers"))
190
237
  HlsPackage.add_member(:encryption, Shapes::ShapeRef.new(shape: HlsEncryption, location_name: "encryption"))
191
238
  HlsPackage.add_member(:include_iframe_only_stream, Shapes::ShapeRef.new(shape: __boolean, location_name: "includeIframeOnlyStream"))
@@ -206,25 +253,17 @@ module Aws::MediaPackage
206
253
  ListChannelsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
207
254
  ListChannelsRequest.struct_class = Types::ListChannelsRequest
208
255
 
209
- ListChannelsResponse.add_member(:channels, Shapes::ShapeRef.new(shape: ListOfChannel, location_name: "channels"))
256
+ ListChannelsResponse.add_member(:channels, Shapes::ShapeRef.new(shape: __listOfChannel, location_name: "channels"))
210
257
  ListChannelsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
211
258
  ListChannelsResponse.struct_class = Types::ListChannelsResponse
212
259
 
213
- ListOfChannel.member = Shapes::ShapeRef.new(shape: Channel)
214
-
215
- ListOfIngestEndpoint.member = Shapes::ShapeRef.new(shape: IngestEndpoint)
216
-
217
- ListOfOriginEndpoint.member = Shapes::ShapeRef.new(shape: OriginEndpoint)
218
-
219
- ListOf__string.member = Shapes::ShapeRef.new(shape: __string)
220
-
221
260
  ListOriginEndpointsRequest.add_member(:channel_id, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "channelId"))
222
261
  ListOriginEndpointsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
223
262
  ListOriginEndpointsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
224
263
  ListOriginEndpointsRequest.struct_class = Types::ListOriginEndpointsRequest
225
264
 
226
265
  ListOriginEndpointsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
227
- ListOriginEndpointsResponse.add_member(:origin_endpoints, Shapes::ShapeRef.new(shape: ListOfOriginEndpoint, location_name: "originEndpoints"))
266
+ ListOriginEndpointsResponse.add_member(:origin_endpoints, Shapes::ShapeRef.new(shape: __listOfOriginEndpoint, location_name: "originEndpoints"))
228
267
  ListOriginEndpointsResponse.struct_class = Types::ListOriginEndpointsResponse
229
268
 
230
269
  MssEncryption.add_member(:speke_key_provider, Shapes::ShapeRef.new(shape: SpekeKeyProvider, required: true, location_name: "spekeKeyProvider"))
@@ -238,6 +277,7 @@ module Aws::MediaPackage
238
277
 
239
278
  OriginEndpoint.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
240
279
  OriginEndpoint.add_member(:channel_id, Shapes::ShapeRef.new(shape: __string, location_name: "channelId"))
280
+ OriginEndpoint.add_member(:cmaf_package, Shapes::ShapeRef.new(shape: CmafPackage, location_name: "cmafPackage"))
241
281
  OriginEndpoint.add_member(:dash_package, Shapes::ShapeRef.new(shape: DashPackage, location_name: "dashPackage"))
242
282
  OriginEndpoint.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
243
283
  OriginEndpoint.add_member(:hls_package, Shapes::ShapeRef.new(shape: HlsPackage, location_name: "hlsPackage"))
@@ -247,25 +287,27 @@ module Aws::MediaPackage
247
287
  OriginEndpoint.add_member(:startover_window_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "startoverWindowSeconds"))
248
288
  OriginEndpoint.add_member(:time_delay_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "timeDelaySeconds"))
249
289
  OriginEndpoint.add_member(:url, Shapes::ShapeRef.new(shape: __string, location_name: "url"))
250
- OriginEndpoint.add_member(:whitelist, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "whitelist"))
290
+ OriginEndpoint.add_member(:whitelist, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "whitelist"))
251
291
  OriginEndpoint.struct_class = Types::OriginEndpoint
252
292
 
253
- OriginEndpointCreateParameters.add_member(:channel_id, Shapes::ShapeRef.new(shape: __string, location_name: "channelId"))
293
+ OriginEndpointCreateParameters.add_member(:channel_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "channelId"))
294
+ OriginEndpointCreateParameters.add_member(:cmaf_package, Shapes::ShapeRef.new(shape: CmafPackageCreateOrUpdateParameters, location_name: "cmafPackage"))
254
295
  OriginEndpointCreateParameters.add_member(:dash_package, Shapes::ShapeRef.new(shape: DashPackage, location_name: "dashPackage"))
255
296
  OriginEndpointCreateParameters.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
256
297
  OriginEndpointCreateParameters.add_member(:hls_package, Shapes::ShapeRef.new(shape: HlsPackage, location_name: "hlsPackage"))
257
- OriginEndpointCreateParameters.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
298
+ OriginEndpointCreateParameters.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "id"))
258
299
  OriginEndpointCreateParameters.add_member(:manifest_name, Shapes::ShapeRef.new(shape: __string, location_name: "manifestName"))
259
300
  OriginEndpointCreateParameters.add_member(:mss_package, Shapes::ShapeRef.new(shape: MssPackage, location_name: "mssPackage"))
260
301
  OriginEndpointCreateParameters.add_member(:startover_window_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "startoverWindowSeconds"))
261
302
  OriginEndpointCreateParameters.add_member(:time_delay_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "timeDelaySeconds"))
262
- OriginEndpointCreateParameters.add_member(:whitelist, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "whitelist"))
303
+ OriginEndpointCreateParameters.add_member(:whitelist, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "whitelist"))
263
304
  OriginEndpointCreateParameters.struct_class = Types::OriginEndpointCreateParameters
264
305
 
265
306
  OriginEndpointList.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
266
- OriginEndpointList.add_member(:origin_endpoints, Shapes::ShapeRef.new(shape: ListOfOriginEndpoint, location_name: "originEndpoints"))
307
+ OriginEndpointList.add_member(:origin_endpoints, Shapes::ShapeRef.new(shape: __listOfOriginEndpoint, location_name: "originEndpoints"))
267
308
  OriginEndpointList.struct_class = Types::OriginEndpointList
268
309
 
310
+ OriginEndpointUpdateParameters.add_member(:cmaf_package, Shapes::ShapeRef.new(shape: CmafPackageCreateOrUpdateParameters, location_name: "cmafPackage"))
269
311
  OriginEndpointUpdateParameters.add_member(:dash_package, Shapes::ShapeRef.new(shape: DashPackage, location_name: "dashPackage"))
270
312
  OriginEndpointUpdateParameters.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
271
313
  OriginEndpointUpdateParameters.add_member(:hls_package, Shapes::ShapeRef.new(shape: HlsPackage, location_name: "hlsPackage"))
@@ -273,7 +315,7 @@ module Aws::MediaPackage
273
315
  OriginEndpointUpdateParameters.add_member(:mss_package, Shapes::ShapeRef.new(shape: MssPackage, location_name: "mssPackage"))
274
316
  OriginEndpointUpdateParameters.add_member(:startover_window_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "startoverWindowSeconds"))
275
317
  OriginEndpointUpdateParameters.add_member(:time_delay_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "timeDelaySeconds"))
276
- OriginEndpointUpdateParameters.add_member(:whitelist, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "whitelist"))
318
+ OriginEndpointUpdateParameters.add_member(:whitelist, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "whitelist"))
277
319
  OriginEndpointUpdateParameters.struct_class = Types::OriginEndpointUpdateParameters
278
320
 
279
321
  RotateChannelCredentialsRequest.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "id"))
@@ -287,7 +329,7 @@ module Aws::MediaPackage
287
329
 
288
330
  SpekeKeyProvider.add_member(:resource_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "resourceId"))
289
331
  SpekeKeyProvider.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "roleArn"))
290
- SpekeKeyProvider.add_member(:system_ids, Shapes::ShapeRef.new(shape: ListOf__string, required: true, location_name: "systemIds"))
332
+ SpekeKeyProvider.add_member(:system_ids, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "systemIds"))
291
333
  SpekeKeyProvider.add_member(:url, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "url"))
292
334
  SpekeKeyProvider.struct_class = Types::SpekeKeyProvider
293
335
 
@@ -306,6 +348,7 @@ module Aws::MediaPackage
306
348
  UpdateChannelResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
307
349
  UpdateChannelResponse.struct_class = Types::UpdateChannelResponse
308
350
 
351
+ UpdateOriginEndpointRequest.add_member(:cmaf_package, Shapes::ShapeRef.new(shape: CmafPackageCreateOrUpdateParameters, location_name: "cmafPackage"))
309
352
  UpdateOriginEndpointRequest.add_member(:dash_package, Shapes::ShapeRef.new(shape: DashPackage, location_name: "dashPackage"))
310
353
  UpdateOriginEndpointRequest.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
311
354
  UpdateOriginEndpointRequest.add_member(:hls_package, Shapes::ShapeRef.new(shape: HlsPackage, location_name: "hlsPackage"))
@@ -314,11 +357,12 @@ module Aws::MediaPackage
314
357
  UpdateOriginEndpointRequest.add_member(:mss_package, Shapes::ShapeRef.new(shape: MssPackage, location_name: "mssPackage"))
315
358
  UpdateOriginEndpointRequest.add_member(:startover_window_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "startoverWindowSeconds"))
316
359
  UpdateOriginEndpointRequest.add_member(:time_delay_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "timeDelaySeconds"))
317
- UpdateOriginEndpointRequest.add_member(:whitelist, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "whitelist"))
360
+ UpdateOriginEndpointRequest.add_member(:whitelist, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "whitelist"))
318
361
  UpdateOriginEndpointRequest.struct_class = Types::UpdateOriginEndpointRequest
319
362
 
320
363
  UpdateOriginEndpointResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
321
364
  UpdateOriginEndpointResponse.add_member(:channel_id, Shapes::ShapeRef.new(shape: __string, location_name: "channelId"))
365
+ UpdateOriginEndpointResponse.add_member(:cmaf_package, Shapes::ShapeRef.new(shape: CmafPackage, location_name: "cmafPackage"))
322
366
  UpdateOriginEndpointResponse.add_member(:dash_package, Shapes::ShapeRef.new(shape: DashPackage, location_name: "dashPackage"))
323
367
  UpdateOriginEndpointResponse.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
324
368
  UpdateOriginEndpointResponse.add_member(:hls_package, Shapes::ShapeRef.new(shape: HlsPackage, location_name: "hlsPackage"))
@@ -328,9 +372,21 @@ module Aws::MediaPackage
328
372
  UpdateOriginEndpointResponse.add_member(:startover_window_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "startoverWindowSeconds"))
329
373
  UpdateOriginEndpointResponse.add_member(:time_delay_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "timeDelaySeconds"))
330
374
  UpdateOriginEndpointResponse.add_member(:url, Shapes::ShapeRef.new(shape: __string, location_name: "url"))
331
- UpdateOriginEndpointResponse.add_member(:whitelist, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "whitelist"))
375
+ UpdateOriginEndpointResponse.add_member(:whitelist, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "whitelist"))
332
376
  UpdateOriginEndpointResponse.struct_class = Types::UpdateOriginEndpointResponse
333
377
 
378
+ __listOfChannel.member = Shapes::ShapeRef.new(shape: Channel)
379
+
380
+ __listOfHlsManifest.member = Shapes::ShapeRef.new(shape: HlsManifest)
381
+
382
+ __listOfHlsManifestCreateOrUpdateParameters.member = Shapes::ShapeRef.new(shape: HlsManifestCreateOrUpdateParameters)
383
+
384
+ __listOfIngestEndpoint.member = Shapes::ShapeRef.new(shape: IngestEndpoint)
385
+
386
+ __listOfOriginEndpoint.member = Shapes::ShapeRef.new(shape: OriginEndpoint)
387
+
388
+ __listOf__string.member = Shapes::ShapeRef.new(shape: __string)
389
+
334
390
 
335
391
  # @api private
336
392
  API = Seahorse::Model::Api.new.tap do |api|
@@ -87,6 +87,142 @@ module Aws::MediaPackage
87
87
  include Aws::Structure
88
88
  end
89
89
 
90
+ # A Common Media Application Format (CMAF) encryption configuration.
91
+ #
92
+ # @note When making an API call, you may pass CmafEncryption
93
+ # data as a hash:
94
+ #
95
+ # {
96
+ # key_rotation_interval_seconds: 1,
97
+ # speke_key_provider: { # required
98
+ # resource_id: "__string", # required
99
+ # role_arn: "__string", # required
100
+ # system_ids: ["__string"], # required
101
+ # url: "__string", # required
102
+ # },
103
+ # }
104
+ #
105
+ # @!attribute [rw] key_rotation_interval_seconds
106
+ # Time (in seconds) between each encryption key rotation.
107
+ # @return [Integer]
108
+ #
109
+ # @!attribute [rw] speke_key_provider
110
+ # A configuration for accessing an external Secure Packager and
111
+ # Encoder Key Exchange (SPEKE) service that will provide encryption
112
+ # keys.
113
+ # @return [Types::SpekeKeyProvider]
114
+ #
115
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-2017-10-12/CmafEncryption AWS API Documentation
116
+ #
117
+ class CmafEncryption < Struct.new(
118
+ :key_rotation_interval_seconds,
119
+ :speke_key_provider)
120
+ include Aws::Structure
121
+ end
122
+
123
+ # A Common Media Application Format (CMAF) packaging configuration.
124
+ #
125
+ # @!attribute [rw] encryption
126
+ # A Common Media Application Format (CMAF) encryption configuration.
127
+ # @return [Types::CmafEncryption]
128
+ #
129
+ # @!attribute [rw] hls_manifests
130
+ # A list of HLS manifest configurations
131
+ # @return [Array<Types::HlsManifest>]
132
+ #
133
+ # @!attribute [rw] segment_duration_seconds
134
+ # Duration (in seconds) of each segment. Actual segments will be
135
+ # rounded to the nearest multiple of the source segment duration.
136
+ # @return [Integer]
137
+ #
138
+ # @!attribute [rw] segment_prefix
139
+ # An optional custom string that is prepended to the name of each
140
+ # segment. If not specified, it defaults to the ChannelId.
141
+ # @return [String]
142
+ #
143
+ # @!attribute [rw] stream_selection
144
+ # A StreamSelection configuration.
145
+ # @return [Types::StreamSelection]
146
+ #
147
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-2017-10-12/CmafPackage AWS API Documentation
148
+ #
149
+ class CmafPackage < Struct.new(
150
+ :encryption,
151
+ :hls_manifests,
152
+ :segment_duration_seconds,
153
+ :segment_prefix,
154
+ :stream_selection)
155
+ include Aws::Structure
156
+ end
157
+
158
+ # A Common Media Application Format (CMAF) packaging configuration.
159
+ #
160
+ # @note When making an API call, you may pass CmafPackageCreateOrUpdateParameters
161
+ # data as a hash:
162
+ #
163
+ # {
164
+ # encryption: {
165
+ # key_rotation_interval_seconds: 1,
166
+ # speke_key_provider: { # required
167
+ # resource_id: "__string", # required
168
+ # role_arn: "__string", # required
169
+ # system_ids: ["__string"], # required
170
+ # url: "__string", # required
171
+ # },
172
+ # },
173
+ # hls_manifests: [
174
+ # {
175
+ # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
176
+ # id: "__string", # required
177
+ # include_iframe_only_stream: false,
178
+ # manifest_name: "__string",
179
+ # playlist_type: "NONE", # accepts NONE, EVENT, VOD
180
+ # playlist_window_seconds: 1,
181
+ # program_date_time_interval_seconds: 1,
182
+ # },
183
+ # ],
184
+ # segment_duration_seconds: 1,
185
+ # segment_prefix: "__string",
186
+ # stream_selection: {
187
+ # max_video_bits_per_second: 1,
188
+ # min_video_bits_per_second: 1,
189
+ # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
190
+ # },
191
+ # }
192
+ #
193
+ # @!attribute [rw] encryption
194
+ # A Common Media Application Format (CMAF) encryption configuration.
195
+ # @return [Types::CmafEncryption]
196
+ #
197
+ # @!attribute [rw] hls_manifests
198
+ # A list of HLS manifest configurations
199
+ # @return [Array<Types::HlsManifestCreateOrUpdateParameters>]
200
+ #
201
+ # @!attribute [rw] segment_duration_seconds
202
+ # Duration (in seconds) of each segment. Actual segments will be
203
+ # rounded to the nearest multiple of the source segment duration.
204
+ # @return [Integer]
205
+ #
206
+ # @!attribute [rw] segment_prefix
207
+ # An optional custom string that is prepended to the name of each
208
+ # segment. If not specified, it defaults to the ChannelId.
209
+ # @return [String]
210
+ #
211
+ # @!attribute [rw] stream_selection
212
+ # A StreamSelection configuration.
213
+ # @return [Types::StreamSelection]
214
+ #
215
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-2017-10-12/CmafPackageCreateOrUpdateParameters AWS API Documentation
216
+ #
217
+ class CmafPackageCreateOrUpdateParameters < Struct.new(
218
+ :encryption,
219
+ :hls_manifests,
220
+ :segment_duration_seconds,
221
+ :segment_prefix,
222
+ :stream_selection)
223
+ include Aws::Structure
224
+ end
225
+
90
226
  # @note When making an API call, you may pass CreateChannelRequest
91
227
  # data as a hash:
92
228
  #
@@ -137,6 +273,35 @@ module Aws::MediaPackage
137
273
  #
138
274
  # {
139
275
  # channel_id: "__string", # required
276
+ # cmaf_package: {
277
+ # encryption: {
278
+ # key_rotation_interval_seconds: 1,
279
+ # speke_key_provider: { # required
280
+ # resource_id: "__string", # required
281
+ # role_arn: "__string", # required
282
+ # system_ids: ["__string"], # required
283
+ # url: "__string", # required
284
+ # },
285
+ # },
286
+ # hls_manifests: [
287
+ # {
288
+ # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
289
+ # id: "__string", # required
290
+ # include_iframe_only_stream: false,
291
+ # manifest_name: "__string",
292
+ # playlist_type: "NONE", # accepts NONE, EVENT, VOD
293
+ # playlist_window_seconds: 1,
294
+ # program_date_time_interval_seconds: 1,
295
+ # },
296
+ # ],
297
+ # segment_duration_seconds: 1,
298
+ # segment_prefix: "__string",
299
+ # stream_selection: {
300
+ # max_video_bits_per_second: 1,
301
+ # min_video_bits_per_second: 1,
302
+ # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
303
+ # },
304
+ # },
140
305
  # dash_package: {
141
306
  # encryption: {
142
307
  # key_rotation_interval_seconds: 1,
@@ -213,6 +378,10 @@ module Aws::MediaPackage
213
378
  # @!attribute [rw] channel_id
214
379
  # @return [String]
215
380
  #
381
+ # @!attribute [rw] cmaf_package
382
+ # A Common Media Application Format (CMAF) packaging configuration.
383
+ # @return [Types::CmafPackageCreateOrUpdateParameters]
384
+ #
216
385
  # @!attribute [rw] dash_package
217
386
  # A Dynamic Adaptive Streaming over HTTP (DASH) packaging
218
387
  # configuration.
@@ -248,6 +417,7 @@ module Aws::MediaPackage
248
417
  #
249
418
  class CreateOriginEndpointRequest < Struct.new(
250
419
  :channel_id,
420
+ :cmaf_package,
251
421
  :dash_package,
252
422
  :description,
253
423
  :hls_package,
@@ -266,6 +436,10 @@ module Aws::MediaPackage
266
436
  # @!attribute [rw] channel_id
267
437
  # @return [String]
268
438
  #
439
+ # @!attribute [rw] cmaf_package
440
+ # A Common Media Application Format (CMAF) packaging configuration.
441
+ # @return [Types::CmafPackage]
442
+ #
269
443
  # @!attribute [rw] dash_package
270
444
  # A Dynamic Adaptive Streaming over HTTP (DASH) packaging
271
445
  # configuration.
@@ -305,6 +479,7 @@ module Aws::MediaPackage
305
479
  class CreateOriginEndpointResponse < Struct.new(
306
480
  :arn,
307
481
  :channel_id,
482
+ :cmaf_package,
308
483
  :dash_package,
309
484
  :description,
310
485
  :hls_package,
@@ -537,6 +712,10 @@ module Aws::MediaPackage
537
712
  # @!attribute [rw] channel_id
538
713
  # @return [String]
539
714
  #
715
+ # @!attribute [rw] cmaf_package
716
+ # A Common Media Application Format (CMAF) packaging configuration.
717
+ # @return [Types::CmafPackage]
718
+ #
540
719
  # @!attribute [rw] dash_package
541
720
  # A Dynamic Adaptive Streaming over HTTP (DASH) packaging
542
721
  # configuration.
@@ -576,6 +755,7 @@ module Aws::MediaPackage
576
755
  class DescribeOriginEndpointResponse < Struct.new(
577
756
  :arn,
578
757
  :channel_id,
758
+ :cmaf_package,
579
759
  :dash_package,
580
760
  :description,
581
761
  :hls_package,
@@ -655,6 +835,148 @@ module Aws::MediaPackage
655
835
  include Aws::Structure
656
836
  end
657
837
 
838
+ # A HTTP Live Streaming (HLS) manifest configuration.
839
+ #
840
+ # @!attribute [rw] ad_markers
841
+ # This setting controls how ad markers are included in the packaged
842
+ # OriginEndpoint. "NONE" will omit all SCTE-35 ad markers from the
843
+ # output. "PASSTHROUGH" causes the manifest to contain a copy of the
844
+ # SCTE-35 ad markers (comments) taken directly from the input HTTP
845
+ # Live Streaming (HLS) manifest. "SCTE35\_ENHANCED" generates ad
846
+ # markers and blackout tags based on SCTE-35 messages in the input
847
+ # source.
848
+ # @return [String]
849
+ #
850
+ # @!attribute [rw] id
851
+ # The ID of the manifest. The ID must be unique within the
852
+ # OriginEndpoint and it cannot be changed after it is created.
853
+ # @return [String]
854
+ #
855
+ # @!attribute [rw] include_iframe_only_stream
856
+ # When enabled, an I-Frame only stream will be included in the output.
857
+ # @return [Boolean]
858
+ #
859
+ # @!attribute [rw] manifest_name
860
+ # An optional short string appended to the end of the OriginEndpoint
861
+ # URL. If not specified, defaults to the manifestName for the
862
+ # OriginEndpoint.
863
+ # @return [String]
864
+ #
865
+ # @!attribute [rw] playlist_type
866
+ # The HTTP Live Streaming (HLS) playlist type. When either "EVENT"
867
+ # or "VOD" is specified, a corresponding EXT-X-PLAYLIST-TYPE entry
868
+ # will be included in the media playlist.
869
+ # @return [String]
870
+ #
871
+ # @!attribute [rw] playlist_window_seconds
872
+ # Time window (in seconds) contained in each parent manifest.
873
+ # @return [Integer]
874
+ #
875
+ # @!attribute [rw] program_date_time_interval_seconds
876
+ # The interval (in seconds) between each EXT-X-PROGRAM-DATE-TIME tag
877
+ # inserted into manifests. Additionally, when an interval is specified
878
+ # ID3Timed Metadata messages will be generated every 5 seconds using
879
+ # the ingest time of the content. If the interval is not specified, or
880
+ # set to 0, then no EXT-X-PROGRAM-DATE-TIME tags will be inserted into
881
+ # manifests and no ID3Timed Metadata messages will be generated. Note
882
+ # that irrespective of this parameter, if any ID3 Timed Metadata is
883
+ # found in HTTP Live Streaming (HLS) input, it will be passed through
884
+ # to HLS output.
885
+ # @return [Integer]
886
+ #
887
+ # @!attribute [rw] url
888
+ # The URL of the packaged OriginEndpoint for consumption.
889
+ # @return [String]
890
+ #
891
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-2017-10-12/HlsManifest AWS API Documentation
892
+ #
893
+ class HlsManifest < Struct.new(
894
+ :ad_markers,
895
+ :id,
896
+ :include_iframe_only_stream,
897
+ :manifest_name,
898
+ :playlist_type,
899
+ :playlist_window_seconds,
900
+ :program_date_time_interval_seconds,
901
+ :url)
902
+ include Aws::Structure
903
+ end
904
+
905
+ # A HTTP Live Streaming (HLS) manifest configuration.
906
+ #
907
+ # @note When making an API call, you may pass HlsManifestCreateOrUpdateParameters
908
+ # data as a hash:
909
+ #
910
+ # {
911
+ # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
912
+ # id: "__string", # required
913
+ # include_iframe_only_stream: false,
914
+ # manifest_name: "__string",
915
+ # playlist_type: "NONE", # accepts NONE, EVENT, VOD
916
+ # playlist_window_seconds: 1,
917
+ # program_date_time_interval_seconds: 1,
918
+ # }
919
+ #
920
+ # @!attribute [rw] ad_markers
921
+ # This setting controls how ad markers are included in the packaged
922
+ # OriginEndpoint. "NONE" will omit all SCTE-35 ad markers from the
923
+ # output. "PASSTHROUGH" causes the manifest to contain a copy of the
924
+ # SCTE-35 ad markers (comments) taken directly from the input HTTP
925
+ # Live Streaming (HLS) manifest. "SCTE35\_ENHANCED" generates ad
926
+ # markers and blackout tags based on SCTE-35 messages in the input
927
+ # source.
928
+ # @return [String]
929
+ #
930
+ # @!attribute [rw] id
931
+ # The ID of the manifest. The ID must be unique within the
932
+ # OriginEndpoint and it cannot be changed after it is created.
933
+ # @return [String]
934
+ #
935
+ # @!attribute [rw] include_iframe_only_stream
936
+ # When enabled, an I-Frame only stream will be included in the output.
937
+ # @return [Boolean]
938
+ #
939
+ # @!attribute [rw] manifest_name
940
+ # An optional short string appended to the end of the OriginEndpoint
941
+ # URL. If not specified, defaults to the manifestName for the
942
+ # OriginEndpoint.
943
+ # @return [String]
944
+ #
945
+ # @!attribute [rw] playlist_type
946
+ # The HTTP Live Streaming (HLS) playlist type. When either "EVENT"
947
+ # or "VOD" is specified, a corresponding EXT-X-PLAYLIST-TYPE entry
948
+ # will be included in the media playlist.
949
+ # @return [String]
950
+ #
951
+ # @!attribute [rw] playlist_window_seconds
952
+ # Time window (in seconds) contained in each parent manifest.
953
+ # @return [Integer]
954
+ #
955
+ # @!attribute [rw] program_date_time_interval_seconds
956
+ # The interval (in seconds) between each EXT-X-PROGRAM-DATE-TIME tag
957
+ # inserted into manifests. Additionally, when an interval is specified
958
+ # ID3Timed Metadata messages will be generated every 5 seconds using
959
+ # the ingest time of the content. If the interval is not specified, or
960
+ # set to 0, then no EXT-X-PROGRAM-DATE-TIME tags will be inserted into
961
+ # manifests and no ID3Timed Metadata messages will be generated. Note
962
+ # that irrespective of this parameter, if any ID3 Timed Metadata is
963
+ # found in HTTP Live Streaming (HLS) input, it will be passed through
964
+ # to HLS output.
965
+ # @return [Integer]
966
+ #
967
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-2017-10-12/HlsManifestCreateOrUpdateParameters AWS API Documentation
968
+ #
969
+ class HlsManifestCreateOrUpdateParameters < Struct.new(
970
+ :ad_markers,
971
+ :id,
972
+ :include_iframe_only_stream,
973
+ :manifest_name,
974
+ :playlist_type,
975
+ :playlist_window_seconds,
976
+ :program_date_time_interval_seconds)
977
+ include Aws::Structure
978
+ end
979
+
658
980
  # An HTTP Live Streaming (HLS) packaging configuration.
659
981
  #
660
982
  # @note When making an API call, you may pass HlsPackage
@@ -942,6 +1264,10 @@ module Aws::MediaPackage
942
1264
  # The ID of the Channel the OriginEndpoint is associated with.
943
1265
  # @return [String]
944
1266
  #
1267
+ # @!attribute [rw] cmaf_package
1268
+ # A Common Media Application Format (CMAF) packaging configuration.
1269
+ # @return [Types::CmafPackage]
1270
+ #
945
1271
  # @!attribute [rw] dash_package
946
1272
  # A Dynamic Adaptive Streaming over HTTP (DASH) packaging
947
1273
  # configuration.
@@ -993,6 +1319,7 @@ module Aws::MediaPackage
993
1319
  class OriginEndpoint < Struct.new(
994
1320
  :arn,
995
1321
  :channel_id,
1322
+ :cmaf_package,
996
1323
  :dash_package,
997
1324
  :description,
998
1325
  :hls_package,
@@ -1013,6 +1340,10 @@ module Aws::MediaPackage
1013
1340
  # with. This cannot be changed after the OriginEndpoint is created.
1014
1341
  # @return [String]
1015
1342
  #
1343
+ # @!attribute [rw] cmaf_package
1344
+ # A Common Media Application Format (CMAF) packaging configuration.
1345
+ # @return [Types::CmafPackageCreateOrUpdateParameters]
1346
+ #
1016
1347
  # @!attribute [rw] dash_package
1017
1348
  # A Dynamic Adaptive Streaming over HTTP (DASH) packaging
1018
1349
  # configuration.
@@ -1061,6 +1392,7 @@ module Aws::MediaPackage
1061
1392
  #
1062
1393
  class OriginEndpointCreateParameters < Struct.new(
1063
1394
  :channel_id,
1395
+ :cmaf_package,
1064
1396
  :dash_package,
1065
1397
  :description,
1066
1398
  :hls_package,
@@ -1094,6 +1426,10 @@ module Aws::MediaPackage
1094
1426
 
1095
1427
  # Configuration parameters for updating an existing OriginEndpoint.
1096
1428
  #
1429
+ # @!attribute [rw] cmaf_package
1430
+ # A Common Media Application Format (CMAF) packaging configuration.
1431
+ # @return [Types::CmafPackageCreateOrUpdateParameters]
1432
+ #
1097
1433
  # @!attribute [rw] dash_package
1098
1434
  # A Dynamic Adaptive Streaming over HTTP (DASH) packaging
1099
1435
  # configuration.
@@ -1135,6 +1471,7 @@ module Aws::MediaPackage
1135
1471
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-2017-10-12/OriginEndpointUpdateParameters AWS API Documentation
1136
1472
  #
1137
1473
  class OriginEndpointUpdateParameters < Struct.new(
1474
+ :cmaf_package,
1138
1475
  :dash_package,
1139
1476
  :description,
1140
1477
  :hls_package,
@@ -1307,6 +1644,35 @@ module Aws::MediaPackage
1307
1644
  # data as a hash:
1308
1645
  #
1309
1646
  # {
1647
+ # cmaf_package: {
1648
+ # encryption: {
1649
+ # key_rotation_interval_seconds: 1,
1650
+ # speke_key_provider: { # required
1651
+ # resource_id: "__string", # required
1652
+ # role_arn: "__string", # required
1653
+ # system_ids: ["__string"], # required
1654
+ # url: "__string", # required
1655
+ # },
1656
+ # },
1657
+ # hls_manifests: [
1658
+ # {
1659
+ # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
1660
+ # id: "__string", # required
1661
+ # include_iframe_only_stream: false,
1662
+ # manifest_name: "__string",
1663
+ # playlist_type: "NONE", # accepts NONE, EVENT, VOD
1664
+ # playlist_window_seconds: 1,
1665
+ # program_date_time_interval_seconds: 1,
1666
+ # },
1667
+ # ],
1668
+ # segment_duration_seconds: 1,
1669
+ # segment_prefix: "__string",
1670
+ # stream_selection: {
1671
+ # max_video_bits_per_second: 1,
1672
+ # min_video_bits_per_second: 1,
1673
+ # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
1674
+ # },
1675
+ # },
1310
1676
  # dash_package: {
1311
1677
  # encryption: {
1312
1678
  # key_rotation_interval_seconds: 1,
@@ -1380,6 +1746,10 @@ module Aws::MediaPackage
1380
1746
  # whitelist: ["__string"],
1381
1747
  # }
1382
1748
  #
1749
+ # @!attribute [rw] cmaf_package
1750
+ # A Common Media Application Format (CMAF) packaging configuration.
1751
+ # @return [Types::CmafPackageCreateOrUpdateParameters]
1752
+ #
1383
1753
  # @!attribute [rw] dash_package
1384
1754
  # A Dynamic Adaptive Streaming over HTTP (DASH) packaging
1385
1755
  # configuration.
@@ -1414,6 +1784,7 @@ module Aws::MediaPackage
1414
1784
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-2017-10-12/UpdateOriginEndpointRequest AWS API Documentation
1415
1785
  #
1416
1786
  class UpdateOriginEndpointRequest < Struct.new(
1787
+ :cmaf_package,
1417
1788
  :dash_package,
1418
1789
  :description,
1419
1790
  :hls_package,
@@ -1432,6 +1803,10 @@ module Aws::MediaPackage
1432
1803
  # @!attribute [rw] channel_id
1433
1804
  # @return [String]
1434
1805
  #
1806
+ # @!attribute [rw] cmaf_package
1807
+ # A Common Media Application Format (CMAF) packaging configuration.
1808
+ # @return [Types::CmafPackage]
1809
+ #
1435
1810
  # @!attribute [rw] dash_package
1436
1811
  # A Dynamic Adaptive Streaming over HTTP (DASH) packaging
1437
1812
  # configuration.
@@ -1471,6 +1846,7 @@ module Aws::MediaPackage
1471
1846
  class UpdateOriginEndpointResponse < Struct.new(
1472
1847
  :arn,
1473
1848
  :channel_id,
1849
+ :cmaf_package,
1474
1850
  :dash_package,
1475
1851
  :description,
1476
1852
  :hls_package,
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.0.0
4
+ version: 1.1.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: 2017-11-27 00:00:00.000000000 Z
11
+ date: 2018-04-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  version: '0'
76
76
  requirements: []
77
77
  rubyforge_project:
78
- rubygems_version: 2.5.1
78
+ rubygems_version: 2.5.2.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: AWS SDK for Ruby - MediaPackage