Class: Aws::MediaLive::Types::InputLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaLive::Types::InputLocation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-medialive/types.rb
Overview
Input Location
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#password_param ⇒ String
key used to extract the password from EC2 Parameter store.
-
#uri ⇒ String
Uniform Resource Identifier - This should be a path to a file accessible to the Live system (eg. a http:// URI) depending on the output type.
-
#username ⇒ String
Username if credentials are required to access a file or publishing point.
Instance Attribute Details
#password_param ⇒ String
key used to extract the password from EC2 Parameter store
7270 7271 7272 7273 7274 7275 7276 |
# File 'lib/aws-sdk-medialive/types.rb', line 7270 class InputLocation < Struct.new( :password_param, :uri, :username) SENSITIVE = [] include Aws::Structure end |
#uri ⇒ String
Uniform Resource Identifier - This should be a path to a file accessible to the Live system (eg. a http:// URI) depending on the output type. For example, a RTMP destination should have a uri simliar to: “rtmp://fmsserver/live”.
7270 7271 7272 7273 7274 7275 7276 |
# File 'lib/aws-sdk-medialive/types.rb', line 7270 class InputLocation < Struct.new( :password_param, :uri, :username) SENSITIVE = [] include Aws::Structure end |
#username ⇒ String
Username if credentials are required to access a file or publishing point. This can be either a plaintext username, or a reference to an AWS parameter store name from which the username can be retrieved. AWS Parameter store format: “ssm://<parameter name=”“>”</p> </parameter>
7270 7271 7272 7273 7274 7275 7276 |
# File 'lib/aws-sdk-medialive/types.rb', line 7270 class InputLocation < Struct.new( :password_param, :uri, :username) SENSITIVE = [] include Aws::Structure end |