Class: Aws::MediaLive::Types::StaticKeySettings

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

{
  key_provider_server: {
    password_param: "__string",
    uri: "__string", # required
    username: "__string",
  },
  static_key_value: "__stringMin32Max32", # required
}

Static Key Settings

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#key_provider_serverTypes::InputLocation

The URL of the license server used for protecting content.



16643
16644
16645
16646
16647
16648
# File 'lib/aws-sdk-medialive/types.rb', line 16643

class StaticKeySettings < Struct.new(
  :key_provider_server,
  :static_key_value)
  SENSITIVE = []
  include Aws::Structure
end

#static_key_valueString

Static key value as a 32 character hexadecimal string.

Returns:

  • (String)


16643
16644
16645
16646
16647
16648
# File 'lib/aws-sdk-medialive/types.rb', line 16643

class StaticKeySettings < Struct.new(
  :key_provider_server,
  :static_key_value)
  SENSITIVE = []
  include Aws::Structure
end