aws-sdk-mediapackage 1.32.0 → 1.37.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: 541cb29bde3ed42b814f775b4dd0d1109cd3d8e1df9bb67b2f288241fcacce9c
4
- data.tar.gz: 1fb46d1e9221e9c89d45a8b6b256f02caa41008742830d933c5a4de49108ce64
3
+ metadata.gz: 7b50b7cbbb79e101d2d16e0b655796e4d567d7a7ec0859250ffab1b6394d90e2
4
+ data.tar.gz: ddbc1a116443a68b29e453e95c7231a531163560cbef45935d5515f2eb512e24
5
5
  SHA512:
6
- metadata.gz: beb3ee845489adbd8732bd09d85ed9eff1586adf21de4cac9972ef038830e87187f496eea1de017a305abe88a7a300e8738c45436bfe22bfc898e43e2ab0a181
7
- data.tar.gz: 1bc7eccb23c93ecdf364db65d45d4569300635bc6f8222960a12149e4977603c4bb4c0e43798e3075009c43a436fe4e4e046936e192f4b28096c590a0d923ebc
6
+ metadata.gz: 444c523404e9d66eca6006e40bfd8ccb3b5524d0460091ce80511d585573024ed0c93ace7cb5172260d928094b1fd700d21e19ab87ab217bc517144f95cacfea
7
+ data.tar.gz: 42ace0c37dfd78ae48801fb88d25ba5bb09f521bc5c5ffbdea204988f5e947b788ae5a2ab56742a3d49d7eee5c970f80488915a5a384bcea600de625be705e1c
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  require 'aws-sdk-core'
11
12
  require 'aws-sigv4'
12
13
 
@@ -27,7 +28,7 @@ require_relative 'aws-sdk-mediapackage/customizations'
27
28
  # structure.
28
29
  #
29
30
  # media_package = Aws::MediaPackage::Client.new
30
- # resp = media_package.create_channel(params)
31
+ # resp = media_package.configure_logs(params)
31
32
  #
32
33
  # See {Client} for more information.
33
34
  #
@@ -47,6 +48,6 @@ require_relative 'aws-sdk-mediapackage/customizations'
47
48
  # @!group service
48
49
  module Aws::MediaPackage
49
50
 
50
- GEM_VERSION = '1.32.0'
51
+ GEM_VERSION = '1.37.0'
51
52
 
52
53
  end
@@ -327,6 +327,62 @@ module Aws::MediaPackage
327
327
 
328
328
  # @!group API Operations
329
329
 
330
+ # Changes the Channel's properities to configure log subscription
331
+ #
332
+ # @option params [Types::EgressAccessLogs] :egress_access_logs
333
+ # Configure egress access logging.
334
+ #
335
+ # @option params [required, String] :id
336
+ #
337
+ # @option params [Types::IngressAccessLogs] :ingress_access_logs
338
+ # Configure ingress access logging.
339
+ #
340
+ # @return [Types::ConfigureLogsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
341
+ #
342
+ # * {Types::ConfigureLogsResponse#arn #arn} => String
343
+ # * {Types::ConfigureLogsResponse#description #description} => String
344
+ # * {Types::ConfigureLogsResponse#egress_access_logs #egress_access_logs} => Types::EgressAccessLogs
345
+ # * {Types::ConfigureLogsResponse#hls_ingest #hls_ingest} => Types::HlsIngest
346
+ # * {Types::ConfigureLogsResponse#id #id} => String
347
+ # * {Types::ConfigureLogsResponse#ingress_access_logs #ingress_access_logs} => Types::IngressAccessLogs
348
+ # * {Types::ConfigureLogsResponse#tags #tags} => Hash<String,String>
349
+ #
350
+ # @example Request syntax with placeholder values
351
+ #
352
+ # resp = client.configure_logs({
353
+ # egress_access_logs: {
354
+ # log_group_name: "__string",
355
+ # },
356
+ # id: "__string", # required
357
+ # ingress_access_logs: {
358
+ # log_group_name: "__string",
359
+ # },
360
+ # })
361
+ #
362
+ # @example Response structure
363
+ #
364
+ # resp.arn #=> String
365
+ # resp.description #=> String
366
+ # resp.egress_access_logs.log_group_name #=> String
367
+ # resp.hls_ingest.ingest_endpoints #=> Array
368
+ # resp.hls_ingest.ingest_endpoints[0].id #=> String
369
+ # resp.hls_ingest.ingest_endpoints[0].password #=> String
370
+ # resp.hls_ingest.ingest_endpoints[0].url #=> String
371
+ # resp.hls_ingest.ingest_endpoints[0].username #=> String
372
+ # resp.id #=> String
373
+ # resp.ingress_access_logs.log_group_name #=> String
374
+ # resp.tags #=> Hash
375
+ # resp.tags["__string"] #=> String
376
+ #
377
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-2017-10-12/ConfigureLogs AWS API Documentation
378
+ #
379
+ # @overload configure_logs(params = {})
380
+ # @param [Hash] params ({})
381
+ def configure_logs(params = {}, options = {})
382
+ req = build_request(:configure_logs, params)
383
+ req.send_request(options)
384
+ end
385
+
330
386
  # Creates a new Channel.
331
387
  #
332
388
  # @option params [String] :description
@@ -340,8 +396,10 @@ module Aws::MediaPackage
340
396
  #
341
397
  # * {Types::CreateChannelResponse#arn #arn} => String
342
398
  # * {Types::CreateChannelResponse#description #description} => String
399
+ # * {Types::CreateChannelResponse#egress_access_logs #egress_access_logs} => Types::EgressAccessLogs
343
400
  # * {Types::CreateChannelResponse#hls_ingest #hls_ingest} => Types::HlsIngest
344
401
  # * {Types::CreateChannelResponse#id #id} => String
402
+ # * {Types::CreateChannelResponse#ingress_access_logs #ingress_access_logs} => Types::IngressAccessLogs
345
403
  # * {Types::CreateChannelResponse#tags #tags} => Hash<String,String>
346
404
  #
347
405
  # @example Request syntax with placeholder values
@@ -358,12 +416,14 @@ module Aws::MediaPackage
358
416
  #
359
417
  # resp.arn #=> String
360
418
  # resp.description #=> String
419
+ # resp.egress_access_logs.log_group_name #=> String
361
420
  # resp.hls_ingest.ingest_endpoints #=> Array
362
421
  # resp.hls_ingest.ingest_endpoints[0].id #=> String
363
422
  # resp.hls_ingest.ingest_endpoints[0].password #=> String
364
423
  # resp.hls_ingest.ingest_endpoints[0].url #=> String
365
424
  # resp.hls_ingest.ingest_endpoints[0].username #=> String
366
425
  # resp.id #=> String
426
+ # resp.ingress_access_logs.log_group_name #=> String
367
427
  # resp.tags #=> Hash
368
428
  # resp.tags["__string"] #=> String
369
429
  #
@@ -561,6 +621,8 @@ module Aws::MediaPackage
561
621
  # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
562
622
  # },
563
623
  # suggested_presentation_delay_seconds: 1,
624
+ # utc_timing: "NONE", # accepts NONE, HTTP-HEAD, HTTP-ISO
625
+ # utc_timing_uri: "__string",
564
626
  # },
565
627
  # description: "__string",
566
628
  # hls_package: {
@@ -671,6 +733,8 @@ module Aws::MediaPackage
671
733
  # resp.dash_package.stream_selection.min_video_bits_per_second #=> Integer
672
734
  # resp.dash_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
673
735
  # resp.dash_package.suggested_presentation_delay_seconds #=> Integer
736
+ # resp.dash_package.utc_timing #=> String, one of "NONE", "HTTP-HEAD", "HTTP-ISO"
737
+ # resp.dash_package.utc_timing_uri #=> String
674
738
  # resp.description #=> String
675
739
  # resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
676
740
  # resp.hls_package.ad_triggers #=> Array
@@ -776,8 +840,10 @@ module Aws::MediaPackage
776
840
  #
777
841
  # * {Types::DescribeChannelResponse#arn #arn} => String
778
842
  # * {Types::DescribeChannelResponse#description #description} => String
843
+ # * {Types::DescribeChannelResponse#egress_access_logs #egress_access_logs} => Types::EgressAccessLogs
779
844
  # * {Types::DescribeChannelResponse#hls_ingest #hls_ingest} => Types::HlsIngest
780
845
  # * {Types::DescribeChannelResponse#id #id} => String
846
+ # * {Types::DescribeChannelResponse#ingress_access_logs #ingress_access_logs} => Types::IngressAccessLogs
781
847
  # * {Types::DescribeChannelResponse#tags #tags} => Hash<String,String>
782
848
  #
783
849
  # @example Request syntax with placeholder values
@@ -790,12 +856,14 @@ module Aws::MediaPackage
790
856
  #
791
857
  # resp.arn #=> String
792
858
  # resp.description #=> String
859
+ # resp.egress_access_logs.log_group_name #=> String
793
860
  # resp.hls_ingest.ingest_endpoints #=> Array
794
861
  # resp.hls_ingest.ingest_endpoints[0].id #=> String
795
862
  # resp.hls_ingest.ingest_endpoints[0].password #=> String
796
863
  # resp.hls_ingest.ingest_endpoints[0].url #=> String
797
864
  # resp.hls_ingest.ingest_endpoints[0].username #=> String
798
865
  # resp.id #=> String
866
+ # resp.ingress_access_logs.log_group_name #=> String
799
867
  # resp.tags #=> Hash
800
868
  # resp.tags["__string"] #=> String
801
869
  #
@@ -932,6 +1000,8 @@ module Aws::MediaPackage
932
1000
  # resp.dash_package.stream_selection.min_video_bits_per_second #=> Integer
933
1001
  # resp.dash_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
934
1002
  # resp.dash_package.suggested_presentation_delay_seconds #=> Integer
1003
+ # resp.dash_package.utc_timing #=> String, one of "NONE", "HTTP-HEAD", "HTTP-ISO"
1004
+ # resp.dash_package.utc_timing_uri #=> String
935
1005
  # resp.description #=> String
936
1006
  # resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
937
1007
  # resp.hls_package.ad_triggers #=> Array
@@ -1012,12 +1082,14 @@ module Aws::MediaPackage
1012
1082
  # resp.channels #=> Array
1013
1083
  # resp.channels[0].arn #=> String
1014
1084
  # resp.channels[0].description #=> String
1085
+ # resp.channels[0].egress_access_logs.log_group_name #=> String
1015
1086
  # resp.channels[0].hls_ingest.ingest_endpoints #=> Array
1016
1087
  # resp.channels[0].hls_ingest.ingest_endpoints[0].id #=> String
1017
1088
  # resp.channels[0].hls_ingest.ingest_endpoints[0].password #=> String
1018
1089
  # resp.channels[0].hls_ingest.ingest_endpoints[0].url #=> String
1019
1090
  # resp.channels[0].hls_ingest.ingest_endpoints[0].username #=> String
1020
1091
  # resp.channels[0].id #=> String
1092
+ # resp.channels[0].ingress_access_logs.log_group_name #=> String
1021
1093
  # resp.channels[0].tags #=> Hash
1022
1094
  # resp.channels[0].tags["__string"] #=> String
1023
1095
  # resp.next_token #=> String
@@ -1157,6 +1229,8 @@ module Aws::MediaPackage
1157
1229
  # resp.origin_endpoints[0].dash_package.stream_selection.min_video_bits_per_second #=> Integer
1158
1230
  # resp.origin_endpoints[0].dash_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
1159
1231
  # resp.origin_endpoints[0].dash_package.suggested_presentation_delay_seconds #=> Integer
1232
+ # resp.origin_endpoints[0].dash_package.utc_timing #=> String, one of "NONE", "HTTP-HEAD", "HTTP-ISO"
1233
+ # resp.origin_endpoints[0].dash_package.utc_timing_uri #=> String
1160
1234
  # resp.origin_endpoints[0].description #=> String
1161
1235
  # resp.origin_endpoints[0].hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
1162
1236
  # resp.origin_endpoints[0].hls_package.ad_triggers #=> Array
@@ -1248,8 +1322,10 @@ module Aws::MediaPackage
1248
1322
  #
1249
1323
  # * {Types::RotateChannelCredentialsResponse#arn #arn} => String
1250
1324
  # * {Types::RotateChannelCredentialsResponse#description #description} => String
1325
+ # * {Types::RotateChannelCredentialsResponse#egress_access_logs #egress_access_logs} => Types::EgressAccessLogs
1251
1326
  # * {Types::RotateChannelCredentialsResponse#hls_ingest #hls_ingest} => Types::HlsIngest
1252
1327
  # * {Types::RotateChannelCredentialsResponse#id #id} => String
1328
+ # * {Types::RotateChannelCredentialsResponse#ingress_access_logs #ingress_access_logs} => Types::IngressAccessLogs
1253
1329
  # * {Types::RotateChannelCredentialsResponse#tags #tags} => Hash<String,String>
1254
1330
  #
1255
1331
  # @example Request syntax with placeholder values
@@ -1262,12 +1338,14 @@ module Aws::MediaPackage
1262
1338
  #
1263
1339
  # resp.arn #=> String
1264
1340
  # resp.description #=> String
1341
+ # resp.egress_access_logs.log_group_name #=> String
1265
1342
  # resp.hls_ingest.ingest_endpoints #=> Array
1266
1343
  # resp.hls_ingest.ingest_endpoints[0].id #=> String
1267
1344
  # resp.hls_ingest.ingest_endpoints[0].password #=> String
1268
1345
  # resp.hls_ingest.ingest_endpoints[0].url #=> String
1269
1346
  # resp.hls_ingest.ingest_endpoints[0].username #=> String
1270
1347
  # resp.id #=> String
1348
+ # resp.ingress_access_logs.log_group_name #=> String
1271
1349
  # resp.tags #=> Hash
1272
1350
  # resp.tags["__string"] #=> String
1273
1351
  #
@@ -1291,8 +1369,10 @@ module Aws::MediaPackage
1291
1369
  #
1292
1370
  # * {Types::RotateIngestEndpointCredentialsResponse#arn #arn} => String
1293
1371
  # * {Types::RotateIngestEndpointCredentialsResponse#description #description} => String
1372
+ # * {Types::RotateIngestEndpointCredentialsResponse#egress_access_logs #egress_access_logs} => Types::EgressAccessLogs
1294
1373
  # * {Types::RotateIngestEndpointCredentialsResponse#hls_ingest #hls_ingest} => Types::HlsIngest
1295
1374
  # * {Types::RotateIngestEndpointCredentialsResponse#id #id} => String
1375
+ # * {Types::RotateIngestEndpointCredentialsResponse#ingress_access_logs #ingress_access_logs} => Types::IngressAccessLogs
1296
1376
  # * {Types::RotateIngestEndpointCredentialsResponse#tags #tags} => Hash<String,String>
1297
1377
  #
1298
1378
  # @example Request syntax with placeholder values
@@ -1306,12 +1386,14 @@ module Aws::MediaPackage
1306
1386
  #
1307
1387
  # resp.arn #=> String
1308
1388
  # resp.description #=> String
1389
+ # resp.egress_access_logs.log_group_name #=> String
1309
1390
  # resp.hls_ingest.ingest_endpoints #=> Array
1310
1391
  # resp.hls_ingest.ingest_endpoints[0].id #=> String
1311
1392
  # resp.hls_ingest.ingest_endpoints[0].password #=> String
1312
1393
  # resp.hls_ingest.ingest_endpoints[0].url #=> String
1313
1394
  # resp.hls_ingest.ingest_endpoints[0].username #=> String
1314
1395
  # resp.id #=> String
1396
+ # resp.ingress_access_logs.log_group_name #=> String
1315
1397
  # resp.tags #=> Hash
1316
1398
  # resp.tags["__string"] #=> String
1317
1399
  #
@@ -1380,8 +1462,10 @@ module Aws::MediaPackage
1380
1462
  #
1381
1463
  # * {Types::UpdateChannelResponse#arn #arn} => String
1382
1464
  # * {Types::UpdateChannelResponse#description #description} => String
1465
+ # * {Types::UpdateChannelResponse#egress_access_logs #egress_access_logs} => Types::EgressAccessLogs
1383
1466
  # * {Types::UpdateChannelResponse#hls_ingest #hls_ingest} => Types::HlsIngest
1384
1467
  # * {Types::UpdateChannelResponse#id #id} => String
1468
+ # * {Types::UpdateChannelResponse#ingress_access_logs #ingress_access_logs} => Types::IngressAccessLogs
1385
1469
  # * {Types::UpdateChannelResponse#tags #tags} => Hash<String,String>
1386
1470
  #
1387
1471
  # @example Request syntax with placeholder values
@@ -1395,12 +1479,14 @@ module Aws::MediaPackage
1395
1479
  #
1396
1480
  # resp.arn #=> String
1397
1481
  # resp.description #=> String
1482
+ # resp.egress_access_logs.log_group_name #=> String
1398
1483
  # resp.hls_ingest.ingest_endpoints #=> Array
1399
1484
  # resp.hls_ingest.ingest_endpoints[0].id #=> String
1400
1485
  # resp.hls_ingest.ingest_endpoints[0].password #=> String
1401
1486
  # resp.hls_ingest.ingest_endpoints[0].url #=> String
1402
1487
  # resp.hls_ingest.ingest_endpoints[0].username #=> String
1403
1488
  # resp.id #=> String
1489
+ # resp.ingress_access_logs.log_group_name #=> String
1404
1490
  # resp.tags #=> Hash
1405
1491
  # resp.tags["__string"] #=> String
1406
1492
  #
@@ -1529,6 +1615,8 @@ module Aws::MediaPackage
1529
1615
  # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
1530
1616
  # },
1531
1617
  # suggested_presentation_delay_seconds: 1,
1618
+ # utc_timing: "NONE", # accepts NONE, HTTP-HEAD, HTTP-ISO
1619
+ # utc_timing_uri: "__string",
1532
1620
  # },
1533
1621
  # description: "__string",
1534
1622
  # hls_package: {
@@ -1636,6 +1724,8 @@ module Aws::MediaPackage
1636
1724
  # resp.dash_package.stream_selection.min_video_bits_per_second #=> Integer
1637
1725
  # resp.dash_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
1638
1726
  # resp.dash_package.suggested_presentation_delay_seconds #=> Integer
1727
+ # resp.dash_package.utc_timing #=> String, one of "NONE", "HTTP-HEAD", "HTTP-ISO"
1728
+ # resp.dash_package.utc_timing_uri #=> String
1639
1729
  # resp.description #=> String
1640
1730
  # resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
1641
1731
  # resp.hls_package.ad_triggers #=> Array
@@ -1704,7 +1794,7 @@ module Aws::MediaPackage
1704
1794
  params: params,
1705
1795
  config: config)
1706
1796
  context[:gem_name] = 'aws-sdk-mediapackage'
1707
- context[:gem_version] = '1.32.0'
1797
+ context[:gem_version] = '1.37.0'
1708
1798
  Seahorse::Client::Request.new(handlers, context)
1709
1799
  end
1710
1800
 
@@ -24,6 +24,9 @@ module Aws::MediaPackage
24
24
  CmafEncryption = Shapes::StructureShape.new(name: 'CmafEncryption')
25
25
  CmafPackage = Shapes::StructureShape.new(name: 'CmafPackage')
26
26
  CmafPackageCreateOrUpdateParameters = Shapes::StructureShape.new(name: 'CmafPackageCreateOrUpdateParameters')
27
+ ConfigureLogsParameters = Shapes::StructureShape.new(name: 'ConfigureLogsParameters')
28
+ ConfigureLogsRequest = Shapes::StructureShape.new(name: 'ConfigureLogsRequest')
29
+ ConfigureLogsResponse = Shapes::StructureShape.new(name: 'ConfigureLogsResponse')
27
30
  CreateChannelRequest = Shapes::StructureShape.new(name: 'CreateChannelRequest')
28
31
  CreateChannelResponse = Shapes::StructureShape.new(name: 'CreateChannelResponse')
29
32
  CreateHarvestJobRequest = Shapes::StructureShape.new(name: 'CreateHarvestJobRequest')
@@ -42,6 +45,7 @@ module Aws::MediaPackage
42
45
  DescribeHarvestJobResponse = Shapes::StructureShape.new(name: 'DescribeHarvestJobResponse')
43
46
  DescribeOriginEndpointRequest = Shapes::StructureShape.new(name: 'DescribeOriginEndpointRequest')
44
47
  DescribeOriginEndpointResponse = Shapes::StructureShape.new(name: 'DescribeOriginEndpointResponse')
48
+ EgressAccessLogs = Shapes::StructureShape.new(name: 'EgressAccessLogs')
45
49
  EncryptionMethod = Shapes::StringShape.new(name: 'EncryptionMethod')
46
50
  ForbiddenException = Shapes::StructureShape.new(name: 'ForbiddenException')
47
51
  HarvestJob = Shapes::StructureShape.new(name: 'HarvestJob')
@@ -53,6 +57,7 @@ module Aws::MediaPackage
53
57
  HlsManifestCreateOrUpdateParameters = Shapes::StructureShape.new(name: 'HlsManifestCreateOrUpdateParameters')
54
58
  HlsPackage = Shapes::StructureShape.new(name: 'HlsPackage')
55
59
  IngestEndpoint = Shapes::StructureShape.new(name: 'IngestEndpoint')
60
+ IngressAccessLogs = Shapes::StructureShape.new(name: 'IngressAccessLogs')
56
61
  InternalServerErrorException = Shapes::StructureShape.new(name: 'InternalServerErrorException')
57
62
  ListChannelsRequest = Shapes::StructureShape.new(name: 'ListChannelsRequest')
58
63
  ListChannelsResponse = Shapes::StructureShape.new(name: 'ListChannelsResponse')
@@ -95,6 +100,7 @@ module Aws::MediaPackage
95
100
  UpdateChannelResponse = Shapes::StructureShape.new(name: 'UpdateChannelResponse')
96
101
  UpdateOriginEndpointRequest = Shapes::StructureShape.new(name: 'UpdateOriginEndpointRequest')
97
102
  UpdateOriginEndpointResponse = Shapes::StructureShape.new(name: 'UpdateOriginEndpointResponse')
103
+ UtcTiming = Shapes::StringShape.new(name: 'UtcTiming')
98
104
  __AdTriggersElement = Shapes::StringShape.new(name: '__AdTriggersElement')
99
105
  __PeriodTriggersElement = Shapes::StringShape.new(name: '__PeriodTriggersElement')
100
106
  __boolean = Shapes::BooleanShape.new(name: '__boolean')
@@ -120,8 +126,10 @@ module Aws::MediaPackage
120
126
 
121
127
  Channel.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
122
128
  Channel.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
129
+ Channel.add_member(:egress_access_logs, Shapes::ShapeRef.new(shape: EgressAccessLogs, location_name: "egressAccessLogs"))
123
130
  Channel.add_member(:hls_ingest, Shapes::ShapeRef.new(shape: HlsIngest, location_name: "hlsIngest"))
124
131
  Channel.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
132
+ Channel.add_member(:ingress_access_logs, Shapes::ShapeRef.new(shape: IngressAccessLogs, location_name: "ingressAccessLogs"))
125
133
  Channel.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
126
134
  Channel.struct_class = Types::Channel
127
135
 
@@ -155,6 +163,24 @@ module Aws::MediaPackage
155
163
  CmafPackageCreateOrUpdateParameters.add_member(:stream_selection, Shapes::ShapeRef.new(shape: StreamSelection, location_name: "streamSelection"))
156
164
  CmafPackageCreateOrUpdateParameters.struct_class = Types::CmafPackageCreateOrUpdateParameters
157
165
 
166
+ ConfigureLogsParameters.add_member(:egress_access_logs, Shapes::ShapeRef.new(shape: EgressAccessLogs, location_name: "egressAccessLogs"))
167
+ ConfigureLogsParameters.add_member(:ingress_access_logs, Shapes::ShapeRef.new(shape: IngressAccessLogs, location_name: "ingressAccessLogs"))
168
+ ConfigureLogsParameters.struct_class = Types::ConfigureLogsParameters
169
+
170
+ ConfigureLogsRequest.add_member(:egress_access_logs, Shapes::ShapeRef.new(shape: EgressAccessLogs, location_name: "egressAccessLogs"))
171
+ ConfigureLogsRequest.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "id"))
172
+ ConfigureLogsRequest.add_member(:ingress_access_logs, Shapes::ShapeRef.new(shape: IngressAccessLogs, location_name: "ingressAccessLogs"))
173
+ ConfigureLogsRequest.struct_class = Types::ConfigureLogsRequest
174
+
175
+ ConfigureLogsResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
176
+ ConfigureLogsResponse.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
177
+ ConfigureLogsResponse.add_member(:egress_access_logs, Shapes::ShapeRef.new(shape: EgressAccessLogs, location_name: "egressAccessLogs"))
178
+ ConfigureLogsResponse.add_member(:hls_ingest, Shapes::ShapeRef.new(shape: HlsIngest, location_name: "hlsIngest"))
179
+ ConfigureLogsResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
180
+ ConfigureLogsResponse.add_member(:ingress_access_logs, Shapes::ShapeRef.new(shape: IngressAccessLogs, location_name: "ingressAccessLogs"))
181
+ ConfigureLogsResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
182
+ ConfigureLogsResponse.struct_class = Types::ConfigureLogsResponse
183
+
158
184
  CreateChannelRequest.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
159
185
  CreateChannelRequest.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "id"))
160
186
  CreateChannelRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
@@ -162,8 +188,10 @@ module Aws::MediaPackage
162
188
 
163
189
  CreateChannelResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
164
190
  CreateChannelResponse.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
191
+ CreateChannelResponse.add_member(:egress_access_logs, Shapes::ShapeRef.new(shape: EgressAccessLogs, location_name: "egressAccessLogs"))
165
192
  CreateChannelResponse.add_member(:hls_ingest, Shapes::ShapeRef.new(shape: HlsIngest, location_name: "hlsIngest"))
166
193
  CreateChannelResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
194
+ CreateChannelResponse.add_member(:ingress_access_logs, Shapes::ShapeRef.new(shape: IngressAccessLogs, location_name: "ingressAccessLogs"))
167
195
  CreateChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
168
196
  CreateChannelResponse.struct_class = Types::CreateChannelResponse
169
197
 
@@ -236,6 +264,8 @@ module Aws::MediaPackage
236
264
  DashPackage.add_member(:segment_template_format, Shapes::ShapeRef.new(shape: SegmentTemplateFormat, location_name: "segmentTemplateFormat"))
237
265
  DashPackage.add_member(:stream_selection, Shapes::ShapeRef.new(shape: StreamSelection, location_name: "streamSelection"))
238
266
  DashPackage.add_member(:suggested_presentation_delay_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "suggestedPresentationDelaySeconds"))
267
+ DashPackage.add_member(:utc_timing, Shapes::ShapeRef.new(shape: UtcTiming, location_name: "utcTiming"))
268
+ DashPackage.add_member(:utc_timing_uri, Shapes::ShapeRef.new(shape: __string, location_name: "utcTimingUri"))
239
269
  DashPackage.struct_class = Types::DashPackage
240
270
 
241
271
  DeleteChannelRequest.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "id"))
@@ -253,8 +283,10 @@ module Aws::MediaPackage
253
283
 
254
284
  DescribeChannelResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
255
285
  DescribeChannelResponse.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
286
+ DescribeChannelResponse.add_member(:egress_access_logs, Shapes::ShapeRef.new(shape: EgressAccessLogs, location_name: "egressAccessLogs"))
256
287
  DescribeChannelResponse.add_member(:hls_ingest, Shapes::ShapeRef.new(shape: HlsIngest, location_name: "hlsIngest"))
257
288
  DescribeChannelResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
289
+ DescribeChannelResponse.add_member(:ingress_access_logs, Shapes::ShapeRef.new(shape: IngressAccessLogs, location_name: "ingressAccessLogs"))
258
290
  DescribeChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
259
291
  DescribeChannelResponse.struct_class = Types::DescribeChannelResponse
260
292
 
@@ -293,6 +325,9 @@ module Aws::MediaPackage
293
325
  DescribeOriginEndpointResponse.add_member(:whitelist, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "whitelist"))
294
326
  DescribeOriginEndpointResponse.struct_class = Types::DescribeOriginEndpointResponse
295
327
 
328
+ EgressAccessLogs.add_member(:log_group_name, Shapes::ShapeRef.new(shape: __string, location_name: "logGroupName"))
329
+ EgressAccessLogs.struct_class = Types::EgressAccessLogs
330
+
296
331
  ForbiddenException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
297
332
  ForbiddenException.struct_class = Types::ForbiddenException
298
333
 
@@ -368,6 +403,9 @@ module Aws::MediaPackage
368
403
  IngestEndpoint.add_member(:username, Shapes::ShapeRef.new(shape: __string, location_name: "username"))
369
404
  IngestEndpoint.struct_class = Types::IngestEndpoint
370
405
 
406
+ IngressAccessLogs.add_member(:log_group_name, Shapes::ShapeRef.new(shape: __string, location_name: "logGroupName"))
407
+ IngressAccessLogs.struct_class = Types::IngressAccessLogs
408
+
371
409
  InternalServerErrorException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
372
410
  InternalServerErrorException.struct_class = Types::InternalServerErrorException
373
411
 
@@ -472,8 +510,10 @@ module Aws::MediaPackage
472
510
 
473
511
  RotateChannelCredentialsResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
474
512
  RotateChannelCredentialsResponse.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
513
+ RotateChannelCredentialsResponse.add_member(:egress_access_logs, Shapes::ShapeRef.new(shape: EgressAccessLogs, location_name: "egressAccessLogs"))
475
514
  RotateChannelCredentialsResponse.add_member(:hls_ingest, Shapes::ShapeRef.new(shape: HlsIngest, location_name: "hlsIngest"))
476
515
  RotateChannelCredentialsResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
516
+ RotateChannelCredentialsResponse.add_member(:ingress_access_logs, Shapes::ShapeRef.new(shape: IngressAccessLogs, location_name: "ingressAccessLogs"))
477
517
  RotateChannelCredentialsResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
478
518
  RotateChannelCredentialsResponse.struct_class = Types::RotateChannelCredentialsResponse
479
519
 
@@ -483,8 +523,10 @@ module Aws::MediaPackage
483
523
 
484
524
  RotateIngestEndpointCredentialsResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
485
525
  RotateIngestEndpointCredentialsResponse.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
526
+ RotateIngestEndpointCredentialsResponse.add_member(:egress_access_logs, Shapes::ShapeRef.new(shape: EgressAccessLogs, location_name: "egressAccessLogs"))
486
527
  RotateIngestEndpointCredentialsResponse.add_member(:hls_ingest, Shapes::ShapeRef.new(shape: HlsIngest, location_name: "hlsIngest"))
487
528
  RotateIngestEndpointCredentialsResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
529
+ RotateIngestEndpointCredentialsResponse.add_member(:ingress_access_logs, Shapes::ShapeRef.new(shape: IngressAccessLogs, location_name: "ingressAccessLogs"))
488
530
  RotateIngestEndpointCredentialsResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
489
531
  RotateIngestEndpointCredentialsResponse.struct_class = Types::RotateIngestEndpointCredentialsResponse
490
532
 
@@ -534,8 +576,10 @@ module Aws::MediaPackage
534
576
 
535
577
  UpdateChannelResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
536
578
  UpdateChannelResponse.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
579
+ UpdateChannelResponse.add_member(:egress_access_logs, Shapes::ShapeRef.new(shape: EgressAccessLogs, location_name: "egressAccessLogs"))
537
580
  UpdateChannelResponse.add_member(:hls_ingest, Shapes::ShapeRef.new(shape: HlsIngest, location_name: "hlsIngest"))
538
581
  UpdateChannelResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
582
+ UpdateChannelResponse.add_member(:ingress_access_logs, Shapes::ShapeRef.new(shape: IngressAccessLogs, location_name: "ingressAccessLogs"))
539
583
  UpdateChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
540
584
  UpdateChannelResponse.struct_class = Types::UpdateChannelResponse
541
585
 
@@ -609,6 +653,20 @@ module Aws::MediaPackage
609
653
  "uid" => "mediapackage-2017-10-12",
610
654
  }
611
655
 
656
+ api.add_operation(:configure_logs, Seahorse::Model::Operation.new.tap do |o|
657
+ o.name = "ConfigureLogs"
658
+ o.http_method = "PUT"
659
+ o.http_request_uri = "/channels/{id}/configure_logs"
660
+ o.input = Shapes::ShapeRef.new(shape: ConfigureLogsRequest)
661
+ o.output = Shapes::ShapeRef.new(shape: ConfigureLogsResponse)
662
+ o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
663
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
664
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
665
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
666
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
667
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
668
+ end)
669
+
612
670
  api.add_operation(:create_channel, Seahorse::Model::Operation.new.tap do |o|
613
671
  o.name = "CreateChannel"
614
672
  o.http_method = "POST"
@@ -50,6 +50,10 @@ module Aws::MediaPackage
50
50
  # A short text description of the Channel.
51
51
  # @return [String]
52
52
  #
53
+ # @!attribute [rw] egress_access_logs
54
+ # Configure egress access logging.
55
+ # @return [Types::EgressAccessLogs]
56
+ #
53
57
  # @!attribute [rw] hls_ingest
54
58
  # An HTTP Live Streaming (HLS) ingest resource configuration.
55
59
  # @return [Types::HlsIngest]
@@ -58,6 +62,10 @@ module Aws::MediaPackage
58
62
  # The ID of the Channel.
59
63
  # @return [String]
60
64
  #
65
+ # @!attribute [rw] ingress_access_logs
66
+ # Configure ingress access logging.
67
+ # @return [Types::IngressAccessLogs]
68
+ #
61
69
  # @!attribute [rw] tags
62
70
  # A collection of tags associated with a resource
63
71
  # @return [Hash<String,String>]
@@ -67,8 +75,10 @@ module Aws::MediaPackage
67
75
  class Channel < Struct.new(
68
76
  :arn,
69
77
  :description,
78
+ :egress_access_logs,
70
79
  :hls_ingest,
71
80
  :id,
81
+ :ingress_access_logs,
72
82
  :tags)
73
83
  SENSITIVE = []
74
84
  include Aws::Structure
@@ -276,6 +286,98 @@ module Aws::MediaPackage
276
286
  include Aws::Structure
277
287
  end
278
288
 
289
+ # The configuration parameters for ingress and egress access logging.
290
+ #
291
+ # @!attribute [rw] egress_access_logs
292
+ # Configure egress access logging.
293
+ # @return [Types::EgressAccessLogs]
294
+ #
295
+ # @!attribute [rw] ingress_access_logs
296
+ # Configure ingress access logging.
297
+ # @return [Types::IngressAccessLogs]
298
+ #
299
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-2017-10-12/ConfigureLogsParameters AWS API Documentation
300
+ #
301
+ class ConfigureLogsParameters < Struct.new(
302
+ :egress_access_logs,
303
+ :ingress_access_logs)
304
+ SENSITIVE = []
305
+ include Aws::Structure
306
+ end
307
+
308
+ # @note When making an API call, you may pass ConfigureLogsRequest
309
+ # data as a hash:
310
+ #
311
+ # {
312
+ # egress_access_logs: {
313
+ # log_group_name: "__string",
314
+ # },
315
+ # id: "__string", # required
316
+ # ingress_access_logs: {
317
+ # log_group_name: "__string",
318
+ # },
319
+ # }
320
+ #
321
+ # @!attribute [rw] egress_access_logs
322
+ # Configure egress access logging.
323
+ # @return [Types::EgressAccessLogs]
324
+ #
325
+ # @!attribute [rw] id
326
+ # @return [String]
327
+ #
328
+ # @!attribute [rw] ingress_access_logs
329
+ # Configure ingress access logging.
330
+ # @return [Types::IngressAccessLogs]
331
+ #
332
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-2017-10-12/ConfigureLogsRequest AWS API Documentation
333
+ #
334
+ class ConfigureLogsRequest < Struct.new(
335
+ :egress_access_logs,
336
+ :id,
337
+ :ingress_access_logs)
338
+ SENSITIVE = []
339
+ include Aws::Structure
340
+ end
341
+
342
+ # @!attribute [rw] arn
343
+ # @return [String]
344
+ #
345
+ # @!attribute [rw] description
346
+ # @return [String]
347
+ #
348
+ # @!attribute [rw] egress_access_logs
349
+ # Configure egress access logging.
350
+ # @return [Types::EgressAccessLogs]
351
+ #
352
+ # @!attribute [rw] hls_ingest
353
+ # An HTTP Live Streaming (HLS) ingest resource configuration.
354
+ # @return [Types::HlsIngest]
355
+ #
356
+ # @!attribute [rw] id
357
+ # @return [String]
358
+ #
359
+ # @!attribute [rw] ingress_access_logs
360
+ # Configure ingress access logging.
361
+ # @return [Types::IngressAccessLogs]
362
+ #
363
+ # @!attribute [rw] tags
364
+ # A collection of tags associated with a resource
365
+ # @return [Hash<String,String>]
366
+ #
367
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-2017-10-12/ConfigureLogsResponse AWS API Documentation
368
+ #
369
+ class ConfigureLogsResponse < Struct.new(
370
+ :arn,
371
+ :description,
372
+ :egress_access_logs,
373
+ :hls_ingest,
374
+ :id,
375
+ :ingress_access_logs,
376
+ :tags)
377
+ SENSITIVE = []
378
+ include Aws::Structure
379
+ end
380
+
279
381
  # @note When making an API call, you may pass CreateChannelRequest
280
382
  # data as a hash:
281
383
  #
@@ -313,6 +415,10 @@ module Aws::MediaPackage
313
415
  # @!attribute [rw] description
314
416
  # @return [String]
315
417
  #
418
+ # @!attribute [rw] egress_access_logs
419
+ # Configure egress access logging.
420
+ # @return [Types::EgressAccessLogs]
421
+ #
316
422
  # @!attribute [rw] hls_ingest
317
423
  # An HTTP Live Streaming (HLS) ingest resource configuration.
318
424
  # @return [Types::HlsIngest]
@@ -320,6 +426,10 @@ module Aws::MediaPackage
320
426
  # @!attribute [rw] id
321
427
  # @return [String]
322
428
  #
429
+ # @!attribute [rw] ingress_access_logs
430
+ # Configure ingress access logging.
431
+ # @return [Types::IngressAccessLogs]
432
+ #
323
433
  # @!attribute [rw] tags
324
434
  # A collection of tags associated with a resource
325
435
  # @return [Hash<String,String>]
@@ -329,8 +439,10 @@ module Aws::MediaPackage
329
439
  class CreateChannelResponse < Struct.new(
330
440
  :arn,
331
441
  :description,
442
+ :egress_access_logs,
332
443
  :hls_ingest,
333
444
  :id,
445
+ :ingress_access_logs,
334
446
  :tags)
335
447
  SENSITIVE = []
336
448
  include Aws::Structure
@@ -493,6 +605,8 @@ module Aws::MediaPackage
493
605
  # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
494
606
  # },
495
607
  # suggested_presentation_delay_seconds: 1,
608
+ # utc_timing: "NONE", # accepts NONE, HTTP-HEAD, HTTP-ISO
609
+ # utc_timing_uri: "__string",
496
610
  # },
497
611
  # description: "__string",
498
612
  # hls_package: {
@@ -769,6 +883,8 @@ module Aws::MediaPackage
769
883
  # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
770
884
  # },
771
885
  # suggested_presentation_delay_seconds: 1,
886
+ # utc_timing: "NONE", # accepts NONE, HTTP-HEAD, HTTP-ISO
887
+ # utc_timing_uri: "__string",
772
888
  # }
773
889
  #
774
890
  # @!attribute [rw] ad_triggers
@@ -856,6 +972,16 @@ module Aws::MediaPackage
856
972
  # Duration (in seconds) to delay live content before presentation.
857
973
  # @return [Integer]
858
974
  #
975
+ # @!attribute [rw] utc_timing
976
+ # Determines the type of UTCTiming included in the Media Presentation
977
+ # Description (MPD)
978
+ # @return [String]
979
+ #
980
+ # @!attribute [rw] utc_timing_uri
981
+ # Specifies the value attribute of the UTCTiming field when utcTiming
982
+ # is set to HTTP-ISO or HTTP-HEAD
983
+ # @return [String]
984
+ #
859
985
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-2017-10-12/DashPackage AWS API Documentation
860
986
  #
861
987
  class DashPackage < Struct.new(
@@ -871,7 +997,9 @@ module Aws::MediaPackage
871
997
  :segment_duration_seconds,
872
998
  :segment_template_format,
873
999
  :stream_selection,
874
- :suggested_presentation_delay_seconds)
1000
+ :suggested_presentation_delay_seconds,
1001
+ :utc_timing,
1002
+ :utc_timing_uri)
875
1003
  SENSITIVE = []
876
1004
  include Aws::Structure
877
1005
  end
@@ -944,6 +1072,10 @@ module Aws::MediaPackage
944
1072
  # @!attribute [rw] description
945
1073
  # @return [String]
946
1074
  #
1075
+ # @!attribute [rw] egress_access_logs
1076
+ # Configure egress access logging.
1077
+ # @return [Types::EgressAccessLogs]
1078
+ #
947
1079
  # @!attribute [rw] hls_ingest
948
1080
  # An HTTP Live Streaming (HLS) ingest resource configuration.
949
1081
  # @return [Types::HlsIngest]
@@ -951,6 +1083,10 @@ module Aws::MediaPackage
951
1083
  # @!attribute [rw] id
952
1084
  # @return [String]
953
1085
  #
1086
+ # @!attribute [rw] ingress_access_logs
1087
+ # Configure ingress access logging.
1088
+ # @return [Types::IngressAccessLogs]
1089
+ #
954
1090
  # @!attribute [rw] tags
955
1091
  # A collection of tags associated with a resource
956
1092
  # @return [Hash<String,String>]
@@ -960,8 +1096,10 @@ module Aws::MediaPackage
960
1096
  class DescribeChannelResponse < Struct.new(
961
1097
  :arn,
962
1098
  :description,
1099
+ :egress_access_logs,
963
1100
  :hls_ingest,
964
1101
  :id,
1102
+ :ingress_access_logs,
965
1103
  :tags)
966
1104
  SENSITIVE = []
967
1105
  include Aws::Structure
@@ -1126,6 +1264,27 @@ module Aws::MediaPackage
1126
1264
  include Aws::Structure
1127
1265
  end
1128
1266
 
1267
+ # Configure egress access logging.
1268
+ #
1269
+ # @note When making an API call, you may pass EgressAccessLogs
1270
+ # data as a hash:
1271
+ #
1272
+ # {
1273
+ # log_group_name: "__string",
1274
+ # }
1275
+ #
1276
+ # @!attribute [rw] log_group_name
1277
+ # Customize the log group name.
1278
+ # @return [String]
1279
+ #
1280
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-2017-10-12/EgressAccessLogs AWS API Documentation
1281
+ #
1282
+ class EgressAccessLogs < Struct.new(
1283
+ :log_group_name)
1284
+ SENSITIVE = []
1285
+ include Aws::Structure
1286
+ end
1287
+
1129
1288
  # @!attribute [rw] message
1130
1289
  # @return [String]
1131
1290
  #
@@ -1656,6 +1815,27 @@ module Aws::MediaPackage
1656
1815
  include Aws::Structure
1657
1816
  end
1658
1817
 
1818
+ # Configure ingress access logging.
1819
+ #
1820
+ # @note When making an API call, you may pass IngressAccessLogs
1821
+ # data as a hash:
1822
+ #
1823
+ # {
1824
+ # log_group_name: "__string",
1825
+ # }
1826
+ #
1827
+ # @!attribute [rw] log_group_name
1828
+ # Customize the log group name.
1829
+ # @return [String]
1830
+ #
1831
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-2017-10-12/IngressAccessLogs AWS API Documentation
1832
+ #
1833
+ class IngressAccessLogs < Struct.new(
1834
+ :log_group_name)
1835
+ SENSITIVE = []
1836
+ include Aws::Structure
1837
+ end
1838
+
1659
1839
  # @!attribute [rw] message
1660
1840
  # @return [String]
1661
1841
  #
@@ -2225,6 +2405,10 @@ module Aws::MediaPackage
2225
2405
  # @!attribute [rw] description
2226
2406
  # @return [String]
2227
2407
  #
2408
+ # @!attribute [rw] egress_access_logs
2409
+ # Configure egress access logging.
2410
+ # @return [Types::EgressAccessLogs]
2411
+ #
2228
2412
  # @!attribute [rw] hls_ingest
2229
2413
  # An HTTP Live Streaming (HLS) ingest resource configuration.
2230
2414
  # @return [Types::HlsIngest]
@@ -2232,6 +2416,10 @@ module Aws::MediaPackage
2232
2416
  # @!attribute [rw] id
2233
2417
  # @return [String]
2234
2418
  #
2419
+ # @!attribute [rw] ingress_access_logs
2420
+ # Configure ingress access logging.
2421
+ # @return [Types::IngressAccessLogs]
2422
+ #
2235
2423
  # @!attribute [rw] tags
2236
2424
  # A collection of tags associated with a resource
2237
2425
  # @return [Hash<String,String>]
@@ -2241,8 +2429,10 @@ module Aws::MediaPackage
2241
2429
  class RotateChannelCredentialsResponse < Struct.new(
2242
2430
  :arn,
2243
2431
  :description,
2432
+ :egress_access_logs,
2244
2433
  :hls_ingest,
2245
2434
  :id,
2435
+ :ingress_access_logs,
2246
2436
  :tags)
2247
2437
  SENSITIVE = []
2248
2438
  include Aws::Structure
@@ -2277,6 +2467,10 @@ module Aws::MediaPackage
2277
2467
  # @!attribute [rw] description
2278
2468
  # @return [String]
2279
2469
  #
2470
+ # @!attribute [rw] egress_access_logs
2471
+ # Configure egress access logging.
2472
+ # @return [Types::EgressAccessLogs]
2473
+ #
2280
2474
  # @!attribute [rw] hls_ingest
2281
2475
  # An HTTP Live Streaming (HLS) ingest resource configuration.
2282
2476
  # @return [Types::HlsIngest]
@@ -2284,6 +2478,10 @@ module Aws::MediaPackage
2284
2478
  # @!attribute [rw] id
2285
2479
  # @return [String]
2286
2480
  #
2481
+ # @!attribute [rw] ingress_access_logs
2482
+ # Configure ingress access logging.
2483
+ # @return [Types::IngressAccessLogs]
2484
+ #
2287
2485
  # @!attribute [rw] tags
2288
2486
  # A collection of tags associated with a resource
2289
2487
  # @return [Hash<String,String>]
@@ -2293,8 +2491,10 @@ module Aws::MediaPackage
2293
2491
  class RotateIngestEndpointCredentialsResponse < Struct.new(
2294
2492
  :arn,
2295
2493
  :description,
2494
+ :egress_access_logs,
2296
2495
  :hls_ingest,
2297
2496
  :id,
2497
+ :ingress_access_logs,
2298
2498
  :tags)
2299
2499
  SENSITIVE = []
2300
2500
  include Aws::Structure
@@ -2539,6 +2739,10 @@ module Aws::MediaPackage
2539
2739
  # @!attribute [rw] description
2540
2740
  # @return [String]
2541
2741
  #
2742
+ # @!attribute [rw] egress_access_logs
2743
+ # Configure egress access logging.
2744
+ # @return [Types::EgressAccessLogs]
2745
+ #
2542
2746
  # @!attribute [rw] hls_ingest
2543
2747
  # An HTTP Live Streaming (HLS) ingest resource configuration.
2544
2748
  # @return [Types::HlsIngest]
@@ -2546,6 +2750,10 @@ module Aws::MediaPackage
2546
2750
  # @!attribute [rw] id
2547
2751
  # @return [String]
2548
2752
  #
2753
+ # @!attribute [rw] ingress_access_logs
2754
+ # Configure ingress access logging.
2755
+ # @return [Types::IngressAccessLogs]
2756
+ #
2549
2757
  # @!attribute [rw] tags
2550
2758
  # A collection of tags associated with a resource
2551
2759
  # @return [Hash<String,String>]
@@ -2555,8 +2763,10 @@ module Aws::MediaPackage
2555
2763
  class UpdateChannelResponse < Struct.new(
2556
2764
  :arn,
2557
2765
  :description,
2766
+ :egress_access_logs,
2558
2767
  :hls_ingest,
2559
2768
  :id,
2769
+ :ingress_access_logs,
2560
2770
  :tags)
2561
2771
  SENSITIVE = []
2562
2772
  include Aws::Structure
@@ -2629,6 +2839,8 @@ module Aws::MediaPackage
2629
2839
  # stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
2630
2840
  # },
2631
2841
  # suggested_presentation_delay_seconds: 1,
2842
+ # utc_timing: "NONE", # accepts NONE, HTTP-HEAD, HTTP-ISO
2843
+ # utc_timing_uri: "__string",
2632
2844
  # },
2633
2845
  # description: "__string",
2634
2846
  # 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.32.0
4
+ version: 1.37.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: 2020-08-25 00:00:00.000000000 Z
11
+ date: 2021-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.99.0
22
+ version: 3.112.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.99.0
32
+ version: 3.112.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement