aws-sdk-medialive 1.8.0 → 1.9.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/lib/aws-sdk-medialive.rb +1 -1
- data/lib/aws-sdk-medialive/client.rb +243 -1
- data/lib/aws-sdk-medialive/client_api.rb +181 -0
- data/lib/aws-sdk-medialive/types.rb +959 -2
- metadata +2 -2
@@ -924,6 +924,270 @@ module Aws::MediaLive
|
|
924
924
|
include Aws::Structure
|
925
925
|
end
|
926
926
|
|
927
|
+
# A list of schedule actions to create.
|
928
|
+
#
|
929
|
+
# @note When making an API call, you may pass BatchScheduleActionCreateRequest
|
930
|
+
# data as a hash:
|
931
|
+
#
|
932
|
+
# {
|
933
|
+
# schedule_actions: [ # required
|
934
|
+
# {
|
935
|
+
# action_name: "__string", # required
|
936
|
+
# schedule_action_settings: { # required
|
937
|
+
# scte_35_return_to_network_settings: {
|
938
|
+
# splice_event_id: 1, # required
|
939
|
+
# },
|
940
|
+
# scte_35_splice_insert_settings: {
|
941
|
+
# duration: 1,
|
942
|
+
# splice_event_id: 1, # required
|
943
|
+
# },
|
944
|
+
# scte_35_time_signal_settings: {
|
945
|
+
# scte_35_descriptors: [ # required
|
946
|
+
# {
|
947
|
+
# scte_35_descriptor_settings: { # required
|
948
|
+
# segmentation_descriptor_scte_35_descriptor_settings: { # required
|
949
|
+
# delivery_restrictions: {
|
950
|
+
# archive_allowed_flag: "ARCHIVE_NOT_ALLOWED", # required, accepts ARCHIVE_NOT_ALLOWED, ARCHIVE_ALLOWED
|
951
|
+
# device_restrictions: "NONE", # required, accepts NONE, RESTRICT_GROUP0, RESTRICT_GROUP1, RESTRICT_GROUP2
|
952
|
+
# no_regional_blackout_flag: "REGIONAL_BLACKOUT", # required, accepts REGIONAL_BLACKOUT, NO_REGIONAL_BLACKOUT
|
953
|
+
# web_delivery_allowed_flag: "WEB_DELIVERY_NOT_ALLOWED", # required, accepts WEB_DELIVERY_NOT_ALLOWED, WEB_DELIVERY_ALLOWED
|
954
|
+
# },
|
955
|
+
# segment_num: 1,
|
956
|
+
# segmentation_cancel_indicator: "SEGMENTATION_EVENT_NOT_CANCELED", # required, accepts SEGMENTATION_EVENT_NOT_CANCELED, SEGMENTATION_EVENT_CANCELED
|
957
|
+
# segmentation_duration: 1,
|
958
|
+
# segmentation_event_id: 1, # required
|
959
|
+
# segmentation_type_id: 1,
|
960
|
+
# segmentation_upid: "__string",
|
961
|
+
# segmentation_upid_type: 1,
|
962
|
+
# segments_expected: 1,
|
963
|
+
# sub_segment_num: 1,
|
964
|
+
# sub_segments_expected: 1,
|
965
|
+
# },
|
966
|
+
# },
|
967
|
+
# },
|
968
|
+
# ],
|
969
|
+
# },
|
970
|
+
# static_image_activate_settings: {
|
971
|
+
# duration: 1,
|
972
|
+
# fade_in: 1,
|
973
|
+
# fade_out: 1,
|
974
|
+
# height: 1,
|
975
|
+
# image: { # required
|
976
|
+
# password_param: "__string",
|
977
|
+
# uri: "__string", # required
|
978
|
+
# username: "__string",
|
979
|
+
# },
|
980
|
+
# image_x: 1,
|
981
|
+
# image_y: 1,
|
982
|
+
# layer: 1,
|
983
|
+
# opacity: 1,
|
984
|
+
# width: 1,
|
985
|
+
# },
|
986
|
+
# static_image_deactivate_settings: {
|
987
|
+
# fade_out: 1,
|
988
|
+
# layer: 1,
|
989
|
+
# },
|
990
|
+
# },
|
991
|
+
# schedule_action_start_settings: { # required
|
992
|
+
# fixed_mode_schedule_action_start_settings: {
|
993
|
+
# time: "__string",
|
994
|
+
# },
|
995
|
+
# },
|
996
|
+
# },
|
997
|
+
# ],
|
998
|
+
# }
|
999
|
+
#
|
1000
|
+
# @!attribute [rw] schedule_actions
|
1001
|
+
# A list of schedule actions to create.
|
1002
|
+
# @return [Array<Types::ScheduleAction>]
|
1003
|
+
#
|
1004
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchScheduleActionCreateRequest AWS API Documentation
|
1005
|
+
#
|
1006
|
+
class BatchScheduleActionCreateRequest < Struct.new(
|
1007
|
+
:schedule_actions)
|
1008
|
+
include Aws::Structure
|
1009
|
+
end
|
1010
|
+
|
1011
|
+
# Returned list of created schedule actions.
|
1012
|
+
#
|
1013
|
+
# @!attribute [rw] schedule_actions
|
1014
|
+
# Returned list of created schedule actions.
|
1015
|
+
# @return [Array<Types::ScheduleAction>]
|
1016
|
+
#
|
1017
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchScheduleActionCreateResult AWS API Documentation
|
1018
|
+
#
|
1019
|
+
class BatchScheduleActionCreateResult < Struct.new(
|
1020
|
+
:schedule_actions)
|
1021
|
+
include Aws::Structure
|
1022
|
+
end
|
1023
|
+
|
1024
|
+
# A list of schedule actions to delete.
|
1025
|
+
#
|
1026
|
+
# @note When making an API call, you may pass BatchScheduleActionDeleteRequest
|
1027
|
+
# data as a hash:
|
1028
|
+
#
|
1029
|
+
# {
|
1030
|
+
# action_names: ["__string"], # required
|
1031
|
+
# }
|
1032
|
+
#
|
1033
|
+
# @!attribute [rw] action_names
|
1034
|
+
# A list of schedule actions to delete, identified by unique name.
|
1035
|
+
# @return [Array<String>]
|
1036
|
+
#
|
1037
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchScheduleActionDeleteRequest AWS API Documentation
|
1038
|
+
#
|
1039
|
+
class BatchScheduleActionDeleteRequest < Struct.new(
|
1040
|
+
:action_names)
|
1041
|
+
include Aws::Structure
|
1042
|
+
end
|
1043
|
+
|
1044
|
+
# Returned list of deleted schedule actions.
|
1045
|
+
#
|
1046
|
+
# @!attribute [rw] schedule_actions
|
1047
|
+
# Returned list of deleted schedule actions.
|
1048
|
+
# @return [Array<Types::ScheduleAction>]
|
1049
|
+
#
|
1050
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchScheduleActionDeleteResult AWS API Documentation
|
1051
|
+
#
|
1052
|
+
class BatchScheduleActionDeleteResult < Struct.new(
|
1053
|
+
:schedule_actions)
|
1054
|
+
include Aws::Structure
|
1055
|
+
end
|
1056
|
+
|
1057
|
+
# A schedule update, including actions to insert, and action names to
|
1058
|
+
# delete.
|
1059
|
+
#
|
1060
|
+
# @note When making an API call, you may pass BatchUpdateScheduleRequest
|
1061
|
+
# data as a hash:
|
1062
|
+
#
|
1063
|
+
# {
|
1064
|
+
# channel_id: "__string", # required
|
1065
|
+
# creates: {
|
1066
|
+
# schedule_actions: [ # required
|
1067
|
+
# {
|
1068
|
+
# action_name: "__string", # required
|
1069
|
+
# schedule_action_settings: { # required
|
1070
|
+
# scte_35_return_to_network_settings: {
|
1071
|
+
# splice_event_id: 1, # required
|
1072
|
+
# },
|
1073
|
+
# scte_35_splice_insert_settings: {
|
1074
|
+
# duration: 1,
|
1075
|
+
# splice_event_id: 1, # required
|
1076
|
+
# },
|
1077
|
+
# scte_35_time_signal_settings: {
|
1078
|
+
# scte_35_descriptors: [ # required
|
1079
|
+
# {
|
1080
|
+
# scte_35_descriptor_settings: { # required
|
1081
|
+
# segmentation_descriptor_scte_35_descriptor_settings: { # required
|
1082
|
+
# delivery_restrictions: {
|
1083
|
+
# archive_allowed_flag: "ARCHIVE_NOT_ALLOWED", # required, accepts ARCHIVE_NOT_ALLOWED, ARCHIVE_ALLOWED
|
1084
|
+
# device_restrictions: "NONE", # required, accepts NONE, RESTRICT_GROUP0, RESTRICT_GROUP1, RESTRICT_GROUP2
|
1085
|
+
# no_regional_blackout_flag: "REGIONAL_BLACKOUT", # required, accepts REGIONAL_BLACKOUT, NO_REGIONAL_BLACKOUT
|
1086
|
+
# web_delivery_allowed_flag: "WEB_DELIVERY_NOT_ALLOWED", # required, accepts WEB_DELIVERY_NOT_ALLOWED, WEB_DELIVERY_ALLOWED
|
1087
|
+
# },
|
1088
|
+
# segment_num: 1,
|
1089
|
+
# segmentation_cancel_indicator: "SEGMENTATION_EVENT_NOT_CANCELED", # required, accepts SEGMENTATION_EVENT_NOT_CANCELED, SEGMENTATION_EVENT_CANCELED
|
1090
|
+
# segmentation_duration: 1,
|
1091
|
+
# segmentation_event_id: 1, # required
|
1092
|
+
# segmentation_type_id: 1,
|
1093
|
+
# segmentation_upid: "__string",
|
1094
|
+
# segmentation_upid_type: 1,
|
1095
|
+
# segments_expected: 1,
|
1096
|
+
# sub_segment_num: 1,
|
1097
|
+
# sub_segments_expected: 1,
|
1098
|
+
# },
|
1099
|
+
# },
|
1100
|
+
# },
|
1101
|
+
# ],
|
1102
|
+
# },
|
1103
|
+
# static_image_activate_settings: {
|
1104
|
+
# duration: 1,
|
1105
|
+
# fade_in: 1,
|
1106
|
+
# fade_out: 1,
|
1107
|
+
# height: 1,
|
1108
|
+
# image: { # required
|
1109
|
+
# password_param: "__string",
|
1110
|
+
# uri: "__string", # required
|
1111
|
+
# username: "__string",
|
1112
|
+
# },
|
1113
|
+
# image_x: 1,
|
1114
|
+
# image_y: 1,
|
1115
|
+
# layer: 1,
|
1116
|
+
# opacity: 1,
|
1117
|
+
# width: 1,
|
1118
|
+
# },
|
1119
|
+
# static_image_deactivate_settings: {
|
1120
|
+
# fade_out: 1,
|
1121
|
+
# layer: 1,
|
1122
|
+
# },
|
1123
|
+
# },
|
1124
|
+
# schedule_action_start_settings: { # required
|
1125
|
+
# fixed_mode_schedule_action_start_settings: {
|
1126
|
+
# time: "__string",
|
1127
|
+
# },
|
1128
|
+
# },
|
1129
|
+
# },
|
1130
|
+
# ],
|
1131
|
+
# },
|
1132
|
+
# deletes: {
|
1133
|
+
# action_names: ["__string"], # required
|
1134
|
+
# },
|
1135
|
+
# }
|
1136
|
+
#
|
1137
|
+
# @!attribute [rw] channel_id
|
1138
|
+
# @return [String]
|
1139
|
+
#
|
1140
|
+
# @!attribute [rw] creates
|
1141
|
+
# Schedule actions to create in the schedule.
|
1142
|
+
# @return [Types::BatchScheduleActionCreateRequest]
|
1143
|
+
#
|
1144
|
+
# @!attribute [rw] deletes
|
1145
|
+
# Schedule actions to delete from the schedule.
|
1146
|
+
# @return [Types::BatchScheduleActionDeleteRequest]
|
1147
|
+
#
|
1148
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchUpdateScheduleRequest AWS API Documentation
|
1149
|
+
#
|
1150
|
+
class BatchUpdateScheduleRequest < Struct.new(
|
1151
|
+
:channel_id,
|
1152
|
+
:creates,
|
1153
|
+
:deletes)
|
1154
|
+
include Aws::Structure
|
1155
|
+
end
|
1156
|
+
|
1157
|
+
# @!attribute [rw] creates
|
1158
|
+
# Returned list of created schedule actions.
|
1159
|
+
# @return [Types::BatchScheduleActionCreateResult]
|
1160
|
+
#
|
1161
|
+
# @!attribute [rw] deletes
|
1162
|
+
# Returned list of deleted schedule actions.
|
1163
|
+
# @return [Types::BatchScheduleActionDeleteResult]
|
1164
|
+
#
|
1165
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchUpdateScheduleResponse AWS API Documentation
|
1166
|
+
#
|
1167
|
+
class BatchUpdateScheduleResponse < Struct.new(
|
1168
|
+
:creates,
|
1169
|
+
:deletes)
|
1170
|
+
include Aws::Structure
|
1171
|
+
end
|
1172
|
+
|
1173
|
+
# Results of a batch schedule update.
|
1174
|
+
#
|
1175
|
+
# @!attribute [rw] creates
|
1176
|
+
# Schedule actions created in the schedule.
|
1177
|
+
# @return [Types::BatchScheduleActionCreateResult]
|
1178
|
+
#
|
1179
|
+
# @!attribute [rw] deletes
|
1180
|
+
# Schedule actions deleted from the schedule.
|
1181
|
+
# @return [Types::BatchScheduleActionDeleteResult]
|
1182
|
+
#
|
1183
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchUpdateScheduleResult AWS API Documentation
|
1184
|
+
#
|
1185
|
+
class BatchUpdateScheduleResult < Struct.new(
|
1186
|
+
:creates,
|
1187
|
+
:deletes)
|
1188
|
+
include Aws::Structure
|
1189
|
+
end
|
1190
|
+
|
927
1191
|
# @note When making an API call, you may pass BlackoutSlate
|
928
1192
|
# data as a hash:
|
929
1193
|
#
|
@@ -1619,8 +1883,7 @@ module Aws::MediaLive
|
|
1619
1883
|
# @return [String]
|
1620
1884
|
#
|
1621
1885
|
# @!attribute [rw] validation_errors
|
1622
|
-
# A collection of validation error responses
|
1623
|
-
# a channel with a bouquet of settings.
|
1886
|
+
# A collection of validation error responses.
|
1624
1887
|
# @return [Array<Types::ValidationError>]
|
1625
1888
|
#
|
1626
1889
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ChannelConfigurationValidationError AWS API Documentation
|
@@ -3220,6 +3483,47 @@ module Aws::MediaLive
|
|
3220
3483
|
include Aws::Structure
|
3221
3484
|
end
|
3222
3485
|
|
3486
|
+
# @note When making an API call, you may pass DescribeScheduleRequest
|
3487
|
+
# data as a hash:
|
3488
|
+
#
|
3489
|
+
# {
|
3490
|
+
# channel_id: "__string", # required
|
3491
|
+
# max_results: 1,
|
3492
|
+
# next_token: "__string",
|
3493
|
+
# }
|
3494
|
+
#
|
3495
|
+
# @!attribute [rw] channel_id
|
3496
|
+
# @return [String]
|
3497
|
+
#
|
3498
|
+
# @!attribute [rw] max_results
|
3499
|
+
# @return [Integer]
|
3500
|
+
#
|
3501
|
+
# @!attribute [rw] next_token
|
3502
|
+
# @return [String]
|
3503
|
+
#
|
3504
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeScheduleRequest AWS API Documentation
|
3505
|
+
#
|
3506
|
+
class DescribeScheduleRequest < Struct.new(
|
3507
|
+
:channel_id,
|
3508
|
+
:max_results,
|
3509
|
+
:next_token)
|
3510
|
+
include Aws::Structure
|
3511
|
+
end
|
3512
|
+
|
3513
|
+
# @!attribute [rw] next_token
|
3514
|
+
# @return [String]
|
3515
|
+
#
|
3516
|
+
# @!attribute [rw] schedule_actions
|
3517
|
+
# @return [Array<Types::ScheduleAction>]
|
3518
|
+
#
|
3519
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeScheduleResponse AWS API Documentation
|
3520
|
+
#
|
3521
|
+
class DescribeScheduleResponse < Struct.new(
|
3522
|
+
:next_token,
|
3523
|
+
:schedule_actions)
|
3524
|
+
include Aws::Structure
|
3525
|
+
end
|
3526
|
+
|
3223
3527
|
# DVB Network Information Table (NIT)
|
3224
3528
|
#
|
3225
3529
|
# @note When making an API call, you may pass DvbNitSettings
|
@@ -4413,6 +4717,26 @@ module Aws::MediaLive
|
|
4413
4717
|
include Aws::Structure
|
4414
4718
|
end
|
4415
4719
|
|
4720
|
+
# Fixed mode schedule action start settings
|
4721
|
+
#
|
4722
|
+
# @note When making an API call, you may pass FixedModeScheduleActionStartSettings
|
4723
|
+
# data as a hash:
|
4724
|
+
#
|
4725
|
+
# {
|
4726
|
+
# time: "__string",
|
4727
|
+
# }
|
4728
|
+
#
|
4729
|
+
# @!attribute [rw] time
|
4730
|
+
# Fixed timestamp action start. Conforms to ISO-8601.
|
4731
|
+
# @return [String]
|
4732
|
+
#
|
4733
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/FixedModeScheduleActionStartSettings AWS API Documentation
|
4734
|
+
#
|
4735
|
+
class FixedModeScheduleActionStartSettings < Struct.new(
|
4736
|
+
:time)
|
4737
|
+
include Aws::Structure
|
4738
|
+
end
|
4739
|
+
|
4416
4740
|
# @note When making an API call, you may pass GlobalConfiguration
|
4417
4741
|
# data as a hash:
|
4418
4742
|
#
|
@@ -8775,6 +9099,228 @@ module Aws::MediaLive
|
|
8775
9099
|
include Aws::Structure
|
8776
9100
|
end
|
8777
9101
|
|
9102
|
+
# A single schedule action.
|
9103
|
+
#
|
9104
|
+
# @note When making an API call, you may pass ScheduleAction
|
9105
|
+
# data as a hash:
|
9106
|
+
#
|
9107
|
+
# {
|
9108
|
+
# action_name: "__string", # required
|
9109
|
+
# schedule_action_settings: { # required
|
9110
|
+
# scte_35_return_to_network_settings: {
|
9111
|
+
# splice_event_id: 1, # required
|
9112
|
+
# },
|
9113
|
+
# scte_35_splice_insert_settings: {
|
9114
|
+
# duration: 1,
|
9115
|
+
# splice_event_id: 1, # required
|
9116
|
+
# },
|
9117
|
+
# scte_35_time_signal_settings: {
|
9118
|
+
# scte_35_descriptors: [ # required
|
9119
|
+
# {
|
9120
|
+
# scte_35_descriptor_settings: { # required
|
9121
|
+
# segmentation_descriptor_scte_35_descriptor_settings: { # required
|
9122
|
+
# delivery_restrictions: {
|
9123
|
+
# archive_allowed_flag: "ARCHIVE_NOT_ALLOWED", # required, accepts ARCHIVE_NOT_ALLOWED, ARCHIVE_ALLOWED
|
9124
|
+
# device_restrictions: "NONE", # required, accepts NONE, RESTRICT_GROUP0, RESTRICT_GROUP1, RESTRICT_GROUP2
|
9125
|
+
# no_regional_blackout_flag: "REGIONAL_BLACKOUT", # required, accepts REGIONAL_BLACKOUT, NO_REGIONAL_BLACKOUT
|
9126
|
+
# web_delivery_allowed_flag: "WEB_DELIVERY_NOT_ALLOWED", # required, accepts WEB_DELIVERY_NOT_ALLOWED, WEB_DELIVERY_ALLOWED
|
9127
|
+
# },
|
9128
|
+
# segment_num: 1,
|
9129
|
+
# segmentation_cancel_indicator: "SEGMENTATION_EVENT_NOT_CANCELED", # required, accepts SEGMENTATION_EVENT_NOT_CANCELED, SEGMENTATION_EVENT_CANCELED
|
9130
|
+
# segmentation_duration: 1,
|
9131
|
+
# segmentation_event_id: 1, # required
|
9132
|
+
# segmentation_type_id: 1,
|
9133
|
+
# segmentation_upid: "__string",
|
9134
|
+
# segmentation_upid_type: 1,
|
9135
|
+
# segments_expected: 1,
|
9136
|
+
# sub_segment_num: 1,
|
9137
|
+
# sub_segments_expected: 1,
|
9138
|
+
# },
|
9139
|
+
# },
|
9140
|
+
# },
|
9141
|
+
# ],
|
9142
|
+
# },
|
9143
|
+
# static_image_activate_settings: {
|
9144
|
+
# duration: 1,
|
9145
|
+
# fade_in: 1,
|
9146
|
+
# fade_out: 1,
|
9147
|
+
# height: 1,
|
9148
|
+
# image: { # required
|
9149
|
+
# password_param: "__string",
|
9150
|
+
# uri: "__string", # required
|
9151
|
+
# username: "__string",
|
9152
|
+
# },
|
9153
|
+
# image_x: 1,
|
9154
|
+
# image_y: 1,
|
9155
|
+
# layer: 1,
|
9156
|
+
# opacity: 1,
|
9157
|
+
# width: 1,
|
9158
|
+
# },
|
9159
|
+
# static_image_deactivate_settings: {
|
9160
|
+
# fade_out: 1,
|
9161
|
+
# layer: 1,
|
9162
|
+
# },
|
9163
|
+
# },
|
9164
|
+
# schedule_action_start_settings: { # required
|
9165
|
+
# fixed_mode_schedule_action_start_settings: {
|
9166
|
+
# time: "__string",
|
9167
|
+
# },
|
9168
|
+
# },
|
9169
|
+
# }
|
9170
|
+
#
|
9171
|
+
# @!attribute [rw] action_name
|
9172
|
+
# The name of the action, must be unique within the schedule.
|
9173
|
+
# @return [String]
|
9174
|
+
#
|
9175
|
+
# @!attribute [rw] schedule_action_settings
|
9176
|
+
# Settings for this schedule action.
|
9177
|
+
# @return [Types::ScheduleActionSettings]
|
9178
|
+
#
|
9179
|
+
# @!attribute [rw] schedule_action_start_settings
|
9180
|
+
# When the action takes effect.
|
9181
|
+
# @return [Types::ScheduleActionStartSettings]
|
9182
|
+
#
|
9183
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ScheduleAction AWS API Documentation
|
9184
|
+
#
|
9185
|
+
class ScheduleAction < Struct.new(
|
9186
|
+
:action_name,
|
9187
|
+
:schedule_action_settings,
|
9188
|
+
:schedule_action_start_settings)
|
9189
|
+
include Aws::Structure
|
9190
|
+
end
|
9191
|
+
|
9192
|
+
# Settings for a single schedule action.
|
9193
|
+
#
|
9194
|
+
# @note When making an API call, you may pass ScheduleActionSettings
|
9195
|
+
# data as a hash:
|
9196
|
+
#
|
9197
|
+
# {
|
9198
|
+
# scte_35_return_to_network_settings: {
|
9199
|
+
# splice_event_id: 1, # required
|
9200
|
+
# },
|
9201
|
+
# scte_35_splice_insert_settings: {
|
9202
|
+
# duration: 1,
|
9203
|
+
# splice_event_id: 1, # required
|
9204
|
+
# },
|
9205
|
+
# scte_35_time_signal_settings: {
|
9206
|
+
# scte_35_descriptors: [ # required
|
9207
|
+
# {
|
9208
|
+
# scte_35_descriptor_settings: { # required
|
9209
|
+
# segmentation_descriptor_scte_35_descriptor_settings: { # required
|
9210
|
+
# delivery_restrictions: {
|
9211
|
+
# archive_allowed_flag: "ARCHIVE_NOT_ALLOWED", # required, accepts ARCHIVE_NOT_ALLOWED, ARCHIVE_ALLOWED
|
9212
|
+
# device_restrictions: "NONE", # required, accepts NONE, RESTRICT_GROUP0, RESTRICT_GROUP1, RESTRICT_GROUP2
|
9213
|
+
# no_regional_blackout_flag: "REGIONAL_BLACKOUT", # required, accepts REGIONAL_BLACKOUT, NO_REGIONAL_BLACKOUT
|
9214
|
+
# web_delivery_allowed_flag: "WEB_DELIVERY_NOT_ALLOWED", # required, accepts WEB_DELIVERY_NOT_ALLOWED, WEB_DELIVERY_ALLOWED
|
9215
|
+
# },
|
9216
|
+
# segment_num: 1,
|
9217
|
+
# segmentation_cancel_indicator: "SEGMENTATION_EVENT_NOT_CANCELED", # required, accepts SEGMENTATION_EVENT_NOT_CANCELED, SEGMENTATION_EVENT_CANCELED
|
9218
|
+
# segmentation_duration: 1,
|
9219
|
+
# segmentation_event_id: 1, # required
|
9220
|
+
# segmentation_type_id: 1,
|
9221
|
+
# segmentation_upid: "__string",
|
9222
|
+
# segmentation_upid_type: 1,
|
9223
|
+
# segments_expected: 1,
|
9224
|
+
# sub_segment_num: 1,
|
9225
|
+
# sub_segments_expected: 1,
|
9226
|
+
# },
|
9227
|
+
# },
|
9228
|
+
# },
|
9229
|
+
# ],
|
9230
|
+
# },
|
9231
|
+
# static_image_activate_settings: {
|
9232
|
+
# duration: 1,
|
9233
|
+
# fade_in: 1,
|
9234
|
+
# fade_out: 1,
|
9235
|
+
# height: 1,
|
9236
|
+
# image: { # required
|
9237
|
+
# password_param: "__string",
|
9238
|
+
# uri: "__string", # required
|
9239
|
+
# username: "__string",
|
9240
|
+
# },
|
9241
|
+
# image_x: 1,
|
9242
|
+
# image_y: 1,
|
9243
|
+
# layer: 1,
|
9244
|
+
# opacity: 1,
|
9245
|
+
# width: 1,
|
9246
|
+
# },
|
9247
|
+
# static_image_deactivate_settings: {
|
9248
|
+
# fade_out: 1,
|
9249
|
+
# layer: 1,
|
9250
|
+
# },
|
9251
|
+
# }
|
9252
|
+
#
|
9253
|
+
# @!attribute [rw] scte_35_return_to_network_settings
|
9254
|
+
# SCTE-35 Return to Network Settings
|
9255
|
+
# @return [Types::Scte35ReturnToNetworkScheduleActionSettings]
|
9256
|
+
#
|
9257
|
+
# @!attribute [rw] scte_35_splice_insert_settings
|
9258
|
+
# SCTE-35 Splice Insert Settings
|
9259
|
+
# @return [Types::Scte35SpliceInsertScheduleActionSettings]
|
9260
|
+
#
|
9261
|
+
# @!attribute [rw] scte_35_time_signal_settings
|
9262
|
+
# SCTE-35 Time Signal Settings
|
9263
|
+
# @return [Types::Scte35TimeSignalScheduleActionSettings]
|
9264
|
+
#
|
9265
|
+
# @!attribute [rw] static_image_activate_settings
|
9266
|
+
# Static Image Activate
|
9267
|
+
# @return [Types::StaticImageActivateScheduleActionSettings]
|
9268
|
+
#
|
9269
|
+
# @!attribute [rw] static_image_deactivate_settings
|
9270
|
+
# Static Image Deactivate
|
9271
|
+
# @return [Types::StaticImageDeactivateScheduleActionSettings]
|
9272
|
+
#
|
9273
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ScheduleActionSettings AWS API Documentation
|
9274
|
+
#
|
9275
|
+
class ScheduleActionSettings < Struct.new(
|
9276
|
+
:scte_35_return_to_network_settings,
|
9277
|
+
:scte_35_splice_insert_settings,
|
9278
|
+
:scte_35_time_signal_settings,
|
9279
|
+
:static_image_activate_settings,
|
9280
|
+
:static_image_deactivate_settings)
|
9281
|
+
include Aws::Structure
|
9282
|
+
end
|
9283
|
+
|
9284
|
+
# When the schedule action starts.
|
9285
|
+
#
|
9286
|
+
# @note When making an API call, you may pass ScheduleActionStartSettings
|
9287
|
+
# data as a hash:
|
9288
|
+
#
|
9289
|
+
# {
|
9290
|
+
# fixed_mode_schedule_action_start_settings: {
|
9291
|
+
# time: "__string",
|
9292
|
+
# },
|
9293
|
+
# }
|
9294
|
+
#
|
9295
|
+
# @!attribute [rw] fixed_mode_schedule_action_start_settings
|
9296
|
+
# Fixed timestamp action start. Conforms to ISO-8601.
|
9297
|
+
# @return [Types::FixedModeScheduleActionStartSettings]
|
9298
|
+
#
|
9299
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ScheduleActionStartSettings AWS API Documentation
|
9300
|
+
#
|
9301
|
+
class ScheduleActionStartSettings < Struct.new(
|
9302
|
+
:fixed_mode_schedule_action_start_settings)
|
9303
|
+
include Aws::Structure
|
9304
|
+
end
|
9305
|
+
|
9306
|
+
# A complete schedule description.
|
9307
|
+
#
|
9308
|
+
# @!attribute [rw] next_token
|
9309
|
+
# The next token; for use in pagination.
|
9310
|
+
# @return [String]
|
9311
|
+
#
|
9312
|
+
# @!attribute [rw] schedule_actions
|
9313
|
+
# The list of schedule actions.
|
9314
|
+
# @return [Array<Types::ScheduleAction>]
|
9315
|
+
#
|
9316
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ScheduleDescribeResultModel AWS API Documentation
|
9317
|
+
#
|
9318
|
+
class ScheduleDescribeResultModel < Struct.new(
|
9319
|
+
:next_token,
|
9320
|
+
:schedule_actions)
|
9321
|
+
include Aws::Structure
|
9322
|
+
end
|
9323
|
+
|
8778
9324
|
# @api private
|
8779
9325
|
#
|
8780
9326
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Scte20PlusEmbeddedDestinationSettings AWS API Documentation
|
@@ -8840,6 +9386,228 @@ module Aws::MediaLive
|
|
8840
9386
|
include Aws::Structure
|
8841
9387
|
end
|
8842
9388
|
|
9389
|
+
# SCTE-35 Delivery Restrictions.
|
9390
|
+
#
|
9391
|
+
# @note When making an API call, you may pass Scte35DeliveryRestrictions
|
9392
|
+
# data as a hash:
|
9393
|
+
#
|
9394
|
+
# {
|
9395
|
+
# archive_allowed_flag: "ARCHIVE_NOT_ALLOWED", # required, accepts ARCHIVE_NOT_ALLOWED, ARCHIVE_ALLOWED
|
9396
|
+
# device_restrictions: "NONE", # required, accepts NONE, RESTRICT_GROUP0, RESTRICT_GROUP1, RESTRICT_GROUP2
|
9397
|
+
# no_regional_blackout_flag: "REGIONAL_BLACKOUT", # required, accepts REGIONAL_BLACKOUT, NO_REGIONAL_BLACKOUT
|
9398
|
+
# web_delivery_allowed_flag: "WEB_DELIVERY_NOT_ALLOWED", # required, accepts WEB_DELIVERY_NOT_ALLOWED, WEB_DELIVERY_ALLOWED
|
9399
|
+
# }
|
9400
|
+
#
|
9401
|
+
# @!attribute [rw] archive_allowed_flag
|
9402
|
+
# SCTE-35 segmentation\_descriptor archive\_allowed\_flag.
|
9403
|
+
# @return [String]
|
9404
|
+
#
|
9405
|
+
# @!attribute [rw] device_restrictions
|
9406
|
+
# SCTE-35 segmentation\_descriptor web\_delivery\_allowed\_flag.
|
9407
|
+
# @return [String]
|
9408
|
+
#
|
9409
|
+
# @!attribute [rw] no_regional_blackout_flag
|
9410
|
+
# SCTE-35 segmentation\_descriptor no\_regional\_blackout\_flag.
|
9411
|
+
# @return [String]
|
9412
|
+
#
|
9413
|
+
# @!attribute [rw] web_delivery_allowed_flag
|
9414
|
+
# SCTE-35 segmentation\_descriptor web\_delivery\_allowed\_flag.
|
9415
|
+
# @return [String]
|
9416
|
+
#
|
9417
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Scte35DeliveryRestrictions AWS API Documentation
|
9418
|
+
#
|
9419
|
+
class Scte35DeliveryRestrictions < Struct.new(
|
9420
|
+
:archive_allowed_flag,
|
9421
|
+
:device_restrictions,
|
9422
|
+
:no_regional_blackout_flag,
|
9423
|
+
:web_delivery_allowed_flag)
|
9424
|
+
include Aws::Structure
|
9425
|
+
end
|
9426
|
+
|
9427
|
+
# SCTE-35 Descriptor.
|
9428
|
+
#
|
9429
|
+
# @note When making an API call, you may pass Scte35Descriptor
|
9430
|
+
# data as a hash:
|
9431
|
+
#
|
9432
|
+
# {
|
9433
|
+
# scte_35_descriptor_settings: { # required
|
9434
|
+
# segmentation_descriptor_scte_35_descriptor_settings: { # required
|
9435
|
+
# delivery_restrictions: {
|
9436
|
+
# archive_allowed_flag: "ARCHIVE_NOT_ALLOWED", # required, accepts ARCHIVE_NOT_ALLOWED, ARCHIVE_ALLOWED
|
9437
|
+
# device_restrictions: "NONE", # required, accepts NONE, RESTRICT_GROUP0, RESTRICT_GROUP1, RESTRICT_GROUP2
|
9438
|
+
# no_regional_blackout_flag: "REGIONAL_BLACKOUT", # required, accepts REGIONAL_BLACKOUT, NO_REGIONAL_BLACKOUT
|
9439
|
+
# web_delivery_allowed_flag: "WEB_DELIVERY_NOT_ALLOWED", # required, accepts WEB_DELIVERY_NOT_ALLOWED, WEB_DELIVERY_ALLOWED
|
9440
|
+
# },
|
9441
|
+
# segment_num: 1,
|
9442
|
+
# segmentation_cancel_indicator: "SEGMENTATION_EVENT_NOT_CANCELED", # required, accepts SEGMENTATION_EVENT_NOT_CANCELED, SEGMENTATION_EVENT_CANCELED
|
9443
|
+
# segmentation_duration: 1,
|
9444
|
+
# segmentation_event_id: 1, # required
|
9445
|
+
# segmentation_type_id: 1,
|
9446
|
+
# segmentation_upid: "__string",
|
9447
|
+
# segmentation_upid_type: 1,
|
9448
|
+
# segments_expected: 1,
|
9449
|
+
# sub_segment_num: 1,
|
9450
|
+
# sub_segments_expected: 1,
|
9451
|
+
# },
|
9452
|
+
# },
|
9453
|
+
# }
|
9454
|
+
#
|
9455
|
+
# @!attribute [rw] scte_35_descriptor_settings
|
9456
|
+
# SCTE-35 Descriptor Settings.
|
9457
|
+
# @return [Types::Scte35DescriptorSettings]
|
9458
|
+
#
|
9459
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Scte35Descriptor AWS API Documentation
|
9460
|
+
#
|
9461
|
+
class Scte35Descriptor < Struct.new(
|
9462
|
+
:scte_35_descriptor_settings)
|
9463
|
+
include Aws::Structure
|
9464
|
+
end
|
9465
|
+
|
9466
|
+
# SCTE-35 Descriptor settings.
|
9467
|
+
#
|
9468
|
+
# @note When making an API call, you may pass Scte35DescriptorSettings
|
9469
|
+
# data as a hash:
|
9470
|
+
#
|
9471
|
+
# {
|
9472
|
+
# segmentation_descriptor_scte_35_descriptor_settings: { # required
|
9473
|
+
# delivery_restrictions: {
|
9474
|
+
# archive_allowed_flag: "ARCHIVE_NOT_ALLOWED", # required, accepts ARCHIVE_NOT_ALLOWED, ARCHIVE_ALLOWED
|
9475
|
+
# device_restrictions: "NONE", # required, accepts NONE, RESTRICT_GROUP0, RESTRICT_GROUP1, RESTRICT_GROUP2
|
9476
|
+
# no_regional_blackout_flag: "REGIONAL_BLACKOUT", # required, accepts REGIONAL_BLACKOUT, NO_REGIONAL_BLACKOUT
|
9477
|
+
# web_delivery_allowed_flag: "WEB_DELIVERY_NOT_ALLOWED", # required, accepts WEB_DELIVERY_NOT_ALLOWED, WEB_DELIVERY_ALLOWED
|
9478
|
+
# },
|
9479
|
+
# segment_num: 1,
|
9480
|
+
# segmentation_cancel_indicator: "SEGMENTATION_EVENT_NOT_CANCELED", # required, accepts SEGMENTATION_EVENT_NOT_CANCELED, SEGMENTATION_EVENT_CANCELED
|
9481
|
+
# segmentation_duration: 1,
|
9482
|
+
# segmentation_event_id: 1, # required
|
9483
|
+
# segmentation_type_id: 1,
|
9484
|
+
# segmentation_upid: "__string",
|
9485
|
+
# segmentation_upid_type: 1,
|
9486
|
+
# segments_expected: 1,
|
9487
|
+
# sub_segment_num: 1,
|
9488
|
+
# sub_segments_expected: 1,
|
9489
|
+
# },
|
9490
|
+
# }
|
9491
|
+
#
|
9492
|
+
# @!attribute [rw] segmentation_descriptor_scte_35_descriptor_settings
|
9493
|
+
# SCTE-35 Segmentation Descriptor.
|
9494
|
+
# @return [Types::Scte35SegmentationDescriptor]
|
9495
|
+
#
|
9496
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Scte35DescriptorSettings AWS API Documentation
|
9497
|
+
#
|
9498
|
+
class Scte35DescriptorSettings < Struct.new(
|
9499
|
+
:segmentation_descriptor_scte_35_descriptor_settings)
|
9500
|
+
include Aws::Structure
|
9501
|
+
end
|
9502
|
+
|
9503
|
+
# SCTE-35 Return to Network Settings.
|
9504
|
+
#
|
9505
|
+
# @note When making an API call, you may pass Scte35ReturnToNetworkScheduleActionSettings
|
9506
|
+
# data as a hash:
|
9507
|
+
#
|
9508
|
+
# {
|
9509
|
+
# splice_event_id: 1, # required
|
9510
|
+
# }
|
9511
|
+
#
|
9512
|
+
# @!attribute [rw] splice_event_id
|
9513
|
+
# The splice\_event\_id for the SCTE-35 splice\_insert, as defined in
|
9514
|
+
# SCTE-35.
|
9515
|
+
# @return [Integer]
|
9516
|
+
#
|
9517
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Scte35ReturnToNetworkScheduleActionSettings AWS API Documentation
|
9518
|
+
#
|
9519
|
+
class Scte35ReturnToNetworkScheduleActionSettings < Struct.new(
|
9520
|
+
:splice_event_id)
|
9521
|
+
include Aws::Structure
|
9522
|
+
end
|
9523
|
+
|
9524
|
+
# SCTE-35 Segmentation Descriptor.
|
9525
|
+
#
|
9526
|
+
# @note When making an API call, you may pass Scte35SegmentationDescriptor
|
9527
|
+
# data as a hash:
|
9528
|
+
#
|
9529
|
+
# {
|
9530
|
+
# delivery_restrictions: {
|
9531
|
+
# archive_allowed_flag: "ARCHIVE_NOT_ALLOWED", # required, accepts ARCHIVE_NOT_ALLOWED, ARCHIVE_ALLOWED
|
9532
|
+
# device_restrictions: "NONE", # required, accepts NONE, RESTRICT_GROUP0, RESTRICT_GROUP1, RESTRICT_GROUP2
|
9533
|
+
# no_regional_blackout_flag: "REGIONAL_BLACKOUT", # required, accepts REGIONAL_BLACKOUT, NO_REGIONAL_BLACKOUT
|
9534
|
+
# web_delivery_allowed_flag: "WEB_DELIVERY_NOT_ALLOWED", # required, accepts WEB_DELIVERY_NOT_ALLOWED, WEB_DELIVERY_ALLOWED
|
9535
|
+
# },
|
9536
|
+
# segment_num: 1,
|
9537
|
+
# segmentation_cancel_indicator: "SEGMENTATION_EVENT_NOT_CANCELED", # required, accepts SEGMENTATION_EVENT_NOT_CANCELED, SEGMENTATION_EVENT_CANCELED
|
9538
|
+
# segmentation_duration: 1,
|
9539
|
+
# segmentation_event_id: 1, # required
|
9540
|
+
# segmentation_type_id: 1,
|
9541
|
+
# segmentation_upid: "__string",
|
9542
|
+
# segmentation_upid_type: 1,
|
9543
|
+
# segments_expected: 1,
|
9544
|
+
# sub_segment_num: 1,
|
9545
|
+
# sub_segments_expected: 1,
|
9546
|
+
# }
|
9547
|
+
#
|
9548
|
+
# @!attribute [rw] delivery_restrictions
|
9549
|
+
# SCTE-35 delivery restrictions.
|
9550
|
+
# @return [Types::Scte35DeliveryRestrictions]
|
9551
|
+
#
|
9552
|
+
# @!attribute [rw] segment_num
|
9553
|
+
# SCTE-35 segmentation\_descriptor segment\_num.
|
9554
|
+
# @return [Integer]
|
9555
|
+
#
|
9556
|
+
# @!attribute [rw] segmentation_cancel_indicator
|
9557
|
+
# SCTE-35 segmentation\_descriptor
|
9558
|
+
# segmentation\_event\_cancel\_indicator.
|
9559
|
+
# @return [String]
|
9560
|
+
#
|
9561
|
+
# @!attribute [rw] segmentation_duration
|
9562
|
+
# SCTE-35 segmentation\_descriptor segmentation\_duration specified in
|
9563
|
+
# 90 KHz clock ticks.
|
9564
|
+
# @return [Integer]
|
9565
|
+
#
|
9566
|
+
# @!attribute [rw] segmentation_event_id
|
9567
|
+
# SCTE-35 segmentation\_descriptor segmentation\_event\_id.
|
9568
|
+
# @return [Integer]
|
9569
|
+
#
|
9570
|
+
# @!attribute [rw] segmentation_type_id
|
9571
|
+
# SCTE-35 segmentation\_descriptor segmentation\_type\_id.
|
9572
|
+
# @return [Integer]
|
9573
|
+
#
|
9574
|
+
# @!attribute [rw] segmentation_upid
|
9575
|
+
# SCTE-35 segmentation\_descriptor segmentation\_upid as a hex string.
|
9576
|
+
# @return [String]
|
9577
|
+
#
|
9578
|
+
# @!attribute [rw] segmentation_upid_type
|
9579
|
+
# SCTE-35 segmentation\_descriptor segmentation\_upid\_type.
|
9580
|
+
# @return [Integer]
|
9581
|
+
#
|
9582
|
+
# @!attribute [rw] segments_expected
|
9583
|
+
# SCTE-35 segmentation\_descriptor segments\_expected.
|
9584
|
+
# @return [Integer]
|
9585
|
+
#
|
9586
|
+
# @!attribute [rw] sub_segment_num
|
9587
|
+
# SCTE-35 segmentation\_descriptor sub\_segment\_num.
|
9588
|
+
# @return [Integer]
|
9589
|
+
#
|
9590
|
+
# @!attribute [rw] sub_segments_expected
|
9591
|
+
# SCTE-35 segmentation\_descriptor sub\_segments\_expected.
|
9592
|
+
# @return [Integer]
|
9593
|
+
#
|
9594
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Scte35SegmentationDescriptor AWS API Documentation
|
9595
|
+
#
|
9596
|
+
class Scte35SegmentationDescriptor < Struct.new(
|
9597
|
+
:delivery_restrictions,
|
9598
|
+
:segment_num,
|
9599
|
+
:segmentation_cancel_indicator,
|
9600
|
+
:segmentation_duration,
|
9601
|
+
:segmentation_event_id,
|
9602
|
+
:segmentation_type_id,
|
9603
|
+
:segmentation_upid,
|
9604
|
+
:segmentation_upid_type,
|
9605
|
+
:segments_expected,
|
9606
|
+
:sub_segment_num,
|
9607
|
+
:sub_segments_expected)
|
9608
|
+
include Aws::Structure
|
9609
|
+
end
|
9610
|
+
|
8843
9611
|
# @note When making an API call, you may pass Scte35SpliceInsert
|
8844
9612
|
# data as a hash:
|
8845
9613
|
#
|
@@ -8874,6 +9642,35 @@ module Aws::MediaLive
|
|
8874
9642
|
include Aws::Structure
|
8875
9643
|
end
|
8876
9644
|
|
9645
|
+
# SCTE-35 Splice Insert Settings.
|
9646
|
+
#
|
9647
|
+
# @note When making an API call, you may pass Scte35SpliceInsertScheduleActionSettings
|
9648
|
+
# data as a hash:
|
9649
|
+
#
|
9650
|
+
# {
|
9651
|
+
# duration: 1,
|
9652
|
+
# splice_event_id: 1, # required
|
9653
|
+
# }
|
9654
|
+
#
|
9655
|
+
# @!attribute [rw] duration
|
9656
|
+
# The duration for the SCTE-35 splice\_insert specified in 90KHz clock
|
9657
|
+
# ticks. When duration is not specified the expectation is that a
|
9658
|
+
# Scte35ReturnToNetwork action will be scheduled.
|
9659
|
+
# @return [Integer]
|
9660
|
+
#
|
9661
|
+
# @!attribute [rw] splice_event_id
|
9662
|
+
# The splice\_event\_id for the SCTE-35 splice\_insert, as defined in
|
9663
|
+
# SCTE-35.
|
9664
|
+
# @return [Integer]
|
9665
|
+
#
|
9666
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Scte35SpliceInsertScheduleActionSettings AWS API Documentation
|
9667
|
+
#
|
9668
|
+
class Scte35SpliceInsertScheduleActionSettings < Struct.new(
|
9669
|
+
:duration,
|
9670
|
+
:splice_event_id)
|
9671
|
+
include Aws::Structure
|
9672
|
+
end
|
9673
|
+
|
8877
9674
|
# @note When making an API call, you may pass Scte35TimeSignalApos
|
8878
9675
|
# data as a hash:
|
8879
9676
|
#
|
@@ -8908,6 +9705,50 @@ module Aws::MediaLive
|
|
8908
9705
|
include Aws::Structure
|
8909
9706
|
end
|
8910
9707
|
|
9708
|
+
# SCTE-35 Time Signal Settings.
|
9709
|
+
#
|
9710
|
+
# @note When making an API call, you may pass Scte35TimeSignalScheduleActionSettings
|
9711
|
+
# data as a hash:
|
9712
|
+
#
|
9713
|
+
# {
|
9714
|
+
# scte_35_descriptors: [ # required
|
9715
|
+
# {
|
9716
|
+
# scte_35_descriptor_settings: { # required
|
9717
|
+
# segmentation_descriptor_scte_35_descriptor_settings: { # required
|
9718
|
+
# delivery_restrictions: {
|
9719
|
+
# archive_allowed_flag: "ARCHIVE_NOT_ALLOWED", # required, accepts ARCHIVE_NOT_ALLOWED, ARCHIVE_ALLOWED
|
9720
|
+
# device_restrictions: "NONE", # required, accepts NONE, RESTRICT_GROUP0, RESTRICT_GROUP1, RESTRICT_GROUP2
|
9721
|
+
# no_regional_blackout_flag: "REGIONAL_BLACKOUT", # required, accepts REGIONAL_BLACKOUT, NO_REGIONAL_BLACKOUT
|
9722
|
+
# web_delivery_allowed_flag: "WEB_DELIVERY_NOT_ALLOWED", # required, accepts WEB_DELIVERY_NOT_ALLOWED, WEB_DELIVERY_ALLOWED
|
9723
|
+
# },
|
9724
|
+
# segment_num: 1,
|
9725
|
+
# segmentation_cancel_indicator: "SEGMENTATION_EVENT_NOT_CANCELED", # required, accepts SEGMENTATION_EVENT_NOT_CANCELED, SEGMENTATION_EVENT_CANCELED
|
9726
|
+
# segmentation_duration: 1,
|
9727
|
+
# segmentation_event_id: 1, # required
|
9728
|
+
# segmentation_type_id: 1,
|
9729
|
+
# segmentation_upid: "__string",
|
9730
|
+
# segmentation_upid_type: 1,
|
9731
|
+
# segments_expected: 1,
|
9732
|
+
# sub_segment_num: 1,
|
9733
|
+
# sub_segments_expected: 1,
|
9734
|
+
# },
|
9735
|
+
# },
|
9736
|
+
# },
|
9737
|
+
# ],
|
9738
|
+
# }
|
9739
|
+
#
|
9740
|
+
# @!attribute [rw] scte_35_descriptors
|
9741
|
+
# The list of SCTE-35 descriptors accompanying the SCTE-35
|
9742
|
+
# time\_signal.
|
9743
|
+
# @return [Array<Types::Scte35Descriptor>]
|
9744
|
+
#
|
9745
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Scte35TimeSignalScheduleActionSettings AWS API Documentation
|
9746
|
+
#
|
9747
|
+
class Scte35TimeSignalScheduleActionSettings < Struct.new(
|
9748
|
+
:scte_35_descriptors)
|
9749
|
+
include Aws::Structure
|
9750
|
+
end
|
9751
|
+
|
8911
9752
|
# @api private
|
8912
9753
|
#
|
8913
9754
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SmpteTtDestinationSettings AWS API Documentation
|
@@ -9028,6 +9869,122 @@ module Aws::MediaLive
|
|
9028
9869
|
include Aws::Structure
|
9029
9870
|
end
|
9030
9871
|
|
9872
|
+
# Static image activate.
|
9873
|
+
#
|
9874
|
+
# @note When making an API call, you may pass StaticImageActivateScheduleActionSettings
|
9875
|
+
# data as a hash:
|
9876
|
+
#
|
9877
|
+
# {
|
9878
|
+
# duration: 1,
|
9879
|
+
# fade_in: 1,
|
9880
|
+
# fade_out: 1,
|
9881
|
+
# height: 1,
|
9882
|
+
# image: { # required
|
9883
|
+
# password_param: "__string",
|
9884
|
+
# uri: "__string", # required
|
9885
|
+
# username: "__string",
|
9886
|
+
# },
|
9887
|
+
# image_x: 1,
|
9888
|
+
# image_y: 1,
|
9889
|
+
# layer: 1,
|
9890
|
+
# opacity: 1,
|
9891
|
+
# width: 1,
|
9892
|
+
# }
|
9893
|
+
#
|
9894
|
+
# @!attribute [rw] duration
|
9895
|
+
# The duration in milliseconds for the image to remain in the video.
|
9896
|
+
# If omitted or set to 0, duration is infinite and image will remain
|
9897
|
+
# until explicitly deactivated.
|
9898
|
+
# @return [Integer]
|
9899
|
+
#
|
9900
|
+
# @!attribute [rw] fade_in
|
9901
|
+
# The time in milliseconds for the image to fade in. Defaults to 0.
|
9902
|
+
# @return [Integer]
|
9903
|
+
#
|
9904
|
+
# @!attribute [rw] fade_out
|
9905
|
+
# The time in milliseconds for the image to fade out. Defaults to 0.
|
9906
|
+
# @return [Integer]
|
9907
|
+
#
|
9908
|
+
# @!attribute [rw] height
|
9909
|
+
# The height of the image when inserted into the video. Defaults to
|
9910
|
+
# the native height of the image.
|
9911
|
+
# @return [Integer]
|
9912
|
+
#
|
9913
|
+
# @!attribute [rw] image
|
9914
|
+
# The image to overlay on the video. Must be a 32 bit BMP, PNG, or TGA
|
9915
|
+
# file. Must not be larger than the input video.
|
9916
|
+
# @return [Types::InputLocation]
|
9917
|
+
#
|
9918
|
+
# @!attribute [rw] image_x
|
9919
|
+
# Placement of the left edge of the image on the horizontal axis in
|
9920
|
+
# pixels. 0 is the left edge of the frame. Defaults to 0.
|
9921
|
+
# @return [Integer]
|
9922
|
+
#
|
9923
|
+
# @!attribute [rw] image_y
|
9924
|
+
# Placement of the top edge of the image on the vertical axis in
|
9925
|
+
# pixels. 0 is the top edge of the frame. Defaults to 0.
|
9926
|
+
# @return [Integer]
|
9927
|
+
#
|
9928
|
+
# @!attribute [rw] layer
|
9929
|
+
# The Z order of the inserted image. Images with higher layer values
|
9930
|
+
# will be inserted on top of images with lower layer values. Permitted
|
9931
|
+
# values are 0-7 inclusive. Defaults to 0.
|
9932
|
+
# @return [Integer]
|
9933
|
+
#
|
9934
|
+
# @!attribute [rw] opacity
|
9935
|
+
# Opacity of image where 0 is transparent and 100 is fully opaque.
|
9936
|
+
# Defaults to 100.
|
9937
|
+
# @return [Integer]
|
9938
|
+
#
|
9939
|
+
# @!attribute [rw] width
|
9940
|
+
# The width of the image when inserted into the video. Defaults to the
|
9941
|
+
# native width of the image.
|
9942
|
+
# @return [Integer]
|
9943
|
+
#
|
9944
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StaticImageActivateScheduleActionSettings AWS API Documentation
|
9945
|
+
#
|
9946
|
+
class StaticImageActivateScheduleActionSettings < Struct.new(
|
9947
|
+
:duration,
|
9948
|
+
:fade_in,
|
9949
|
+
:fade_out,
|
9950
|
+
:height,
|
9951
|
+
:image,
|
9952
|
+
:image_x,
|
9953
|
+
:image_y,
|
9954
|
+
:layer,
|
9955
|
+
:opacity,
|
9956
|
+
:width)
|
9957
|
+
include Aws::Structure
|
9958
|
+
end
|
9959
|
+
|
9960
|
+
# Static image deactivate.
|
9961
|
+
#
|
9962
|
+
# @note When making an API call, you may pass StaticImageDeactivateScheduleActionSettings
|
9963
|
+
# data as a hash:
|
9964
|
+
#
|
9965
|
+
# {
|
9966
|
+
# fade_out: 1,
|
9967
|
+
# layer: 1,
|
9968
|
+
# }
|
9969
|
+
#
|
9970
|
+
# @!attribute [rw] fade_out
|
9971
|
+
# The time in milliseconds for the image to fade out. Defaults to 0.
|
9972
|
+
# @return [Integer]
|
9973
|
+
#
|
9974
|
+
# @!attribute [rw] layer
|
9975
|
+
# The Z order of the inserted image. Images with higher layer values
|
9976
|
+
# will be inserted on top of images with lower layer values. Permitted
|
9977
|
+
# values are 0-7 inclusive. Defaults to 0.
|
9978
|
+
# @return [Integer]
|
9979
|
+
#
|
9980
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StaticImageDeactivateScheduleActionSettings AWS API Documentation
|
9981
|
+
#
|
9982
|
+
class StaticImageDeactivateScheduleActionSettings < Struct.new(
|
9983
|
+
:fade_out,
|
9984
|
+
:layer)
|
9985
|
+
include Aws::Structure
|
9986
|
+
end
|
9987
|
+
|
9031
9988
|
# @note When making an API call, you may pass StaticKeySettings
|
9032
9989
|
# data as a hash:
|
9033
9990
|
#
|