You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::MediaLive::Types::InputSwitchScheduleActionSettings

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing InputSwitchScheduleActionSettings as input to an Aws::Client method, you can use a vanilla Hash:

{
  input_attachment_name_reference: "__string", # required
  input_clipping_settings: {
    input_timecode_source: "ZEROBASED", # required, accepts ZEROBASED, EMBEDDED
    start_timecode: {
      timecode: "__string",
    },
    stop_timecode: {
      last_frame_clipping_behavior: "EXCLUDE_LAST_FRAME", # accepts EXCLUDE_LAST_FRAME, INCLUDE_LAST_FRAME
      timecode: "__string",
    },
  },
  url_path: ["__string"],
}

Settings for the "switch input" action: to switch from ingesting one input to ingesting another input.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#input_attachment_name_referenceString

The name of the input attachment (not the name of the input!) to switch to. The name is specified in the channel configuration.

Returns:

  • (String)

    The name of the input attachment (not the name of the input!) to switch to.

#input_clipping_settingsTypes::InputClippingSettings

Settings to let you create a clip of the file input, in order to set up the input to ingest only a portion of the file.

Returns:

  • (Types::InputClippingSettings)

    Settings to let you create a clip of the file input, in order to set up the input to ingest only a portion of the file.

#url_pathArray<String>

The value for the variable portion of the URL for the dynamic input, for this instance of the input. Each time you use the same dynamic input in an input switch action, you can provide a different value, in order to connect the input to a different content source.

Returns:

  • (Array<String>)

    The value for the variable portion of the URL for the dynamic input, for this instance of the input.