Class: Aws::KinesisVideo::Types::UpdateStreamInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisVideo::Types::UpdateStreamInput
- Defined in:
- gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#current_version ⇒ String
The version of the stream whose metadata you want to update.
-
#device_name ⇒ String
The name of the device that is writing to the stream.
-
#media_type ⇒ String
The stream's media type.
-
#stream_arn ⇒ String
The ARN of the stream whose metadata you want to update.
-
#stream_name ⇒ String
The name of the stream whose metadata you want to update.
Instance Attribute Details
#current_version ⇒ String
The version of the stream whose metadata you want to update.
2123 2124 2125 2126 2127 2128 2129 2130 2131 |
# File 'gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb', line 2123 class UpdateStreamInput < Struct.new( :stream_name, :stream_arn, :current_version, :device_name, :media_type) SENSITIVE = [] include Aws::Structure end |
#device_name ⇒ String
The name of the device that is writing to the stream.
2123 2124 2125 2126 2127 2128 2129 2130 2131 |
# File 'gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb', line 2123 class UpdateStreamInput < Struct.new( :stream_name, :stream_arn, :current_version, :device_name, :media_type) SENSITIVE = [] include Aws::Structure end |
#media_type ⇒ String
The stream's media type. Use MediaType
to specify the type of
content that the stream contains to the consumers of the stream. For
more information about media types, see Media Types. If you
choose to specify the MediaType
, see Naming Requirements.
To play video on the console, you must specify the correct video
type. For example, if the video in the stream is H.264, specify
video/h264
as the MediaType
.
2123 2124 2125 2126 2127 2128 2129 2130 2131 |
# File 'gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb', line 2123 class UpdateStreamInput < Struct.new( :stream_name, :stream_arn, :current_version, :device_name, :media_type) SENSITIVE = [] include Aws::Structure end |
#stream_arn ⇒ String
The ARN of the stream whose metadata you want to update.
2123 2124 2125 2126 2127 2128 2129 2130 2131 |
# File 'gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb', line 2123 class UpdateStreamInput < Struct.new( :stream_name, :stream_arn, :current_version, :device_name, :media_type) SENSITIVE = [] include Aws::Structure end |
#stream_name ⇒ String
The name of the stream whose metadata you want to update.
The stream name is an identifier for the stream, and must be unique for each account and region.
2123 2124 2125 2126 2127 2128 2129 2130 2131 |
# File 'gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb', line 2123 class UpdateStreamInput < Struct.new( :stream_name, :stream_arn, :current_version, :device_name, :media_type) SENSITIVE = [] include Aws::Structure end |