aws-sdk-mediapackagevod 1.20.0 → 1.21.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf50aa34feb6599767aa4b61f37e1c5d01d7ddee0453839cb91e86aef9e796fd
|
4
|
+
data.tar.gz: 544a9a534a06c2752daa0e4f840a9e08bf33f085826559f5d189b6a968cb661a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75ffdbb7ccfbc548e3b55f331dcb36a884146cca7150406649bbf06462f9afab086ec7e6f824b78afe862b14c08149abdec0eae63d3b272f45ee8b4038bf49c2
|
7
|
+
data.tar.gz: ab5556fd1fcedd02fb5d0399dcd570d8e30676b7abf83cb46ae580e885c36d974f04df1cd0a4e8f7aefc09eafce038559d37f89eac986838596fa73c8682c288
|
@@ -28,7 +28,7 @@ require_relative 'aws-sdk-mediapackagevod/customizations'
|
|
28
28
|
# structure.
|
29
29
|
#
|
30
30
|
# media_package_vod = Aws::MediaPackageVod::Client.new
|
31
|
-
# resp = media_package_vod.
|
31
|
+
# resp = media_package_vod.configure_logs(params)
|
32
32
|
#
|
33
33
|
# See {Client} for more information.
|
34
34
|
#
|
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-mediapackagevod/customizations'
|
|
48
48
|
# @!group service
|
49
49
|
module Aws::MediaPackageVod
|
50
50
|
|
51
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.21.0'
|
52
52
|
|
53
53
|
end
|
@@ -327,6 +327,52 @@ module Aws::MediaPackageVod
|
|
327
327
|
|
328
328
|
# @!group API Operations
|
329
329
|
|
330
|
+
# Changes the packaging group's properities to configure log
|
331
|
+
# subscription
|
332
|
+
#
|
333
|
+
# @option params [Types::EgressAccessLogs] :egress_access_logs
|
334
|
+
# Configure egress access logging.
|
335
|
+
#
|
336
|
+
# @option params [required, String] :id
|
337
|
+
#
|
338
|
+
# @return [Types::ConfigureLogsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
339
|
+
#
|
340
|
+
# * {Types::ConfigureLogsResponse#arn #arn} => String
|
341
|
+
# * {Types::ConfigureLogsResponse#authorization #authorization} => Types::Authorization
|
342
|
+
# * {Types::ConfigureLogsResponse#domain_name #domain_name} => String
|
343
|
+
# * {Types::ConfigureLogsResponse#egress_access_logs #egress_access_logs} => Types::EgressAccessLogs
|
344
|
+
# * {Types::ConfigureLogsResponse#id #id} => String
|
345
|
+
# * {Types::ConfigureLogsResponse#tags #tags} => Hash<String,String>
|
346
|
+
#
|
347
|
+
# @example Request syntax with placeholder values
|
348
|
+
#
|
349
|
+
# resp = client.configure_logs({
|
350
|
+
# egress_access_logs: {
|
351
|
+
# log_group_name: "__string",
|
352
|
+
# },
|
353
|
+
# id: "__string", # required
|
354
|
+
# })
|
355
|
+
#
|
356
|
+
# @example Response structure
|
357
|
+
#
|
358
|
+
# resp.arn #=> String
|
359
|
+
# resp.authorization.cdn_identifier_secret #=> String
|
360
|
+
# resp.authorization.secrets_role_arn #=> String
|
361
|
+
# resp.domain_name #=> String
|
362
|
+
# resp.egress_access_logs.log_group_name #=> String
|
363
|
+
# resp.id #=> String
|
364
|
+
# resp.tags #=> Hash
|
365
|
+
# resp.tags["__string"] #=> String
|
366
|
+
#
|
367
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-vod-2018-11-07/ConfigureLogs AWS API Documentation
|
368
|
+
#
|
369
|
+
# @overload configure_logs(params = {})
|
370
|
+
# @param [Hash] params ({})
|
371
|
+
def configure_logs(params = {}, options = {})
|
372
|
+
req = build_request(:configure_logs, params)
|
373
|
+
req.send_request(options)
|
374
|
+
end
|
375
|
+
|
330
376
|
# Creates a new MediaPackage VOD Asset resource.
|
331
377
|
#
|
332
378
|
# @option params [required, String] :id
|
@@ -608,6 +654,9 @@ module Aws::MediaPackageVod
|
|
608
654
|
# @option params [Types::Authorization] :authorization
|
609
655
|
# CDN Authorization credentials
|
610
656
|
#
|
657
|
+
# @option params [Types::EgressAccessLogs] :egress_access_logs
|
658
|
+
# Configure egress access logging.
|
659
|
+
#
|
611
660
|
# @option params [required, String] :id
|
612
661
|
#
|
613
662
|
# @option params [Hash<String,String>] :tags
|
@@ -618,6 +667,7 @@ module Aws::MediaPackageVod
|
|
618
667
|
# * {Types::CreatePackagingGroupResponse#arn #arn} => String
|
619
668
|
# * {Types::CreatePackagingGroupResponse#authorization #authorization} => Types::Authorization
|
620
669
|
# * {Types::CreatePackagingGroupResponse#domain_name #domain_name} => String
|
670
|
+
# * {Types::CreatePackagingGroupResponse#egress_access_logs #egress_access_logs} => Types::EgressAccessLogs
|
621
671
|
# * {Types::CreatePackagingGroupResponse#id #id} => String
|
622
672
|
# * {Types::CreatePackagingGroupResponse#tags #tags} => Hash<String,String>
|
623
673
|
#
|
@@ -628,6 +678,9 @@ module Aws::MediaPackageVod
|
|
628
678
|
# cdn_identifier_secret: "__string", # required
|
629
679
|
# secrets_role_arn: "__string", # required
|
630
680
|
# },
|
681
|
+
# egress_access_logs: {
|
682
|
+
# log_group_name: "__string",
|
683
|
+
# },
|
631
684
|
# id: "__string", # required
|
632
685
|
# tags: {
|
633
686
|
# "__string" => "__string",
|
@@ -640,6 +693,7 @@ module Aws::MediaPackageVod
|
|
640
693
|
# resp.authorization.cdn_identifier_secret #=> String
|
641
694
|
# resp.authorization.secrets_role_arn #=> String
|
642
695
|
# resp.domain_name #=> String
|
696
|
+
# resp.egress_access_logs.log_group_name #=> String
|
643
697
|
# resp.id #=> String
|
644
698
|
# resp.tags #=> Hash
|
645
699
|
# resp.tags["__string"] #=> String
|
@@ -867,6 +921,7 @@ module Aws::MediaPackageVod
|
|
867
921
|
# * {Types::DescribePackagingGroupResponse#arn #arn} => String
|
868
922
|
# * {Types::DescribePackagingGroupResponse#authorization #authorization} => Types::Authorization
|
869
923
|
# * {Types::DescribePackagingGroupResponse#domain_name #domain_name} => String
|
924
|
+
# * {Types::DescribePackagingGroupResponse#egress_access_logs #egress_access_logs} => Types::EgressAccessLogs
|
870
925
|
# * {Types::DescribePackagingGroupResponse#id #id} => String
|
871
926
|
# * {Types::DescribePackagingGroupResponse#tags #tags} => Hash<String,String>
|
872
927
|
#
|
@@ -882,6 +937,7 @@ module Aws::MediaPackageVod
|
|
882
937
|
# resp.authorization.cdn_identifier_secret #=> String
|
883
938
|
# resp.authorization.secrets_role_arn #=> String
|
884
939
|
# resp.domain_name #=> String
|
940
|
+
# resp.egress_access_logs.log_group_name #=> String
|
885
941
|
# resp.id #=> String
|
886
942
|
# resp.tags #=> Hash
|
887
943
|
# resp.tags["__string"] #=> String
|
@@ -1069,6 +1125,7 @@ module Aws::MediaPackageVod
|
|
1069
1125
|
# resp.packaging_groups[0].authorization.cdn_identifier_secret #=> String
|
1070
1126
|
# resp.packaging_groups[0].authorization.secrets_role_arn #=> String
|
1071
1127
|
# resp.packaging_groups[0].domain_name #=> String
|
1128
|
+
# resp.packaging_groups[0].egress_access_logs.log_group_name #=> String
|
1072
1129
|
# resp.packaging_groups[0].id #=> String
|
1073
1130
|
# resp.packaging_groups[0].tags #=> Hash
|
1074
1131
|
# resp.packaging_groups[0].tags["__string"] #=> String
|
@@ -1175,6 +1232,7 @@ module Aws::MediaPackageVod
|
|
1175
1232
|
# * {Types::UpdatePackagingGroupResponse#arn #arn} => String
|
1176
1233
|
# * {Types::UpdatePackagingGroupResponse#authorization #authorization} => Types::Authorization
|
1177
1234
|
# * {Types::UpdatePackagingGroupResponse#domain_name #domain_name} => String
|
1235
|
+
# * {Types::UpdatePackagingGroupResponse#egress_access_logs #egress_access_logs} => Types::EgressAccessLogs
|
1178
1236
|
# * {Types::UpdatePackagingGroupResponse#id #id} => String
|
1179
1237
|
# * {Types::UpdatePackagingGroupResponse#tags #tags} => Hash<String,String>
|
1180
1238
|
#
|
@@ -1194,6 +1252,7 @@ module Aws::MediaPackageVod
|
|
1194
1252
|
# resp.authorization.cdn_identifier_secret #=> String
|
1195
1253
|
# resp.authorization.secrets_role_arn #=> String
|
1196
1254
|
# resp.domain_name #=> String
|
1255
|
+
# resp.egress_access_logs.log_group_name #=> String
|
1197
1256
|
# resp.id #=> String
|
1198
1257
|
# resp.tags #=> Hash
|
1199
1258
|
# resp.tags["__string"] #=> String
|
@@ -1220,7 +1279,7 @@ module Aws::MediaPackageVod
|
|
1220
1279
|
params: params,
|
1221
1280
|
config: config)
|
1222
1281
|
context[:gem_name] = 'aws-sdk-mediapackagevod'
|
1223
|
-
context[:gem_version] = '1.
|
1282
|
+
context[:gem_version] = '1.21.0'
|
1224
1283
|
Seahorse::Client::Request.new(handlers, context)
|
1225
1284
|
end
|
1226
1285
|
|
@@ -21,6 +21,9 @@ module Aws::MediaPackageVod
|
|
21
21
|
Authorization = Shapes::StructureShape.new(name: 'Authorization')
|
22
22
|
CmafEncryption = Shapes::StructureShape.new(name: 'CmafEncryption')
|
23
23
|
CmafPackage = Shapes::StructureShape.new(name: 'CmafPackage')
|
24
|
+
ConfigureLogsParameters = Shapes::StructureShape.new(name: 'ConfigureLogsParameters')
|
25
|
+
ConfigureLogsRequest = Shapes::StructureShape.new(name: 'ConfigureLogsRequest')
|
26
|
+
ConfigureLogsResponse = Shapes::StructureShape.new(name: 'ConfigureLogsResponse')
|
24
27
|
CreateAssetRequest = Shapes::StructureShape.new(name: 'CreateAssetRequest')
|
25
28
|
CreateAssetResponse = Shapes::StructureShape.new(name: 'CreateAssetResponse')
|
26
29
|
CreatePackagingConfigurationRequest = Shapes::StructureShape.new(name: 'CreatePackagingConfigurationRequest')
|
@@ -42,6 +45,7 @@ module Aws::MediaPackageVod
|
|
42
45
|
DescribePackagingConfigurationResponse = Shapes::StructureShape.new(name: 'DescribePackagingConfigurationResponse')
|
43
46
|
DescribePackagingGroupRequest = Shapes::StructureShape.new(name: 'DescribePackagingGroupRequest')
|
44
47
|
DescribePackagingGroupResponse = Shapes::StructureShape.new(name: 'DescribePackagingGroupResponse')
|
48
|
+
EgressAccessLogs = Shapes::StructureShape.new(name: 'EgressAccessLogs')
|
45
49
|
EgressEndpoint = Shapes::StructureShape.new(name: 'EgressEndpoint')
|
46
50
|
EncryptionMethod = Shapes::StringShape.new(name: 'EncryptionMethod')
|
47
51
|
ForbiddenException = Shapes::StructureShape.new(name: 'ForbiddenException')
|
@@ -146,6 +150,21 @@ module Aws::MediaPackageVod
|
|
146
150
|
CmafPackage.add_member(:segment_duration_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "segmentDurationSeconds"))
|
147
151
|
CmafPackage.struct_class = Types::CmafPackage
|
148
152
|
|
153
|
+
ConfigureLogsParameters.add_member(:egress_access_logs, Shapes::ShapeRef.new(shape: EgressAccessLogs, location_name: "egressAccessLogs"))
|
154
|
+
ConfigureLogsParameters.struct_class = Types::ConfigureLogsParameters
|
155
|
+
|
156
|
+
ConfigureLogsRequest.add_member(:egress_access_logs, Shapes::ShapeRef.new(shape: EgressAccessLogs, location_name: "egressAccessLogs"))
|
157
|
+
ConfigureLogsRequest.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "id"))
|
158
|
+
ConfigureLogsRequest.struct_class = Types::ConfigureLogsRequest
|
159
|
+
|
160
|
+
ConfigureLogsResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
161
|
+
ConfigureLogsResponse.add_member(:authorization, Shapes::ShapeRef.new(shape: Authorization, location_name: "authorization"))
|
162
|
+
ConfigureLogsResponse.add_member(:domain_name, Shapes::ShapeRef.new(shape: __string, location_name: "domainName"))
|
163
|
+
ConfigureLogsResponse.add_member(:egress_access_logs, Shapes::ShapeRef.new(shape: EgressAccessLogs, location_name: "egressAccessLogs"))
|
164
|
+
ConfigureLogsResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
165
|
+
ConfigureLogsResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
166
|
+
ConfigureLogsResponse.struct_class = Types::ConfigureLogsResponse
|
167
|
+
|
149
168
|
CreateAssetRequest.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "id"))
|
150
169
|
CreateAssetRequest.add_member(:packaging_group_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "packagingGroupId"))
|
151
170
|
CreateAssetRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: __string, location_name: "resourceId"))
|
@@ -185,6 +204,7 @@ module Aws::MediaPackageVod
|
|
185
204
|
CreatePackagingConfigurationResponse.struct_class = Types::CreatePackagingConfigurationResponse
|
186
205
|
|
187
206
|
CreatePackagingGroupRequest.add_member(:authorization, Shapes::ShapeRef.new(shape: Authorization, location_name: "authorization"))
|
207
|
+
CreatePackagingGroupRequest.add_member(:egress_access_logs, Shapes::ShapeRef.new(shape: EgressAccessLogs, location_name: "egressAccessLogs"))
|
188
208
|
CreatePackagingGroupRequest.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "id"))
|
189
209
|
CreatePackagingGroupRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
190
210
|
CreatePackagingGroupRequest.struct_class = Types::CreatePackagingGroupRequest
|
@@ -192,6 +212,7 @@ module Aws::MediaPackageVod
|
|
192
212
|
CreatePackagingGroupResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
193
213
|
CreatePackagingGroupResponse.add_member(:authorization, Shapes::ShapeRef.new(shape: Authorization, location_name: "authorization"))
|
194
214
|
CreatePackagingGroupResponse.add_member(:domain_name, Shapes::ShapeRef.new(shape: __string, location_name: "domainName"))
|
215
|
+
CreatePackagingGroupResponse.add_member(:egress_access_logs, Shapes::ShapeRef.new(shape: EgressAccessLogs, location_name: "egressAccessLogs"))
|
195
216
|
CreatePackagingGroupResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
196
217
|
CreatePackagingGroupResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
197
218
|
CreatePackagingGroupResponse.struct_class = Types::CreatePackagingGroupResponse
|
@@ -261,10 +282,14 @@ module Aws::MediaPackageVod
|
|
261
282
|
DescribePackagingGroupResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
262
283
|
DescribePackagingGroupResponse.add_member(:authorization, Shapes::ShapeRef.new(shape: Authorization, location_name: "authorization"))
|
263
284
|
DescribePackagingGroupResponse.add_member(:domain_name, Shapes::ShapeRef.new(shape: __string, location_name: "domainName"))
|
285
|
+
DescribePackagingGroupResponse.add_member(:egress_access_logs, Shapes::ShapeRef.new(shape: EgressAccessLogs, location_name: "egressAccessLogs"))
|
264
286
|
DescribePackagingGroupResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
265
287
|
DescribePackagingGroupResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
266
288
|
DescribePackagingGroupResponse.struct_class = Types::DescribePackagingGroupResponse
|
267
289
|
|
290
|
+
EgressAccessLogs.add_member(:log_group_name, Shapes::ShapeRef.new(shape: __string, location_name: "logGroupName"))
|
291
|
+
EgressAccessLogs.struct_class = Types::EgressAccessLogs
|
292
|
+
|
268
293
|
EgressEndpoint.add_member(:packaging_configuration_id, Shapes::ShapeRef.new(shape: __string, location_name: "packagingConfigurationId"))
|
269
294
|
EgressEndpoint.add_member(:url, Shapes::ShapeRef.new(shape: __string, location_name: "url"))
|
270
295
|
EgressEndpoint.struct_class = Types::EgressEndpoint
|
@@ -367,11 +392,13 @@ module Aws::MediaPackageVod
|
|
367
392
|
PackagingGroup.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
368
393
|
PackagingGroup.add_member(:authorization, Shapes::ShapeRef.new(shape: Authorization, location_name: "authorization"))
|
369
394
|
PackagingGroup.add_member(:domain_name, Shapes::ShapeRef.new(shape: __string, location_name: "domainName"))
|
395
|
+
PackagingGroup.add_member(:egress_access_logs, Shapes::ShapeRef.new(shape: EgressAccessLogs, location_name: "egressAccessLogs"))
|
370
396
|
PackagingGroup.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
371
397
|
PackagingGroup.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
372
398
|
PackagingGroup.struct_class = Types::PackagingGroup
|
373
399
|
|
374
400
|
PackagingGroupCreateParameters.add_member(:authorization, Shapes::ShapeRef.new(shape: Authorization, location_name: "authorization"))
|
401
|
+
PackagingGroupCreateParameters.add_member(:egress_access_logs, Shapes::ShapeRef.new(shape: EgressAccessLogs, location_name: "egressAccessLogs"))
|
375
402
|
PackagingGroupCreateParameters.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "id"))
|
376
403
|
PackagingGroupCreateParameters.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
377
404
|
PackagingGroupCreateParameters.struct_class = Types::PackagingGroupCreateParameters
|
@@ -423,6 +450,7 @@ module Aws::MediaPackageVod
|
|
423
450
|
UpdatePackagingGroupResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
424
451
|
UpdatePackagingGroupResponse.add_member(:authorization, Shapes::ShapeRef.new(shape: Authorization, location_name: "authorization"))
|
425
452
|
UpdatePackagingGroupResponse.add_member(:domain_name, Shapes::ShapeRef.new(shape: __string, location_name: "domainName"))
|
453
|
+
UpdatePackagingGroupResponse.add_member(:egress_access_logs, Shapes::ShapeRef.new(shape: EgressAccessLogs, location_name: "egressAccessLogs"))
|
426
454
|
UpdatePackagingGroupResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
427
455
|
UpdatePackagingGroupResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
428
456
|
UpdatePackagingGroupResponse.struct_class = Types::UpdatePackagingGroupResponse
|
@@ -467,6 +495,20 @@ module Aws::MediaPackageVod
|
|
467
495
|
"uid" => "mediapackage-vod-2018-11-07",
|
468
496
|
}
|
469
497
|
|
498
|
+
api.add_operation(:configure_logs, Seahorse::Model::Operation.new.tap do |o|
|
499
|
+
o.name = "ConfigureLogs"
|
500
|
+
o.http_method = "PUT"
|
501
|
+
o.http_request_uri = "/packaging_groups/{id}/configure_logs"
|
502
|
+
o.input = Shapes::ShapeRef.new(shape: ConfigureLogsRequest)
|
503
|
+
o.output = Shapes::ShapeRef.new(shape: ConfigureLogsResponse)
|
504
|
+
o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
|
505
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
506
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
507
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
508
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
509
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
510
|
+
end)
|
511
|
+
|
470
512
|
api.add_operation(:create_asset, Seahorse::Model::Operation.new.tap do |o|
|
471
513
|
o.name = "CreateAsset"
|
472
514
|
o.http_method = "POST"
|
@@ -281,6 +281,80 @@ module Aws::MediaPackageVod
|
|
281
281
|
include Aws::Structure
|
282
282
|
end
|
283
283
|
|
284
|
+
# The configuration parameters for egress access logging.
|
285
|
+
#
|
286
|
+
# @!attribute [rw] egress_access_logs
|
287
|
+
# Configure egress access logging.
|
288
|
+
# @return [Types::EgressAccessLogs]
|
289
|
+
#
|
290
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-vod-2018-11-07/ConfigureLogsParameters AWS API Documentation
|
291
|
+
#
|
292
|
+
class ConfigureLogsParameters < Struct.new(
|
293
|
+
:egress_access_logs)
|
294
|
+
SENSITIVE = []
|
295
|
+
include Aws::Structure
|
296
|
+
end
|
297
|
+
|
298
|
+
# @note When making an API call, you may pass ConfigureLogsRequest
|
299
|
+
# data as a hash:
|
300
|
+
#
|
301
|
+
# {
|
302
|
+
# egress_access_logs: {
|
303
|
+
# log_group_name: "__string",
|
304
|
+
# },
|
305
|
+
# id: "__string", # required
|
306
|
+
# }
|
307
|
+
#
|
308
|
+
# @!attribute [rw] egress_access_logs
|
309
|
+
# Configure egress access logging.
|
310
|
+
# @return [Types::EgressAccessLogs]
|
311
|
+
#
|
312
|
+
# @!attribute [rw] id
|
313
|
+
# @return [String]
|
314
|
+
#
|
315
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-vod-2018-11-07/ConfigureLogsRequest AWS API Documentation
|
316
|
+
#
|
317
|
+
class ConfigureLogsRequest < Struct.new(
|
318
|
+
:egress_access_logs,
|
319
|
+
:id)
|
320
|
+
SENSITIVE = []
|
321
|
+
include Aws::Structure
|
322
|
+
end
|
323
|
+
|
324
|
+
# @!attribute [rw] arn
|
325
|
+
# @return [String]
|
326
|
+
#
|
327
|
+
# @!attribute [rw] authorization
|
328
|
+
# CDN Authorization credentials
|
329
|
+
# @return [Types::Authorization]
|
330
|
+
#
|
331
|
+
# @!attribute [rw] domain_name
|
332
|
+
# @return [String]
|
333
|
+
#
|
334
|
+
# @!attribute [rw] egress_access_logs
|
335
|
+
# Configure egress access logging.
|
336
|
+
# @return [Types::EgressAccessLogs]
|
337
|
+
#
|
338
|
+
# @!attribute [rw] id
|
339
|
+
# @return [String]
|
340
|
+
#
|
341
|
+
# @!attribute [rw] tags
|
342
|
+
# A collection of tags associated with a resource
|
343
|
+
# @return [Hash<String,String>]
|
344
|
+
#
|
345
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-vod-2018-11-07/ConfigureLogsResponse AWS API Documentation
|
346
|
+
#
|
347
|
+
class ConfigureLogsResponse < Struct.new(
|
348
|
+
:arn,
|
349
|
+
:authorization,
|
350
|
+
:domain_name,
|
351
|
+
:egress_access_logs,
|
352
|
+
:id,
|
353
|
+
:tags)
|
354
|
+
SENSITIVE = []
|
355
|
+
include Aws::Structure
|
356
|
+
end
|
357
|
+
|
284
358
|
# @note When making an API call, you may pass CreateAssetRequest
|
285
359
|
# data as a hash:
|
286
360
|
#
|
@@ -572,6 +646,9 @@ module Aws::MediaPackageVod
|
|
572
646
|
# cdn_identifier_secret: "__string", # required
|
573
647
|
# secrets_role_arn: "__string", # required
|
574
648
|
# },
|
649
|
+
# egress_access_logs: {
|
650
|
+
# log_group_name: "__string",
|
651
|
+
# },
|
575
652
|
# id: "__string", # required
|
576
653
|
# tags: {
|
577
654
|
# "__string" => "__string",
|
@@ -582,6 +659,10 @@ module Aws::MediaPackageVod
|
|
582
659
|
# CDN Authorization credentials
|
583
660
|
# @return [Types::Authorization]
|
584
661
|
#
|
662
|
+
# @!attribute [rw] egress_access_logs
|
663
|
+
# Configure egress access logging.
|
664
|
+
# @return [Types::EgressAccessLogs]
|
665
|
+
#
|
585
666
|
# @!attribute [rw] id
|
586
667
|
# @return [String]
|
587
668
|
#
|
@@ -593,6 +674,7 @@ module Aws::MediaPackageVod
|
|
593
674
|
#
|
594
675
|
class CreatePackagingGroupRequest < Struct.new(
|
595
676
|
:authorization,
|
677
|
+
:egress_access_logs,
|
596
678
|
:id,
|
597
679
|
:tags)
|
598
680
|
SENSITIVE = []
|
@@ -609,6 +691,10 @@ module Aws::MediaPackageVod
|
|
609
691
|
# @!attribute [rw] domain_name
|
610
692
|
# @return [String]
|
611
693
|
#
|
694
|
+
# @!attribute [rw] egress_access_logs
|
695
|
+
# Configure egress access logging.
|
696
|
+
# @return [Types::EgressAccessLogs]
|
697
|
+
#
|
612
698
|
# @!attribute [rw] id
|
613
699
|
# @return [String]
|
614
700
|
#
|
@@ -622,6 +708,7 @@ module Aws::MediaPackageVod
|
|
622
708
|
:arn,
|
623
709
|
:authorization,
|
624
710
|
:domain_name,
|
711
|
+
:egress_access_logs,
|
625
712
|
:id,
|
626
713
|
:tags)
|
627
714
|
SENSITIVE = []
|
@@ -1006,6 +1093,10 @@ module Aws::MediaPackageVod
|
|
1006
1093
|
# @!attribute [rw] domain_name
|
1007
1094
|
# @return [String]
|
1008
1095
|
#
|
1096
|
+
# @!attribute [rw] egress_access_logs
|
1097
|
+
# Configure egress access logging.
|
1098
|
+
# @return [Types::EgressAccessLogs]
|
1099
|
+
#
|
1009
1100
|
# @!attribute [rw] id
|
1010
1101
|
# @return [String]
|
1011
1102
|
#
|
@@ -1019,12 +1110,34 @@ module Aws::MediaPackageVod
|
|
1019
1110
|
:arn,
|
1020
1111
|
:authorization,
|
1021
1112
|
:domain_name,
|
1113
|
+
:egress_access_logs,
|
1022
1114
|
:id,
|
1023
1115
|
:tags)
|
1024
1116
|
SENSITIVE = []
|
1025
1117
|
include Aws::Structure
|
1026
1118
|
end
|
1027
1119
|
|
1120
|
+
# Configure egress access logging.
|
1121
|
+
#
|
1122
|
+
# @note When making an API call, you may pass EgressAccessLogs
|
1123
|
+
# data as a hash:
|
1124
|
+
#
|
1125
|
+
# {
|
1126
|
+
# log_group_name: "__string",
|
1127
|
+
# }
|
1128
|
+
#
|
1129
|
+
# @!attribute [rw] log_group_name
|
1130
|
+
# Customize the log group name.
|
1131
|
+
# @return [String]
|
1132
|
+
#
|
1133
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-vod-2018-11-07/EgressAccessLogs AWS API Documentation
|
1134
|
+
#
|
1135
|
+
class EgressAccessLogs < Struct.new(
|
1136
|
+
:log_group_name)
|
1137
|
+
SENSITIVE = []
|
1138
|
+
include Aws::Structure
|
1139
|
+
end
|
1140
|
+
|
1028
1141
|
# The endpoint URL used to access an Asset using one
|
1029
1142
|
# PackagingConfiguration.
|
1030
1143
|
#
|
@@ -1639,6 +1752,10 @@ module Aws::MediaPackageVod
|
|
1639
1752
|
# The fully qualified domain name for Assets in the PackagingGroup.
|
1640
1753
|
# @return [String]
|
1641
1754
|
#
|
1755
|
+
# @!attribute [rw] egress_access_logs
|
1756
|
+
# Configure egress access logging.
|
1757
|
+
# @return [Types::EgressAccessLogs]
|
1758
|
+
#
|
1642
1759
|
# @!attribute [rw] id
|
1643
1760
|
# The ID of the PackagingGroup.
|
1644
1761
|
# @return [String]
|
@@ -1653,6 +1770,7 @@ module Aws::MediaPackageVod
|
|
1653
1770
|
:arn,
|
1654
1771
|
:authorization,
|
1655
1772
|
:domain_name,
|
1773
|
+
:egress_access_logs,
|
1656
1774
|
:id,
|
1657
1775
|
:tags)
|
1658
1776
|
SENSITIVE = []
|
@@ -1666,6 +1784,10 @@ module Aws::MediaPackageVod
|
|
1666
1784
|
# CDN Authorization credentials
|
1667
1785
|
# @return [Types::Authorization]
|
1668
1786
|
#
|
1787
|
+
# @!attribute [rw] egress_access_logs
|
1788
|
+
# Configure egress access logging.
|
1789
|
+
# @return [Types::EgressAccessLogs]
|
1790
|
+
#
|
1669
1791
|
# @!attribute [rw] id
|
1670
1792
|
# The ID of the PackagingGroup.
|
1671
1793
|
# @return [String]
|
@@ -1678,6 +1800,7 @@ module Aws::MediaPackageVod
|
|
1678
1800
|
#
|
1679
1801
|
class PackagingGroupCreateParameters < Struct.new(
|
1680
1802
|
:authorization,
|
1803
|
+
:egress_access_logs,
|
1681
1804
|
:id,
|
1682
1805
|
:tags)
|
1683
1806
|
SENSITIVE = []
|
@@ -1916,6 +2039,10 @@ module Aws::MediaPackageVod
|
|
1916
2039
|
# @!attribute [rw] domain_name
|
1917
2040
|
# @return [String]
|
1918
2041
|
#
|
2042
|
+
# @!attribute [rw] egress_access_logs
|
2043
|
+
# Configure egress access logging.
|
2044
|
+
# @return [Types::EgressAccessLogs]
|
2045
|
+
#
|
1919
2046
|
# @!attribute [rw] id
|
1920
2047
|
# @return [String]
|
1921
2048
|
#
|
@@ -1929,6 +2056,7 @@ module Aws::MediaPackageVod
|
|
1929
2056
|
:arn,
|
1930
2057
|
:authorization,
|
1931
2058
|
:domain_name,
|
2059
|
+
:egress_access_logs,
|
1932
2060
|
:id,
|
1933
2061
|
:tags)
|
1934
2062
|
SENSITIVE = []
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mediapackagevod
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.21.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: 2021-02-
|
11
|
+
date: 2021-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|