Class: Aws::MediaLive::Types::StaticImageDeactivateScheduleActionSettings

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 StaticImageDeactivateScheduleActionSettings data as a hash:

{
  fade_out: 1,
  layer: 1,
}

Settings for the action to deactivate the image in a specific layer.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#fade_outInteger

The time in milliseconds for the image to fade out. Default is 0 (no fade-out).

Returns:

  • (Integer)


16612
16613
16614
16615
16616
16617
# File 'lib/aws-sdk-medialive/types.rb', line 16612

class StaticImageDeactivateScheduleActionSettings < Struct.new(
  :fade_out,
  :layer)
  SENSITIVE = []
  include Aws::Structure
end

#layerInteger

The image overlay layer to deactivate, 0 to 7. Default is 0.

Returns:

  • (Integer)


16612
16613
16614
16615
16616
16617
# File 'lib/aws-sdk-medialive/types.rb', line 16612

class StaticImageDeactivateScheduleActionSettings < Struct.new(
  :fade_out,
  :layer)
  SENSITIVE = []
  include Aws::Structure
end