aws-sdk-mediapackagev2 1.41.0 → 1.43.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediapackagev2/client.rb +731 -7
- data/lib/aws-sdk-mediapackagev2/client_api.rb +52 -0
- data/lib/aws-sdk-mediapackagev2/types.rb +239 -7
- data/lib/aws-sdk-mediapackagev2.rb +1 -1
- data/sig/client.rbs +48 -8
- data/sig/types.rbs +46 -7
- metadata +1 -1
data/sig/client.rbs
CHANGED
@@ -205,7 +205,7 @@ module Aws
|
|
205
205
|
def channel_group_name: () -> ::String
|
206
206
|
def channel_name: () -> ::String
|
207
207
|
def origin_endpoint_name: () -> ::String
|
208
|
-
def container_type: () -> ("TS" | "CMAF")
|
208
|
+
def container_type: () -> ("TS" | "CMAF" | "ISM")
|
209
209
|
def segment: () -> Types::Segment
|
210
210
|
def created_at: () -> ::Time
|
211
211
|
def modified_at: () -> ::Time
|
@@ -214,6 +214,7 @@ module Aws
|
|
214
214
|
def hls_manifests: () -> ::Array[Types::GetHlsManifestConfiguration]
|
215
215
|
def low_latency_hls_manifests: () -> ::Array[Types::GetLowLatencyHlsManifestConfiguration]
|
216
216
|
def dash_manifests: () -> ::Array[Types::GetDashManifestConfiguration]
|
217
|
+
def mss_manifests: () -> ::Array[Types::GetMssManifestConfiguration]
|
217
218
|
def force_endpoint_error_configuration: () -> Types::ForceEndpointErrorConfiguration
|
218
219
|
def etag: () -> ::String
|
219
220
|
def tags: () -> ::Hash[::String, ::String]
|
@@ -223,7 +224,7 @@ module Aws
|
|
223
224
|
channel_group_name: ::String,
|
224
225
|
channel_name: ::String,
|
225
226
|
origin_endpoint_name: ::String,
|
226
|
-
container_type: ("TS" | "CMAF"),
|
227
|
+
container_type: ("TS" | "CMAF" | "ISM"),
|
227
228
|
?segment: {
|
228
229
|
segment_duration_seconds: ::Integer?,
|
229
230
|
segment_name: ::String?,
|
@@ -237,9 +238,11 @@ module Aws
|
|
237
238
|
constant_initialization_vector: ::String?,
|
238
239
|
encryption_method: {
|
239
240
|
ts_encryption_method: ("AES_128" | "SAMPLE_AES")?,
|
240
|
-
cmaf_encryption_method: ("CENC" | "CBCS")
|
241
|
+
cmaf_encryption_method: ("CENC" | "CBCS")?,
|
242
|
+
ism_encryption_method: ("CENC")?
|
241
243
|
},
|
242
244
|
key_rotation_interval_seconds: ::Integer?,
|
245
|
+
cmaf_exclude_segment_drm_metadata: bool?,
|
243
246
|
speke_key_provider: {
|
244
247
|
encryption_contract_configuration: {
|
245
248
|
preset_speke_20_audio: ("PRESET_AUDIO_1" | "PRESET_AUDIO_2" | "PRESET_AUDIO_3" | "SHARED" | "UNENCRYPTED"),
|
@@ -362,6 +365,20 @@ module Aws
|
|
362
365
|
}?
|
363
366
|
},
|
364
367
|
],
|
368
|
+
?mss_manifests: Array[
|
369
|
+
{
|
370
|
+
manifest_name: ::String,
|
371
|
+
manifest_window_seconds: ::Integer?,
|
372
|
+
filter_configuration: {
|
373
|
+
manifest_filter: ::String?,
|
374
|
+
start: ::Time?,
|
375
|
+
end: ::Time?,
|
376
|
+
time_delay_seconds: ::Integer?,
|
377
|
+
clip_start_time: ::Time?
|
378
|
+
}?,
|
379
|
+
manifest_layout: ("FULL" | "COMPACT")?
|
380
|
+
},
|
381
|
+
],
|
365
382
|
?force_endpoint_error_configuration: {
|
366
383
|
endpoint_error_conditions: Array[("STALE_MANIFEST" | "INCOMPLETE_MANIFEST" | "MISSING_DRM_KEY" | "SLATE_INPUT")]?
|
367
384
|
},
|
@@ -506,7 +523,7 @@ module Aws
|
|
506
523
|
def channel_group_name: () -> ::String
|
507
524
|
def channel_name: () -> ::String
|
508
525
|
def origin_endpoint_name: () -> ::String
|
509
|
-
def container_type: () -> ("TS" | "CMAF")
|
526
|
+
def container_type: () -> ("TS" | "CMAF" | "ISM")
|
510
527
|
def segment: () -> Types::Segment
|
511
528
|
def created_at: () -> ::Time
|
512
529
|
def modified_at: () -> ::Time
|
@@ -516,6 +533,7 @@ module Aws
|
|
516
533
|
def hls_manifests: () -> ::Array[Types::GetHlsManifestConfiguration]
|
517
534
|
def low_latency_hls_manifests: () -> ::Array[Types::GetLowLatencyHlsManifestConfiguration]
|
518
535
|
def dash_manifests: () -> ::Array[Types::GetDashManifestConfiguration]
|
536
|
+
def mss_manifests: () -> ::Array[Types::GetMssManifestConfiguration]
|
519
537
|
def force_endpoint_error_configuration: () -> Types::ForceEndpointErrorConfiguration
|
520
538
|
def etag: () -> ::String
|
521
539
|
def tags: () -> ::Hash[::String, ::String]
|
@@ -534,6 +552,7 @@ module Aws
|
|
534
552
|
def channel_name: () -> ::String
|
535
553
|
def origin_endpoint_name: () -> ::String
|
536
554
|
def policy: () -> ::String
|
555
|
+
def cdn_auth_configuration: () -> Types::CdnAuthConfiguration
|
537
556
|
end
|
538
557
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackageV2/Client.html#get_origin_endpoint_policy-instance_method
|
539
558
|
def get_origin_endpoint_policy: (
|
@@ -627,7 +646,11 @@ module Aws
|
|
627
646
|
channel_group_name: ::String,
|
628
647
|
channel_name: ::String,
|
629
648
|
origin_endpoint_name: ::String,
|
630
|
-
policy: ::String
|
649
|
+
policy: ::String,
|
650
|
+
?cdn_auth_configuration: {
|
651
|
+
cdn_identifier_secret_arns: Array[::String],
|
652
|
+
secrets_role_arn: ::String
|
653
|
+
}
|
631
654
|
) -> _PutOriginEndpointPolicyResponseSuccess
|
632
655
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutOriginEndpointPolicyResponseSuccess
|
633
656
|
|
@@ -730,7 +753,7 @@ module Aws
|
|
730
753
|
def channel_group_name: () -> ::String
|
731
754
|
def channel_name: () -> ::String
|
732
755
|
def origin_endpoint_name: () -> ::String
|
733
|
-
def container_type: () -> ("TS" | "CMAF")
|
756
|
+
def container_type: () -> ("TS" | "CMAF" | "ISM")
|
734
757
|
def segment: () -> Types::Segment
|
735
758
|
def created_at: () -> ::Time
|
736
759
|
def modified_at: () -> ::Time
|
@@ -738,6 +761,7 @@ module Aws
|
|
738
761
|
def startover_window_seconds: () -> ::Integer
|
739
762
|
def hls_manifests: () -> ::Array[Types::GetHlsManifestConfiguration]
|
740
763
|
def low_latency_hls_manifests: () -> ::Array[Types::GetLowLatencyHlsManifestConfiguration]
|
764
|
+
def mss_manifests: () -> ::Array[Types::GetMssManifestConfiguration]
|
741
765
|
def force_endpoint_error_configuration: () -> Types::ForceEndpointErrorConfiguration
|
742
766
|
def etag: () -> ::String
|
743
767
|
def tags: () -> ::Hash[::String, ::String]
|
@@ -748,7 +772,7 @@ module Aws
|
|
748
772
|
channel_group_name: ::String,
|
749
773
|
channel_name: ::String,
|
750
774
|
origin_endpoint_name: ::String,
|
751
|
-
container_type: ("TS" | "CMAF"),
|
775
|
+
container_type: ("TS" | "CMAF" | "ISM"),
|
752
776
|
?segment: {
|
753
777
|
segment_duration_seconds: ::Integer?,
|
754
778
|
segment_name: ::String?,
|
@@ -762,9 +786,11 @@ module Aws
|
|
762
786
|
constant_initialization_vector: ::String?,
|
763
787
|
encryption_method: {
|
764
788
|
ts_encryption_method: ("AES_128" | "SAMPLE_AES")?,
|
765
|
-
cmaf_encryption_method: ("CENC" | "CBCS")
|
789
|
+
cmaf_encryption_method: ("CENC" | "CBCS")?,
|
790
|
+
ism_encryption_method: ("CENC")?
|
766
791
|
},
|
767
792
|
key_rotation_interval_seconds: ::Integer?,
|
793
|
+
cmaf_exclude_segment_drm_metadata: bool?,
|
768
794
|
speke_key_provider: {
|
769
795
|
encryption_contract_configuration: {
|
770
796
|
preset_speke_20_audio: ("PRESET_AUDIO_1" | "PRESET_AUDIO_2" | "PRESET_AUDIO_3" | "SHARED" | "UNENCRYPTED"),
|
@@ -886,6 +912,20 @@ module Aws
|
|
886
912
|
}?
|
887
913
|
},
|
888
914
|
],
|
915
|
+
?mss_manifests: Array[
|
916
|
+
{
|
917
|
+
manifest_name: ::String,
|
918
|
+
manifest_window_seconds: ::Integer?,
|
919
|
+
filter_configuration: {
|
920
|
+
manifest_filter: ::String?,
|
921
|
+
start: ::Time?,
|
922
|
+
end: ::Time?,
|
923
|
+
time_delay_seconds: ::Integer?,
|
924
|
+
clip_start_time: ::Time?
|
925
|
+
}?,
|
926
|
+
manifest_layout: ("FULL" | "COMPACT")?
|
927
|
+
},
|
928
|
+
],
|
889
929
|
?force_endpoint_error_configuration: {
|
890
930
|
endpoint_error_conditions: Array[("STALE_MANIFEST" | "INCOMPLETE_MANIFEST" | "MISSING_DRM_KEY" | "SLATE_INPUT")]?
|
891
931
|
},
|
data/sig/types.rbs
CHANGED
@@ -25,6 +25,12 @@ module Aws::MediaPackageV2
|
|
25
25
|
class CancelHarvestJobResponse < Aws::EmptyStructure
|
26
26
|
end
|
27
27
|
|
28
|
+
class CdnAuthConfiguration
|
29
|
+
attr_accessor cdn_identifier_secret_arns: ::Array[::String]
|
30
|
+
attr_accessor secrets_role_arn: ::String
|
31
|
+
SENSITIVE: []
|
32
|
+
end
|
33
|
+
|
28
34
|
class ChannelGroupListConfiguration
|
29
35
|
attr_accessor channel_group_name: ::String
|
30
36
|
attr_accessor arn: ::String
|
@@ -177,11 +183,19 @@ module Aws::MediaPackageV2
|
|
177
183
|
SENSITIVE: []
|
178
184
|
end
|
179
185
|
|
186
|
+
class CreateMssManifestConfiguration
|
187
|
+
attr_accessor manifest_name: ::String
|
188
|
+
attr_accessor manifest_window_seconds: ::Integer
|
189
|
+
attr_accessor filter_configuration: Types::FilterConfiguration
|
190
|
+
attr_accessor manifest_layout: ("FULL" | "COMPACT")
|
191
|
+
SENSITIVE: []
|
192
|
+
end
|
193
|
+
|
180
194
|
class CreateOriginEndpointRequest
|
181
195
|
attr_accessor channel_group_name: ::String
|
182
196
|
attr_accessor channel_name: ::String
|
183
197
|
attr_accessor origin_endpoint_name: ::String
|
184
|
-
attr_accessor container_type: ("TS" | "CMAF")
|
198
|
+
attr_accessor container_type: ("TS" | "CMAF" | "ISM")
|
185
199
|
attr_accessor segment: Types::Segment
|
186
200
|
attr_accessor client_token: ::String
|
187
201
|
attr_accessor description: ::String
|
@@ -189,6 +203,7 @@ module Aws::MediaPackageV2
|
|
189
203
|
attr_accessor hls_manifests: ::Array[Types::CreateHlsManifestConfiguration]
|
190
204
|
attr_accessor low_latency_hls_manifests: ::Array[Types::CreateLowLatencyHlsManifestConfiguration]
|
191
205
|
attr_accessor dash_manifests: ::Array[Types::CreateDashManifestConfiguration]
|
206
|
+
attr_accessor mss_manifests: ::Array[Types::CreateMssManifestConfiguration]
|
192
207
|
attr_accessor force_endpoint_error_configuration: Types::ForceEndpointErrorConfiguration
|
193
208
|
attr_accessor tags: ::Hash[::String, ::String]
|
194
209
|
SENSITIVE: []
|
@@ -199,7 +214,7 @@ module Aws::MediaPackageV2
|
|
199
214
|
attr_accessor channel_group_name: ::String
|
200
215
|
attr_accessor channel_name: ::String
|
201
216
|
attr_accessor origin_endpoint_name: ::String
|
202
|
-
attr_accessor container_type: ("TS" | "CMAF")
|
217
|
+
attr_accessor container_type: ("TS" | "CMAF" | "ISM")
|
203
218
|
attr_accessor segment: Types::Segment
|
204
219
|
attr_accessor created_at: ::Time
|
205
220
|
attr_accessor modified_at: ::Time
|
@@ -208,6 +223,7 @@ module Aws::MediaPackageV2
|
|
208
223
|
attr_accessor hls_manifests: ::Array[Types::GetHlsManifestConfiguration]
|
209
224
|
attr_accessor low_latency_hls_manifests: ::Array[Types::GetLowLatencyHlsManifestConfiguration]
|
210
225
|
attr_accessor dash_manifests: ::Array[Types::GetDashManifestConfiguration]
|
226
|
+
attr_accessor mss_manifests: ::Array[Types::GetMssManifestConfiguration]
|
211
227
|
attr_accessor force_endpoint_error_configuration: Types::ForceEndpointErrorConfiguration
|
212
228
|
attr_accessor etag: ::String
|
213
229
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -321,6 +337,7 @@ module Aws::MediaPackageV2
|
|
321
337
|
attr_accessor constant_initialization_vector: ::String
|
322
338
|
attr_accessor encryption_method: Types::EncryptionMethod
|
323
339
|
attr_accessor key_rotation_interval_seconds: ::Integer
|
340
|
+
attr_accessor cmaf_exclude_segment_drm_metadata: bool
|
324
341
|
attr_accessor speke_key_provider: Types::SpekeKeyProvider
|
325
342
|
SENSITIVE: []
|
326
343
|
end
|
@@ -334,6 +351,7 @@ module Aws::MediaPackageV2
|
|
334
351
|
class EncryptionMethod
|
335
352
|
attr_accessor ts_encryption_method: ("AES_128" | "SAMPLE_AES")
|
336
353
|
attr_accessor cmaf_encryption_method: ("CENC" | "CBCS")
|
354
|
+
attr_accessor ism_encryption_method: ("CENC")
|
337
355
|
SENSITIVE: []
|
338
356
|
end
|
339
357
|
|
@@ -479,6 +497,15 @@ module Aws::MediaPackageV2
|
|
479
497
|
SENSITIVE: []
|
480
498
|
end
|
481
499
|
|
500
|
+
class GetMssManifestConfiguration
|
501
|
+
attr_accessor manifest_name: ::String
|
502
|
+
attr_accessor url: ::String
|
503
|
+
attr_accessor filter_configuration: Types::FilterConfiguration
|
504
|
+
attr_accessor manifest_window_seconds: ::Integer
|
505
|
+
attr_accessor manifest_layout: ("FULL" | "COMPACT")
|
506
|
+
SENSITIVE: []
|
507
|
+
end
|
508
|
+
|
482
509
|
class GetOriginEndpointPolicyRequest
|
483
510
|
attr_accessor channel_group_name: ::String
|
484
511
|
attr_accessor channel_name: ::String
|
@@ -491,6 +518,7 @@ module Aws::MediaPackageV2
|
|
491
518
|
attr_accessor channel_name: ::String
|
492
519
|
attr_accessor origin_endpoint_name: ::String
|
493
520
|
attr_accessor policy: ::String
|
521
|
+
attr_accessor cdn_auth_configuration: Types::CdnAuthConfiguration
|
494
522
|
SENSITIVE: []
|
495
523
|
end
|
496
524
|
|
@@ -506,7 +534,7 @@ module Aws::MediaPackageV2
|
|
506
534
|
attr_accessor channel_group_name: ::String
|
507
535
|
attr_accessor channel_name: ::String
|
508
536
|
attr_accessor origin_endpoint_name: ::String
|
509
|
-
attr_accessor container_type: ("TS" | "CMAF")
|
537
|
+
attr_accessor container_type: ("TS" | "CMAF" | "ISM")
|
510
538
|
attr_accessor segment: Types::Segment
|
511
539
|
attr_accessor created_at: ::Time
|
512
540
|
attr_accessor modified_at: ::Time
|
@@ -516,6 +544,7 @@ module Aws::MediaPackageV2
|
|
516
544
|
attr_accessor hls_manifests: ::Array[Types::GetHlsManifestConfiguration]
|
517
545
|
attr_accessor low_latency_hls_manifests: ::Array[Types::GetLowLatencyHlsManifestConfiguration]
|
518
546
|
attr_accessor dash_manifests: ::Array[Types::GetDashManifestConfiguration]
|
547
|
+
attr_accessor mss_manifests: ::Array[Types::GetMssManifestConfiguration]
|
519
548
|
attr_accessor force_endpoint_error_configuration: Types::ForceEndpointErrorConfiguration
|
520
549
|
attr_accessor etag: ::String
|
521
550
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -645,6 +674,12 @@ module Aws::MediaPackageV2
|
|
645
674
|
SENSITIVE: []
|
646
675
|
end
|
647
676
|
|
677
|
+
class ListMssManifestConfiguration
|
678
|
+
attr_accessor manifest_name: ::String
|
679
|
+
attr_accessor url: ::String
|
680
|
+
SENSITIVE: []
|
681
|
+
end
|
682
|
+
|
648
683
|
class ListOriginEndpointsRequest
|
649
684
|
attr_accessor channel_group_name: ::String
|
650
685
|
attr_accessor channel_name: ::String
|
@@ -674,13 +709,14 @@ module Aws::MediaPackageV2
|
|
674
709
|
attr_accessor channel_group_name: ::String
|
675
710
|
attr_accessor channel_name: ::String
|
676
711
|
attr_accessor origin_endpoint_name: ::String
|
677
|
-
attr_accessor container_type: ("TS" | "CMAF")
|
712
|
+
attr_accessor container_type: ("TS" | "CMAF" | "ISM")
|
678
713
|
attr_accessor description: ::String
|
679
714
|
attr_accessor created_at: ::Time
|
680
715
|
attr_accessor modified_at: ::Time
|
681
716
|
attr_accessor hls_manifests: ::Array[Types::ListHlsManifestConfiguration]
|
682
717
|
attr_accessor low_latency_hls_manifests: ::Array[Types::ListLowLatencyHlsManifestConfiguration]
|
683
718
|
attr_accessor dash_manifests: ::Array[Types::ListDashManifestConfiguration]
|
719
|
+
attr_accessor mss_manifests: ::Array[Types::ListMssManifestConfiguration]
|
684
720
|
attr_accessor force_endpoint_error_configuration: Types::ForceEndpointErrorConfiguration
|
685
721
|
SENSITIVE: []
|
686
722
|
end
|
@@ -705,6 +741,7 @@ module Aws::MediaPackageV2
|
|
705
741
|
attr_accessor channel_name: ::String
|
706
742
|
attr_accessor origin_endpoint_name: ::String
|
707
743
|
attr_accessor policy: ::String
|
744
|
+
attr_accessor cdn_auth_configuration: Types::CdnAuthConfiguration
|
708
745
|
SENSITIVE: []
|
709
746
|
end
|
710
747
|
|
@@ -865,13 +902,14 @@ module Aws::MediaPackageV2
|
|
865
902
|
attr_accessor channel_group_name: ::String
|
866
903
|
attr_accessor channel_name: ::String
|
867
904
|
attr_accessor origin_endpoint_name: ::String
|
868
|
-
attr_accessor container_type: ("TS" | "CMAF")
|
905
|
+
attr_accessor container_type: ("TS" | "CMAF" | "ISM")
|
869
906
|
attr_accessor segment: Types::Segment
|
870
907
|
attr_accessor description: ::String
|
871
908
|
attr_accessor startover_window_seconds: ::Integer
|
872
909
|
attr_accessor hls_manifests: ::Array[Types::CreateHlsManifestConfiguration]
|
873
910
|
attr_accessor low_latency_hls_manifests: ::Array[Types::CreateLowLatencyHlsManifestConfiguration]
|
874
911
|
attr_accessor dash_manifests: ::Array[Types::CreateDashManifestConfiguration]
|
912
|
+
attr_accessor mss_manifests: ::Array[Types::CreateMssManifestConfiguration]
|
875
913
|
attr_accessor force_endpoint_error_configuration: Types::ForceEndpointErrorConfiguration
|
876
914
|
attr_accessor etag: ::String
|
877
915
|
SENSITIVE: []
|
@@ -882,7 +920,7 @@ module Aws::MediaPackageV2
|
|
882
920
|
attr_accessor channel_group_name: ::String
|
883
921
|
attr_accessor channel_name: ::String
|
884
922
|
attr_accessor origin_endpoint_name: ::String
|
885
|
-
attr_accessor container_type: ("TS" | "CMAF")
|
923
|
+
attr_accessor container_type: ("TS" | "CMAF" | "ISM")
|
886
924
|
attr_accessor segment: Types::Segment
|
887
925
|
attr_accessor created_at: ::Time
|
888
926
|
attr_accessor modified_at: ::Time
|
@@ -890,6 +928,7 @@ module Aws::MediaPackageV2
|
|
890
928
|
attr_accessor startover_window_seconds: ::Integer
|
891
929
|
attr_accessor hls_manifests: ::Array[Types::GetHlsManifestConfiguration]
|
892
930
|
attr_accessor low_latency_hls_manifests: ::Array[Types::GetLowLatencyHlsManifestConfiguration]
|
931
|
+
attr_accessor mss_manifests: ::Array[Types::GetMssManifestConfiguration]
|
893
932
|
attr_accessor force_endpoint_error_configuration: Types::ForceEndpointErrorConfiguration
|
894
933
|
attr_accessor etag: ::String
|
895
934
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -899,7 +938,7 @@ module Aws::MediaPackageV2
|
|
899
938
|
|
900
939
|
class ValidationException
|
901
940
|
attr_accessor message: ::String
|
902
|
-
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_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_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" | "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_INPUT_SWITCHING" | "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_OUTPUT_CONFIGURATION" | "
|
941
|
+
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_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" | "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")
|
903
942
|
SENSITIVE: []
|
904
943
|
end
|
905
944
|
end
|