aws-sdk-mediapackagev2 1.69.0 → 1.70.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
  SHA256:
3
- metadata.gz: 818f3a39dd6a8fdcd967c3571e861b1a9411488abc0b766d6bfddfcf5cb6f563
4
- data.tar.gz: 4d76d30c58d7cb1cc76159acf1205ab1cd4effd386b83250adf2aa0a4c91bdab
3
+ metadata.gz: 9faf5f0ad26c1d22548bfa6a421fa9aeb74f5ef8d7c3ac4632a18bf18f0c6bac
4
+ data.tar.gz: dd7bdb089b4764f00a5ad9aeb628a55b1afd16359e461a2cfde245c9b791c9e5
5
5
  SHA512:
6
- metadata.gz: 2c8b5fc625b6b9b7761a3499ae3a1883c6c50b48d160d8b0eb8e31a5e07dc9d50b0f0c79bf93289dc5d7e6dcdf2abd8ef0fc4a2ff1649d04bcab8cd4da3ddc1f
7
- data.tar.gz: 881dbfb3eb5dc464df9d5825eabf0e6ed8c144744ba0d89a6f768b9d575fca21154bb8c69d2d05cf4dadcfb37b6ed9a361fab943993f73a736961c29b3f15415
6
+ metadata.gz: c6bc293ee0665e1d7c5b1c148f6d119f1b8c7310c9df4d9dcd4e87163ec2d93e61799c68056cfcc8a4dba2d524beb7b1f68ffa07695c13251e6b3a010de7a136
7
+ data.tar.gz: e6f95b5792ca3ecbf43e10b1f620d313e53bc067812fd44dd817180426ffabdf84edae8787544443090d893cd49763e987abb87c2a83718970bcdedc71e8ee6c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.70.0 (2026-08-07)
5
+ ------------------
6
+
7
+ * Feature - StreamNameOutputMode - a new optional field on MediaPackageV2 OriginEndpoints that lets customers choose whether egress manifests use numeric stream indices (default) or encoder-assigned stream names from the input
8
+
4
9
  1.69.0 (2026-07-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.69.0
1
+ 1.70.0
@@ -1140,6 +1140,16 @@ module Aws::MediaPackageV2
1140
1140
  # endpoint. This setting applies to all manifest types on the endpoint.
1141
1141
  # If you don't specify a value, the default is `UNDERSCORE`.
1142
1142
  #
1143
+ # @option params [String] :stream_name_output_mode
1144
+ # The output mode for stream names in egress manifests. This setting is
1145
+ # valid only when the associated channel's `InputType` is `HLS`. You
1146
+ # can't change the stream name output mode after you create the
1147
+ # endpoint.
1148
+ #
1149
+ # `INDEX` uses numeric indices for stream names (for example, 1, 2, 3).
1150
+ # `PASSTHROUGH_NAME` uses the stream names from the input manifest. If
1151
+ # you don't specify a value, the default is `INDEX`.
1152
+ #
1143
1153
  # @option params [Hash<String,String>] :tags
1144
1154
  # A comma-separated list of tag key:value pairs that you define. For
1145
1155
  # example:
@@ -1166,6 +1176,7 @@ module Aws::MediaPackageV2
1166
1176
  # * {Types::CreateOriginEndpointResponse#mss_manifests #mss_manifests} => Array&lt;Types::GetMssManifestConfiguration&gt;
1167
1177
  # * {Types::CreateOriginEndpointResponse#force_endpoint_error_configuration #force_endpoint_error_configuration} => Types::ForceEndpointErrorConfiguration
1168
1178
  # * {Types::CreateOriginEndpointResponse#uri_separator #uri_separator} => String
1179
+ # * {Types::CreateOriginEndpointResponse#stream_name_output_mode #stream_name_output_mode} => String
1169
1180
  # * {Types::CreateOriginEndpointResponse#etag #etag} => String
1170
1181
  # * {Types::CreateOriginEndpointResponse#tags #tags} => Hash&lt;String,String&gt;
1171
1182
  #
@@ -1262,6 +1273,7 @@ module Aws::MediaPackageV2
1262
1273
  # ts_use_audio_rendition_group: true,
1263
1274
  # },
1264
1275
  # startover_window_seconds: 300,
1276
+ # stream_name_output_mode: "INDEX",
1265
1277
  # tags: {
1266
1278
  # "key1" => "value1",
1267
1279
  # "key2" => "value2",
@@ -1370,6 +1382,7 @@ module Aws::MediaPackageV2
1370
1382
  # ts_use_audio_rendition_group: true,
1371
1383
  # },
1372
1384
  # startover_window_seconds: 300,
1385
+ # stream_name_output_mode: "INDEX",
1373
1386
  # tags: {
1374
1387
  # "key1" => "value1",
1375
1388
  # "key2" => "value2",
@@ -2095,6 +2108,7 @@ module Aws::MediaPackageV2
2095
2108
  # endpoint_error_conditions: ["STALE_MANIFEST"], # accepts STALE_MANIFEST, INCOMPLETE_MANIFEST, MISSING_DRM_KEY, SLATE_INPUT
2096
2109
  # },
2097
2110
  # uri_separator: "UNDERSCORE", # accepts UNDERSCORE, HYPHEN
2111
+ # stream_name_output_mode: "INDEX", # accepts INDEX, PASSTHROUGH_NAME
2098
2112
  # tags: {
2099
2113
  # "TagKey" => "TagValue",
2100
2114
  # },
@@ -2230,6 +2244,7 @@ module Aws::MediaPackageV2
2230
2244
  # resp.force_endpoint_error_configuration.endpoint_error_conditions #=> Array
2231
2245
  # resp.force_endpoint_error_configuration.endpoint_error_conditions[0] #=> String, one of "STALE_MANIFEST", "INCOMPLETE_MANIFEST", "MISSING_DRM_KEY", "SLATE_INPUT"
2232
2246
  # resp.uri_separator #=> String, one of "UNDERSCORE", "HYPHEN"
2247
+ # resp.stream_name_output_mode #=> String, one of "INDEX", "PASSTHROUGH_NAME"
2233
2248
  # resp.etag #=> String
2234
2249
  # resp.tags #=> Hash
2235
2250
  # resp.tags["TagKey"] #=> String
@@ -2902,6 +2917,7 @@ module Aws::MediaPackageV2
2902
2917
  # * {Types::GetOriginEndpointResponse#mss_manifests #mss_manifests} => Array&lt;Types::GetMssManifestConfiguration&gt;
2903
2918
  # * {Types::GetOriginEndpointResponse#force_endpoint_error_configuration #force_endpoint_error_configuration} => Types::ForceEndpointErrorConfiguration
2904
2919
  # * {Types::GetOriginEndpointResponse#uri_separator #uri_separator} => String
2920
+ # * {Types::GetOriginEndpointResponse#stream_name_output_mode #stream_name_output_mode} => String
2905
2921
  # * {Types::GetOriginEndpointResponse#etag #etag} => String
2906
2922
  # * {Types::GetOriginEndpointResponse#tags #tags} => Hash&lt;String,String&gt;
2907
2923
  #
@@ -3231,6 +3247,7 @@ module Aws::MediaPackageV2
3231
3247
  # resp.force_endpoint_error_configuration.endpoint_error_conditions #=> Array
3232
3248
  # resp.force_endpoint_error_configuration.endpoint_error_conditions[0] #=> String, one of "STALE_MANIFEST", "INCOMPLETE_MANIFEST", "MISSING_DRM_KEY", "SLATE_INPUT"
3233
3249
  # resp.uri_separator #=> String, one of "UNDERSCORE", "HYPHEN"
3250
+ # resp.stream_name_output_mode #=> String, one of "INDEX", "PASSTHROUGH_NAME"
3234
3251
  # resp.etag #=> String
3235
3252
  # resp.tags #=> Hash
3236
3253
  # resp.tags["TagKey"] #=> String
@@ -4049,6 +4066,7 @@ module Aws::MediaPackageV2
4049
4066
  # resp.items[0].force_endpoint_error_configuration.endpoint_error_conditions #=> Array
4050
4067
  # resp.items[0].force_endpoint_error_configuration.endpoint_error_conditions[0] #=> String, one of "STALE_MANIFEST", "INCOMPLETE_MANIFEST", "MISSING_DRM_KEY", "SLATE_INPUT"
4051
4068
  # resp.items[0].uri_separator #=> String, one of "UNDERSCORE", "HYPHEN"
4069
+ # resp.items[0].stream_name_output_mode #=> String, one of "INDEX", "PASSTHROUGH_NAME"
4052
4070
  # resp.next_token #=> String
4053
4071
  #
4054
4072
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/ListOriginEndpoints AWS API Documentation
@@ -4769,6 +4787,11 @@ module Aws::MediaPackageV2
4769
4787
  # If you don't specify a value in the update request, the current value
4770
4788
  # is preserved.
4771
4789
  #
4790
+ # @option params [String] :stream_name_output_mode
4791
+ # The output mode for stream names in egress manifests. If you provide a
4792
+ # value, it must match the current value. You can't change the stream
4793
+ # name output mode after you create the endpoint.
4794
+ #
4772
4795
  # @option params [String] :etag
4773
4796
  # The expected current Entity Tag (ETag) for the resource. If the
4774
4797
  # specified ETag does not match the resource's current entity tag, the
@@ -4791,6 +4814,7 @@ module Aws::MediaPackageV2
4791
4814
  # * {Types::UpdateOriginEndpointResponse#mss_manifests #mss_manifests} => Array&lt;Types::GetMssManifestConfiguration&gt;
4792
4815
  # * {Types::UpdateOriginEndpointResponse#force_endpoint_error_configuration #force_endpoint_error_configuration} => Types::ForceEndpointErrorConfiguration
4793
4816
  # * {Types::UpdateOriginEndpointResponse#uri_separator #uri_separator} => String
4817
+ # * {Types::UpdateOriginEndpointResponse#stream_name_output_mode #stream_name_output_mode} => String
4794
4818
  # * {Types::UpdateOriginEndpointResponse#etag #etag} => String
4795
4819
  # * {Types::UpdateOriginEndpointResponse#tags #tags} => Hash&lt;String,String&gt;
4796
4820
  # * {Types::UpdateOriginEndpointResponse#dash_manifests #dash_manifests} => Array&lt;Types::GetDashManifestConfiguration&gt;
@@ -5296,6 +5320,7 @@ module Aws::MediaPackageV2
5296
5320
  # endpoint_error_conditions: ["STALE_MANIFEST"], # accepts STALE_MANIFEST, INCOMPLETE_MANIFEST, MISSING_DRM_KEY, SLATE_INPUT
5297
5321
  # },
5298
5322
  # uri_separator: "UNDERSCORE", # accepts UNDERSCORE, HYPHEN
5323
+ # stream_name_output_mode: "INDEX", # accepts INDEX, PASSTHROUGH_NAME
5299
5324
  # etag: "EntityTag",
5300
5325
  # })
5301
5326
  #
@@ -5385,6 +5410,7 @@ module Aws::MediaPackageV2
5385
5410
  # resp.force_endpoint_error_configuration.endpoint_error_conditions #=> Array
5386
5411
  # resp.force_endpoint_error_configuration.endpoint_error_conditions[0] #=> String, one of "STALE_MANIFEST", "INCOMPLETE_MANIFEST", "MISSING_DRM_KEY", "SLATE_INPUT"
5387
5412
  # resp.uri_separator #=> String, one of "UNDERSCORE", "HYPHEN"
5413
+ # resp.stream_name_output_mode #=> String, one of "INDEX", "PASSTHROUGH_NAME"
5388
5414
  # resp.etag #=> String
5389
5415
  # resp.tags #=> Hash
5390
5416
  # resp.tags["TagKey"] #=> String
@@ -5460,7 +5486,7 @@ module Aws::MediaPackageV2
5460
5486
  tracer: tracer
5461
5487
  )
5462
5488
  context[:gem_name] = 'aws-sdk-mediapackagev2'
5463
- context[:gem_version] = '1.69.0'
5489
+ context[:gem_version] = '1.70.0'
5464
5490
  Seahorse::Client::Request.new(handlers, context)
5465
5491
  end
5466
5492
 
@@ -227,6 +227,7 @@ module Aws::MediaPackageV2
227
227
  SpekeKeyProviderRoleArnString = Shapes::StringShape.new(name: 'SpekeKeyProviderRoleArnString')
228
228
  SpekeKeyProviderUrlString = Shapes::StringShape.new(name: 'SpekeKeyProviderUrlString')
229
229
  StartTag = Shapes::StructureShape.new(name: 'StartTag')
230
+ StreamNameOutputMode = Shapes::StringShape.new(name: 'StreamNameOutputMode')
230
231
  String = Shapes::StringShape.new(name: 'String')
231
232
  SyntheticTimestamp_date_time = Shapes::TimestampShape.new(name: 'SyntheticTimestamp_date_time', timestampFormat: "iso8601")
232
233
  TagArn = Shapes::StringShape.new(name: 'TagArn')
@@ -437,6 +438,7 @@ module Aws::MediaPackageV2
437
438
  CreateOriginEndpointRequest.add_member(:mss_manifests, Shapes::ShapeRef.new(shape: CreateMssManifests, location_name: "MssManifests"))
438
439
  CreateOriginEndpointRequest.add_member(:force_endpoint_error_configuration, Shapes::ShapeRef.new(shape: ForceEndpointErrorConfiguration, location_name: "ForceEndpointErrorConfiguration"))
439
440
  CreateOriginEndpointRequest.add_member(:uri_separator, Shapes::ShapeRef.new(shape: UriSeparator, location_name: "UriSeparator"))
441
+ CreateOriginEndpointRequest.add_member(:stream_name_output_mode, Shapes::ShapeRef.new(shape: StreamNameOutputMode, location_name: "StreamNameOutputMode"))
440
442
  CreateOriginEndpointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
441
443
  CreateOriginEndpointRequest.struct_class = Types::CreateOriginEndpointRequest
442
444
 
@@ -456,6 +458,7 @@ module Aws::MediaPackageV2
456
458
  CreateOriginEndpointResponse.add_member(:mss_manifests, Shapes::ShapeRef.new(shape: GetMssManifests, location_name: "MssManifests"))
457
459
  CreateOriginEndpointResponse.add_member(:force_endpoint_error_configuration, Shapes::ShapeRef.new(shape: ForceEndpointErrorConfiguration, location_name: "ForceEndpointErrorConfiguration"))
458
460
  CreateOriginEndpointResponse.add_member(:uri_separator, Shapes::ShapeRef.new(shape: UriSeparator, location_name: "UriSeparator"))
461
+ CreateOriginEndpointResponse.add_member(:stream_name_output_mode, Shapes::ShapeRef.new(shape: StreamNameOutputMode, location_name: "StreamNameOutputMode"))
459
462
  CreateOriginEndpointResponse.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location_name: "ETag"))
460
463
  CreateOriginEndpointResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
461
464
  CreateOriginEndpointResponse.struct_class = Types::CreateOriginEndpointResponse
@@ -736,6 +739,7 @@ module Aws::MediaPackageV2
736
739
  GetOriginEndpointResponse.add_member(:mss_manifests, Shapes::ShapeRef.new(shape: GetMssManifests, location_name: "MssManifests"))
737
740
  GetOriginEndpointResponse.add_member(:force_endpoint_error_configuration, Shapes::ShapeRef.new(shape: ForceEndpointErrorConfiguration, location_name: "ForceEndpointErrorConfiguration"))
738
741
  GetOriginEndpointResponse.add_member(:uri_separator, Shapes::ShapeRef.new(shape: UriSeparator, location_name: "UriSeparator"))
742
+ GetOriginEndpointResponse.add_member(:stream_name_output_mode, Shapes::ShapeRef.new(shape: StreamNameOutputMode, location_name: "StreamNameOutputMode"))
739
743
  GetOriginEndpointResponse.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location_name: "ETag"))
740
744
  GetOriginEndpointResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
741
745
  GetOriginEndpointResponse.struct_class = Types::GetOriginEndpointResponse
@@ -880,6 +884,7 @@ module Aws::MediaPackageV2
880
884
  OriginEndpointListConfiguration.add_member(:mss_manifests, Shapes::ShapeRef.new(shape: ListMssManifests, location_name: "MssManifests"))
881
885
  OriginEndpointListConfiguration.add_member(:force_endpoint_error_configuration, Shapes::ShapeRef.new(shape: ForceEndpointErrorConfiguration, location_name: "ForceEndpointErrorConfiguration"))
882
886
  OriginEndpointListConfiguration.add_member(:uri_separator, Shapes::ShapeRef.new(shape: UriSeparator, location_name: "UriSeparator"))
887
+ OriginEndpointListConfiguration.add_member(:stream_name_output_mode, Shapes::ShapeRef.new(shape: StreamNameOutputMode, location_name: "StreamNameOutputMode"))
883
888
  OriginEndpointListConfiguration.struct_class = Types::OriginEndpointListConfiguration
884
889
 
885
890
  OriginEndpointsList.member = Shapes::ShapeRef.new(shape: OriginEndpointListConfiguration)
@@ -1042,6 +1047,7 @@ module Aws::MediaPackageV2
1042
1047
  UpdateOriginEndpointRequest.add_member(:mss_manifests, Shapes::ShapeRef.new(shape: CreateMssManifests, location_name: "MssManifests"))
1043
1048
  UpdateOriginEndpointRequest.add_member(:force_endpoint_error_configuration, Shapes::ShapeRef.new(shape: ForceEndpointErrorConfiguration, location_name: "ForceEndpointErrorConfiguration"))
1044
1049
  UpdateOriginEndpointRequest.add_member(:uri_separator, Shapes::ShapeRef.new(shape: UriSeparator, location_name: "UriSeparator"))
1050
+ UpdateOriginEndpointRequest.add_member(:stream_name_output_mode, Shapes::ShapeRef.new(shape: StreamNameOutputMode, location_name: "StreamNameOutputMode"))
1045
1051
  UpdateOriginEndpointRequest.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location: "header", location_name: "x-amzn-update-if-match"))
1046
1052
  UpdateOriginEndpointRequest.struct_class = Types::UpdateOriginEndpointRequest
1047
1053
 
@@ -1060,6 +1066,7 @@ module Aws::MediaPackageV2
1060
1066
  UpdateOriginEndpointResponse.add_member(:mss_manifests, Shapes::ShapeRef.new(shape: GetMssManifests, location_name: "MssManifests"))
1061
1067
  UpdateOriginEndpointResponse.add_member(:force_endpoint_error_configuration, Shapes::ShapeRef.new(shape: ForceEndpointErrorConfiguration, location_name: "ForceEndpointErrorConfiguration"))
1062
1068
  UpdateOriginEndpointResponse.add_member(:uri_separator, Shapes::ShapeRef.new(shape: UriSeparator, location_name: "UriSeparator"))
1069
+ UpdateOriginEndpointResponse.add_member(:stream_name_output_mode, Shapes::ShapeRef.new(shape: StreamNameOutputMode, location_name: "StreamNameOutputMode"))
1063
1070
  UpdateOriginEndpointResponse.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location_name: "ETag"))
1064
1071
  UpdateOriginEndpointResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1065
1072
  UpdateOriginEndpointResponse.add_member(:dash_manifests, Shapes::ShapeRef.new(shape: GetDashManifests, location_name: "DashManifests"))
@@ -1147,6 +1147,17 @@ module Aws::MediaPackageV2
1147
1147
  # `UNDERSCORE`.
1148
1148
  # @return [String]
1149
1149
  #
1150
+ # @!attribute [rw] stream_name_output_mode
1151
+ # The output mode for stream names in egress manifests. This setting
1152
+ # is valid only when the associated channel's `InputType` is `HLS`.
1153
+ # You can't change the stream name output mode after you create the
1154
+ # endpoint.
1155
+ #
1156
+ # `INDEX` uses numeric indices for stream names (for example, 1, 2,
1157
+ # 3). `PASSTHROUGH_NAME` uses the stream names from the input
1158
+ # manifest. If you don't specify a value, the default is `INDEX`.
1159
+ # @return [String]
1160
+ #
1150
1161
  # @!attribute [rw] tags
1151
1162
  # A comma-separated list of tag key:value pairs that you define. For
1152
1163
  # example:
@@ -1173,6 +1184,7 @@ module Aws::MediaPackageV2
1173
1184
  :mss_manifests,
1174
1185
  :force_endpoint_error_configuration,
1175
1186
  :uri_separator,
1187
+ :stream_name_output_mode,
1176
1188
  :tags)
1177
1189
  SENSITIVE = []
1178
1190
  include Aws::Structure
@@ -1253,6 +1265,11 @@ module Aws::MediaPackageV2
1253
1265
  # endpoint.
1254
1266
  # @return [String]
1255
1267
  #
1268
+ # @!attribute [rw] stream_name_output_mode
1269
+ # The output mode for stream names in egress manifests for this origin
1270
+ # endpoint.
1271
+ # @return [String]
1272
+ #
1256
1273
  # @!attribute [rw] etag
1257
1274
  # The current Entity Tag (ETag) associated with this resource. The
1258
1275
  # entity tag can be used to safely make concurrent updates to the
@@ -1283,6 +1300,7 @@ module Aws::MediaPackageV2
1283
1300
  :mss_manifests,
1284
1301
  :force_endpoint_error_configuration,
1285
1302
  :uri_separator,
1303
+ :stream_name_output_mode,
1286
1304
  :etag,
1287
1305
  :tags)
1288
1306
  SENSITIVE = []
@@ -2864,6 +2882,11 @@ module Aws::MediaPackageV2
2864
2882
  # endpoint.
2865
2883
  # @return [String]
2866
2884
  #
2885
+ # @!attribute [rw] stream_name_output_mode
2886
+ # The output mode for stream names in egress manifests for this origin
2887
+ # endpoint.
2888
+ # @return [String]
2889
+ #
2867
2890
  # @!attribute [rw] etag
2868
2891
  # The current Entity Tag (ETag) associated with this resource. The
2869
2892
  # entity tag can be used to safely make concurrent updates to the
@@ -2895,6 +2918,7 @@ module Aws::MediaPackageV2
2895
2918
  :mss_manifests,
2896
2919
  :force_endpoint_error_configuration,
2897
2920
  :uri_separator,
2921
+ :stream_name_output_mode,
2898
2922
  :etag,
2899
2923
  :tags)
2900
2924
  SENSITIVE = []
@@ -3532,6 +3556,11 @@ module Aws::MediaPackageV2
3532
3556
  # endpoint.
3533
3557
  # @return [String]
3534
3558
  #
3559
+ # @!attribute [rw] stream_name_output_mode
3560
+ # The output mode for stream names in egress manifests for this origin
3561
+ # endpoint.
3562
+ # @return [String]
3563
+ #
3535
3564
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/OriginEndpointListConfiguration AWS API Documentation
3536
3565
  #
3537
3566
  class OriginEndpointListConfiguration < Struct.new(
@@ -3548,7 +3577,8 @@ module Aws::MediaPackageV2
3548
3577
  :dash_manifests,
3549
3578
  :mss_manifests,
3550
3579
  :force_endpoint_error_configuration,
3551
- :uri_separator)
3580
+ :uri_separator,
3581
+ :stream_name_output_mode)
3552
3582
  SENSITIVE = []
3553
3583
  include Aws::Structure
3554
3584
  end
@@ -4457,6 +4487,12 @@ module Aws::MediaPackageV2
4457
4487
  # current value is preserved.
4458
4488
  # @return [String]
4459
4489
  #
4490
+ # @!attribute [rw] stream_name_output_mode
4491
+ # The output mode for stream names in egress manifests. If you provide
4492
+ # a value, it must match the current value. You can't change the
4493
+ # stream name output mode after you create the endpoint.
4494
+ # @return [String]
4495
+ #
4460
4496
  # @!attribute [rw] etag
4461
4497
  # The expected current Entity Tag (ETag) for the resource. If the
4462
4498
  # specified ETag does not match the resource's current entity tag,
@@ -4479,6 +4515,7 @@ module Aws::MediaPackageV2
4479
4515
  :mss_manifests,
4480
4516
  :force_endpoint_error_configuration,
4481
4517
  :uri_separator,
4518
+ :stream_name_output_mode,
4482
4519
  :etag)
4483
4520
  SENSITIVE = []
4484
4521
  include Aws::Structure
@@ -4555,6 +4592,11 @@ module Aws::MediaPackageV2
4555
4592
  # endpoint.
4556
4593
  # @return [String]
4557
4594
  #
4595
+ # @!attribute [rw] stream_name_output_mode
4596
+ # The output mode for stream names in egress manifests for this origin
4597
+ # endpoint.
4598
+ # @return [String]
4599
+ #
4558
4600
  # @!attribute [rw] etag
4559
4601
  # The current Entity Tag (ETag) associated with this resource. The
4560
4602
  # entity tag can be used to safely make concurrent updates to the
@@ -4588,6 +4630,7 @@ module Aws::MediaPackageV2
4588
4630
  :mss_manifests,
4589
4631
  :force_endpoint_error_configuration,
4590
4632
  :uri_separator,
4633
+ :stream_name_output_mode,
4591
4634
  :etag,
4592
4635
  :tags,
4593
4636
  :dash_manifests)
@@ -55,7 +55,7 @@ module Aws::MediaPackageV2
55
55
  autoload :EndpointProvider, 'aws-sdk-mediapackagev2/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-mediapackagev2/endpoints'
57
57
 
58
- GEM_VERSION = '1.69.0'
58
+ GEM_VERSION = '1.70.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -221,6 +221,7 @@ module Aws
221
221
  def mss_manifests: () -> ::Array[Types::GetMssManifestConfiguration]
222
222
  def force_endpoint_error_configuration: () -> Types::ForceEndpointErrorConfiguration
223
223
  def uri_separator: () -> ("UNDERSCORE" | "HYPHEN")
224
+ def stream_name_output_mode: () -> ("INDEX" | "PASSTHROUGH_NAME")
224
225
  def etag: () -> ::String
225
226
  def tags: () -> ::Hash[::String, ::String]
226
227
  end
@@ -250,6 +251,7 @@ module Aws
250
251
  endpoint_error_conditions: Array[("STALE_MANIFEST" | "INCOMPLETE_MANIFEST" | "MISSING_DRM_KEY" | "SLATE_INPUT")]?
251
252
  },
252
253
  ?uri_separator: ("UNDERSCORE" | "HYPHEN"),
254
+ ?stream_name_output_mode: ("INDEX" | "PASSTHROUGH_NAME"),
253
255
  ?tags: Hash[::String, ::String]
254
256
  ) -> _CreateOriginEndpointResponseSuccess
255
257
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOriginEndpointResponseSuccess
@@ -405,6 +407,7 @@ module Aws
405
407
  def mss_manifests: () -> ::Array[Types::GetMssManifestConfiguration]
406
408
  def force_endpoint_error_configuration: () -> Types::ForceEndpointErrorConfiguration
407
409
  def uri_separator: () -> ("UNDERSCORE" | "HYPHEN")
410
+ def stream_name_output_mode: () -> ("INDEX" | "PASSTHROUGH_NAME")
408
411
  def etag: () -> ::String
409
412
  def tags: () -> ::Hash[::String, ::String]
410
413
  end
@@ -636,6 +639,7 @@ module Aws
636
639
  def mss_manifests: () -> ::Array[Types::GetMssManifestConfiguration]
637
640
  def force_endpoint_error_configuration: () -> Types::ForceEndpointErrorConfiguration
638
641
  def uri_separator: () -> ("UNDERSCORE" | "HYPHEN")
642
+ def stream_name_output_mode: () -> ("INDEX" | "PASSTHROUGH_NAME")
639
643
  def etag: () -> ::String
640
644
  def tags: () -> ::Hash[::String, ::String]
641
645
  def dash_manifests: () -> ::Array[Types::GetDashManifestConfiguration]
@@ -665,6 +669,7 @@ module Aws
665
669
  endpoint_error_conditions: Array[("STALE_MANIFEST" | "INCOMPLETE_MANIFEST" | "MISSING_DRM_KEY" | "SLATE_INPUT")]?
666
670
  },
667
671
  ?uri_separator: ("UNDERSCORE" | "HYPHEN"),
672
+ ?stream_name_output_mode: ("INDEX" | "PASSTHROUGH_NAME"),
668
673
  ?etag: ::String
669
674
  ) -> _UpdateOriginEndpointResponseSuccess
670
675
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateOriginEndpointResponseSuccess
data/sig/types.rbs CHANGED
@@ -214,6 +214,7 @@ module Aws::MediaPackageV2
214
214
  attr_accessor mss_manifests: ::Array[Types::CreateMssManifestConfiguration]
215
215
  attr_accessor force_endpoint_error_configuration: Types::ForceEndpointErrorConfiguration
216
216
  attr_accessor uri_separator: ("UNDERSCORE" | "HYPHEN")
217
+ attr_accessor stream_name_output_mode: ("INDEX" | "PASSTHROUGH_NAME")
217
218
  attr_accessor tags: ::Hash[::String, ::String]
218
219
  SENSITIVE: []
219
220
  end
@@ -235,6 +236,7 @@ module Aws::MediaPackageV2
235
236
  attr_accessor mss_manifests: ::Array[Types::GetMssManifestConfiguration]
236
237
  attr_accessor force_endpoint_error_configuration: Types::ForceEndpointErrorConfiguration
237
238
  attr_accessor uri_separator: ("UNDERSCORE" | "HYPHEN")
239
+ attr_accessor stream_name_output_mode: ("INDEX" | "PASSTHROUGH_NAME")
238
240
  attr_accessor etag: ::String
239
241
  attr_accessor tags: ::Hash[::String, ::String]
240
242
  SENSITIVE: []
@@ -575,6 +577,7 @@ module Aws::MediaPackageV2
575
577
  attr_accessor mss_manifests: ::Array[Types::GetMssManifestConfiguration]
576
578
  attr_accessor force_endpoint_error_configuration: Types::ForceEndpointErrorConfiguration
577
579
  attr_accessor uri_separator: ("UNDERSCORE" | "HYPHEN")
580
+ attr_accessor stream_name_output_mode: ("INDEX" | "PASSTHROUGH_NAME")
578
581
  attr_accessor etag: ::String
579
582
  attr_accessor tags: ::Hash[::String, ::String]
580
583
  SENSITIVE: []
@@ -749,6 +752,7 @@ module Aws::MediaPackageV2
749
752
  attr_accessor mss_manifests: ::Array[Types::ListMssManifestConfiguration]
750
753
  attr_accessor force_endpoint_error_configuration: Types::ForceEndpointErrorConfiguration
751
754
  attr_accessor uri_separator: ("UNDERSCORE" | "HYPHEN")
755
+ attr_accessor stream_name_output_mode: ("INDEX" | "PASSTHROUGH_NAME")
752
756
  SENSITIVE: []
753
757
  end
754
758
 
@@ -950,6 +954,7 @@ module Aws::MediaPackageV2
950
954
  attr_accessor mss_manifests: ::Array[Types::CreateMssManifestConfiguration]
951
955
  attr_accessor force_endpoint_error_configuration: Types::ForceEndpointErrorConfiguration
952
956
  attr_accessor uri_separator: ("UNDERSCORE" | "HYPHEN")
957
+ attr_accessor stream_name_output_mode: ("INDEX" | "PASSTHROUGH_NAME")
953
958
  attr_accessor etag: ::String
954
959
  SENSITIVE: []
955
960
  end
@@ -970,6 +975,7 @@ module Aws::MediaPackageV2
970
975
  attr_accessor mss_manifests: ::Array[Types::GetMssManifestConfiguration]
971
976
  attr_accessor force_endpoint_error_configuration: Types::ForceEndpointErrorConfiguration
972
977
  attr_accessor uri_separator: ("UNDERSCORE" | "HYPHEN")
978
+ attr_accessor stream_name_output_mode: ("INDEX" | "PASSTHROUGH_NAME")
973
979
  attr_accessor etag: ::String
974
980
  attr_accessor tags: ::Hash[::String, ::String]
975
981
  attr_accessor dash_manifests: ::Array[Types::GetDashManifestConfiguration]
@@ -978,7 +984,7 @@ module Aws::MediaPackageV2
978
984
 
979
985
  class ValidationException
980
986
  attr_accessor message: ::String
981
- attr_accessor validation_exception_type: ("CONTAINER_TYPE_IMMUTABLE" | "INVALID_PAGINATION_TOKEN" | "INVALID_PAGINATION_MAX_RESULTS" | "INVALID_POLICY" | "INVALID_ROLE_ARN" | "MANIFEST_NAME_COLLISION" | "ENCRYPTION_METHOD_CONTAINER_TYPE_MISMATCH" | "CENC_IV_INCOMPATIBLE" | "ENCRYPTION_CONTRACT_WITHOUT_AUDIO_RENDITION_INCOMPATIBLE" | "ENCRYPTION_CONTRACT_WITH_ISM_CONTAINER_INCOMPATIBLE" | "ENCRYPTION_CONTRACT_UNENCRYPTED" | "ENCRYPTION_CONTRACT_SHARED" | "NUM_MANIFESTS_LOW" | "NUM_MANIFESTS_HIGH" | "MANIFEST_DRM_SYSTEMS_INCOMPATIBLE" | "DRM_SYSTEMS_ENCRYPTION_METHOD_INCOMPATIBLE" | "ROLE_ARN_NOT_ASSUMABLE" | "ROLE_ARN_LENGTH_OUT_OF_RANGE" | "ROLE_ARN_INVALID_FORMAT" | "URL_INVALID" | "URL_SCHEME" | "URL_USER_INFO" | "URL_PORT" | "URL_UNKNOWN_HOST" | "URL_LOCAL_ADDRESS" | "URL_LOOPBACK_ADDRESS" | "URL_LINK_LOCAL_ADDRESS" | "URL_MULTICAST_ADDRESS" | "MEMBER_INVALID" | "MEMBER_MISSING" | "MEMBER_MIN_VALUE" | "MEMBER_MAX_VALUE" | "MEMBER_MIN_LENGTH" | "MEMBER_MAX_LENGTH" | "MEMBER_INVALID_ENUM_VALUE" | "MEMBER_DOES_NOT_MATCH_PATTERN" | "INVALID_MANIFEST_FILTER" | "INVALID_DRM_SETTINGS" | "INVALID_TIME_DELAY_SECONDS" | "END_TIME_EARLIER_THAN_START_TIME" | "TS_CONTAINER_TYPE_WITH_DASH_MANIFEST" | "DIRECT_MODE_WITH_TIMING_SOURCE" | "NONE_MODE_WITH_TIMING_SOURCE" | "TIMING_SOURCE_MISSING" | "UPDATE_PERIOD_SMALLER_THAN_SEGMENT_DURATION" | "PERIOD_TRIGGERS_NONE_SPECIFIED_WITH_ADDITIONAL_VALUES" | "DRM_SIGNALING_MISMATCH_SEGMENT_ENCRYPTION_STATUS" | "ONLY_CMAF_INPUT_TYPE_ALLOW_FORCE_ENDPOINT_ERROR_CONFIGURATION" | "SOURCE_DISRUPTIONS_ENABLED_INCORRECTLY" | "HARVESTED_MANIFEST_HAS_START_END_FILTER_CONFIGURATION" | "HARVESTED_MANIFEST_NOT_FOUND_ON_ENDPOINT" | "TOO_MANY_IN_PROGRESS_HARVEST_JOBS" | "HARVEST_JOB_INELIGIBLE_FOR_CANCELLATION" | "INVALID_HARVEST_JOB_DURATION" | "HARVEST_JOB_S3_DESTINATION_MISSING_OR_INCOMPLETE" | "HARVEST_JOB_UNABLE_TO_WRITE_TO_S3_DESTINATION" | "HARVEST_JOB_CUSTOMER_ENDPOINT_READ_ACCESS_DENIED" | "CLIP_START_TIME_WITH_START_OR_END" | "START_TAG_TIME_OFFSET_INVALID" | "INCOMPATIBLE_DASH_PROFILE_DVB_DASH_CONFIGURATION" | "DASH_DVB_ATTRIBUTES_WITHOUT_DVB_DASH_PROFILE" | "INCOMPATIBLE_DASH_COMPACTNESS_CONFIGURATION" | "INCOMPATIBLE_XML_ENCODING" | "CMAF_EXCLUDE_SEGMENT_DRM_METADATA_INCOMPATIBLE_CONTAINER_TYPE" | "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_INPUT_SWITCHING" | "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_OUTPUT_CONFIGURATION" | "ONLY_CMAF_INPUT_TYPE_ALLOW_PREFERRED_INPUT_CONFIGURATION" | "TS_CONTAINER_TYPE_WITH_MSS_MANIFEST" | "CMAF_CONTAINER_TYPE_WITH_MSS_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_HLS_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_LL_HLS_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_DASH_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_SCTE" | "ISM_CONTAINER_WITH_KEY_ROTATION" | "BATCH_GET_SECRET_VALUE_DENIED" | "GET_SECRET_VALUE_DENIED" | "DESCRIBE_SECRET_DENIED" | "INVALID_SECRET_FORMAT" | "SECRET_IS_NOT_ONE_KEY_VALUE_PAIR" | "INVALID_SECRET_KEY" | "INVALID_SECRET_VALUE" | "SECRET_ARN_RESOURCE_NOT_FOUND" | "DECRYPT_SECRET_FAILED" | "TOO_MANY_SECRETS" | "DUPLICATED_SECRET" | "MALFORMED_SECRET_ARN" | "SECRET_FROM_DIFFERENT_ACCOUNT" | "SECRET_FROM_DIFFERENT_REGION" | "INVALID_SECRET" | "RESOURCE_NOT_IN_SAME_REGION" | "CERTIFICATE_RESOURCE_NOT_FOUND" | "CERTIFICATE_ACCESS_DENIED" | "DESCRIBE_CERTIFICATE_FAILED" | "INVALID_CERTIFICATE_STATUS" | "INVALID_CERTIFICATE_KEY_ALGORITHM" | "INVALID_CERTIFICATE_SIGNATURE_ALGORITHM" | "MISSING_CERTIFICATE_DOMAIN_NAME" | "INVALID_ARN" | "SCTE_IN_MANIFESTS_INVALID_CONFIGURATION" | "CUSTOM_AD_TYPES_INVALID_CONFIGURATION" | "ONLY_CMAF_INPUT_TYPE_ALLOW_OUTPUT_LOCKING_MODE" | "ONLY_NON_EPOCH_LOCKED_ALLOW_OUTPUT_TIMESTAMP_MODE" | "OUTPUT_TIMESTAMP_MODE_IMMUTABLE" | "NON_EPOCH_LOCKED_WITH_FORCE_ENDPOINT_ERROR_CONFIGURATION")
987
+ attr_accessor validation_exception_type: ("CONTAINER_TYPE_IMMUTABLE" | "INVALID_PAGINATION_TOKEN" | "INVALID_PAGINATION_MAX_RESULTS" | "INVALID_POLICY" | "INVALID_ROLE_ARN" | "MANIFEST_NAME_COLLISION" | "ENCRYPTION_METHOD_CONTAINER_TYPE_MISMATCH" | "CENC_IV_INCOMPATIBLE" | "ENCRYPTION_CONTRACT_WITHOUT_AUDIO_RENDITION_INCOMPATIBLE" | "ENCRYPTION_CONTRACT_WITH_ISM_CONTAINER_INCOMPATIBLE" | "ENCRYPTION_CONTRACT_UNENCRYPTED" | "ENCRYPTION_CONTRACT_SHARED" | "NUM_MANIFESTS_LOW" | "NUM_MANIFESTS_HIGH" | "MANIFEST_DRM_SYSTEMS_INCOMPATIBLE" | "DRM_SYSTEMS_ENCRYPTION_METHOD_INCOMPATIBLE" | "ROLE_ARN_NOT_ASSUMABLE" | "ROLE_ARN_LENGTH_OUT_OF_RANGE" | "ROLE_ARN_INVALID_FORMAT" | "URL_INVALID" | "URL_SCHEME" | "URL_USER_INFO" | "URL_PORT" | "URL_UNKNOWN_HOST" | "URL_LOCAL_ADDRESS" | "URL_LOOPBACK_ADDRESS" | "URL_LINK_LOCAL_ADDRESS" | "URL_MULTICAST_ADDRESS" | "MEMBER_INVALID" | "MEMBER_MISSING" | "MEMBER_MIN_VALUE" | "MEMBER_MAX_VALUE" | "MEMBER_MIN_LENGTH" | "MEMBER_MAX_LENGTH" | "MEMBER_INVALID_ENUM_VALUE" | "MEMBER_DOES_NOT_MATCH_PATTERN" | "INVALID_MANIFEST_FILTER" | "INVALID_DRM_SETTINGS" | "INVALID_TIME_DELAY_SECONDS" | "END_TIME_EARLIER_THAN_START_TIME" | "TS_CONTAINER_TYPE_WITH_DASH_MANIFEST" | "DIRECT_MODE_WITH_TIMING_SOURCE" | "NONE_MODE_WITH_TIMING_SOURCE" | "TIMING_SOURCE_MISSING" | "UPDATE_PERIOD_SMALLER_THAN_SEGMENT_DURATION" | "PERIOD_TRIGGERS_NONE_SPECIFIED_WITH_ADDITIONAL_VALUES" | "DRM_SIGNALING_MISMATCH_SEGMENT_ENCRYPTION_STATUS" | "ONLY_CMAF_INPUT_TYPE_ALLOW_FORCE_ENDPOINT_ERROR_CONFIGURATION" | "SOURCE_DISRUPTIONS_ENABLED_INCORRECTLY" | "HARVESTED_MANIFEST_HAS_START_END_FILTER_CONFIGURATION" | "HARVESTED_MANIFEST_NOT_FOUND_ON_ENDPOINT" | "TOO_MANY_IN_PROGRESS_HARVEST_JOBS" | "HARVEST_JOB_INELIGIBLE_FOR_CANCELLATION" | "INVALID_HARVEST_JOB_DURATION" | "HARVEST_JOB_S3_DESTINATION_MISSING_OR_INCOMPLETE" | "HARVEST_JOB_UNABLE_TO_WRITE_TO_S3_DESTINATION" | "HARVEST_JOB_CUSTOMER_ENDPOINT_READ_ACCESS_DENIED" | "CLIP_START_TIME_WITH_START_OR_END" | "START_TAG_TIME_OFFSET_INVALID" | "INCOMPATIBLE_DASH_PROFILE_DVB_DASH_CONFIGURATION" | "DASH_DVB_ATTRIBUTES_WITHOUT_DVB_DASH_PROFILE" | "INCOMPATIBLE_DASH_COMPACTNESS_CONFIGURATION" | "INCOMPATIBLE_XML_ENCODING" | "CMAF_EXCLUDE_SEGMENT_DRM_METADATA_INCOMPATIBLE_CONTAINER_TYPE" | "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_INPUT_SWITCHING" | "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_OUTPUT_CONFIGURATION" | "ONLY_CMAF_INPUT_TYPE_ALLOW_PREFERRED_INPUT_CONFIGURATION" | "TS_CONTAINER_TYPE_WITH_MSS_MANIFEST" | "CMAF_CONTAINER_TYPE_WITH_MSS_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_HLS_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_LL_HLS_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_DASH_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_SCTE" | "ISM_CONTAINER_WITH_KEY_ROTATION" | "BATCH_GET_SECRET_VALUE_DENIED" | "GET_SECRET_VALUE_DENIED" | "DESCRIBE_SECRET_DENIED" | "INVALID_SECRET_FORMAT" | "SECRET_IS_NOT_ONE_KEY_VALUE_PAIR" | "INVALID_SECRET_KEY" | "INVALID_SECRET_VALUE" | "SECRET_ARN_RESOURCE_NOT_FOUND" | "DECRYPT_SECRET_FAILED" | "TOO_MANY_SECRETS" | "DUPLICATED_SECRET" | "MALFORMED_SECRET_ARN" | "SECRET_FROM_DIFFERENT_ACCOUNT" | "SECRET_FROM_DIFFERENT_REGION" | "INVALID_SECRET" | "RESOURCE_NOT_IN_SAME_REGION" | "CERTIFICATE_RESOURCE_NOT_FOUND" | "CERTIFICATE_ACCESS_DENIED" | "DESCRIBE_CERTIFICATE_FAILED" | "INVALID_CERTIFICATE_STATUS" | "INVALID_CERTIFICATE_KEY_ALGORITHM" | "INVALID_CERTIFICATE_SIGNATURE_ALGORITHM" | "MISSING_CERTIFICATE_DOMAIN_NAME" | "INVALID_ARN" | "SCTE_IN_MANIFESTS_INVALID_CONFIGURATION" | "CUSTOM_AD_TYPES_INVALID_CONFIGURATION" | "ONLY_CMAF_INPUT_TYPE_ALLOW_OUTPUT_LOCKING_MODE" | "ONLY_NON_EPOCH_LOCKED_ALLOW_OUTPUT_TIMESTAMP_MODE" | "OUTPUT_TIMESTAMP_MODE_IMMUTABLE" | "NON_EPOCH_LOCKED_WITH_FORCE_ENDPOINT_ERROR_CONFIGURATION" | "ONLY_HLS_INPUT_TYPE_ALLOW_STREAM_NAME_OUTPUT_MODE" | "STREAM_NAME_OUTPUT_MODE_IMMUTABLE")
982
988
  SENSITIVE: []
983
989
  end
984
990
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediapackagev2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.69.0
4
+ version: 1.70.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services