Class: Aws::MediaLive::Types::FeatureActivations
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaLive::Types::FeatureActivations
- Defined in:
- gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb
Overview
Note:
When making an API call, you may pass FeatureActivations data as a hash:
{
input_prepare_schedule_actions: "DISABLED", # accepts DISABLED, ENABLED
}
Feature Activations
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#input_prepare_schedule_actions ⇒ String
Enables the Input Prepare feature.
Instance Attribute Details
#input_prepare_schedule_actions ⇒ String
Enables the Input Prepare feature. You can create Input Prepare actions in the schedule only if this feature is enabled. If you disable the feature on an existing schedule, make sure that you first delete all input prepare actions from the schedule.
6990 6991 6992 6993 6994 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6990 class FeatureActivations < Struct.new( :input_prepare_schedule_actions) SENSITIVE = [] include Aws::Structure end |