Class: Aws::IVSRealTime::Types::CreateEncoderConfigurationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IVSRealTime::Types::CreateEncoderConfigurationRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ivsrealtime/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
Optional name to identify the resource.
-
#tags ⇒ Hash<String,String>
Tags attached to the resource.
-
#video ⇒ Types::Video
Video configuration.
Instance Attribute Details
#name ⇒ String
Optional name to identify the resource.
223 224 225 226 227 228 229 |
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 223 class CreateEncoderConfigurationRequest < Struct.new( :name, :video, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
Tags attached to the resource. Array of maps, each of the form ‘string:string (key:value)`. See [Best practices and strategies] in *Tagging AWS Resources and Tag Editor* for details, including restrictions that apply to tags and “Tag naming limits and requirements”; Amazon IVS has no constraints on tags beyond what is documented there.
[1]: docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
223 224 225 226 227 228 229 |
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 223 class CreateEncoderConfigurationRequest < Struct.new( :name, :video, :tags) SENSITIVE = [] include Aws::Structure end |
#video ⇒ Types::Video
Video configuration. Default: video resolution 1280x720, bitrate 2500 kbps, 30 fps.
223 224 225 226 227 228 229 |
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 223 class CreateEncoderConfigurationRequest < Struct.new( :name, :video, :tags) SENSITIVE = [] include Aws::Structure end |