Class: Aws::MediaLive::Types::FixedModeScheduleActionStartSettings

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-medialive/types.rb

Overview

Note:

When making an API call, you may pass FixedModeScheduleActionStartSettings data as a hash:

{
  time: "__string", # required
}

Start time for the action.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#timeString

Start time for the action to start in the channel. (Not the time for the action to be added to the schedule: actions are always added to the schedule immediately.) UTC format: yyyy-mm-ddThh:mm:ss.nnnZ. All the letters are digits (for example, mm might be 01) except for the two constants “T” for time and “Z” for “UTC format”.

Returns:

  • (String)


7570
7571
7572
7573
7574
# File 'lib/aws-sdk-medialive/types.rb', line 7570

class FixedModeScheduleActionStartSettings < Struct.new(
  :time)
  SENSITIVE = []
  include Aws::Structure
end