Class: Aws::MediaLive::Types::InputSourceRequest

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

{
  password_param: "__string",
  url: "__string",
  username: "__string",
}

Settings for for a PULL type input.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#password_paramString

The key used to extract the password from EC2 Parameter store.

Returns:

  • (String)


10950
10951
10952
10953
10954
10955
10956
# File 'lib/aws-sdk-medialive/types.rb', line 10950

class InputSourceRequest < Struct.new(
  :password_param,
  :url,
  :username)
  SENSITIVE = []
  include Aws::Structure
end

#urlString

This represents the customer’s source URL where stream is pulled from.

Returns:

  • (String)


10950
10951
10952
10953
10954
10955
10956
# File 'lib/aws-sdk-medialive/types.rb', line 10950

class InputSourceRequest < Struct.new(
  :password_param,
  :url,
  :username)
  SENSITIVE = []
  include Aws::Structure
end

#usernameString

The username for the input source.

Returns:

  • (String)


10950
10951
10952
10953
10954
10955
10956
# File 'lib/aws-sdk-medialive/types.rb', line 10950

class InputSourceRequest < Struct.new(
  :password_param,
  :url,
  :username)
  SENSITIVE = []
  include Aws::Structure
end