Class: Aws::MediaLive::Types::AvailBlanking

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

{
  avail_blanking_image: {
    password_param: "__string",
    uri: "__string", # required
    username: "__string",
  },
  state: "DISABLED", # accepts DISABLED, ENABLED
}

Avail Blanking

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#avail_blanking_imageTypes::InputLocation

Blanking image to be used. Leave empty for solid black. Only bmp and png images are supported.



1302
1303
1304
1305
1306
1307
# File 'lib/aws-sdk-medialive/types.rb', line 1302

class AvailBlanking < Struct.new(
  :avail_blanking_image,
  :state)
  SENSITIVE = []
  include Aws::Structure
end

#stateString

When set to enabled, causes video, audio and captions to be blanked when insertion metadata is added.

Returns:

  • (String)


1302
1303
1304
1305
1306
1307
# File 'lib/aws-sdk-medialive/types.rb', line 1302

class AvailBlanking < Struct.new(
  :avail_blanking_image,
  :state)
  SENSITIVE = []
  include Aws::Structure
end