Class: Aws::MediaPackage::Types::ChannelCreateParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaPackage::Types::ChannelCreateParameters
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediapackage/types.rb
Overview
Configuration parameters for a new Channel.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
A short text description of the Channel.
-
#id ⇒ String
The ID of the Channel.
-
#tags ⇒ Hash<String,String>
A collection of tags associated with a resource.
Instance Attribute Details
#description ⇒ String
A short text description of the Channel.
101 102 103 104 105 106 107 |
# File 'lib/aws-sdk-mediapackage/types.rb', line 101 class ChannelCreateParameters < Struct.new( :description, :id, :tags) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ID of the Channel. The ID must be unique within the region and it cannot be changed after a Channel is created.
101 102 103 104 105 106 107 |
# File 'lib/aws-sdk-mediapackage/types.rb', line 101 class ChannelCreateParameters < Struct.new( :description, :id, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A collection of tags associated with a resource
101 102 103 104 105 106 107 |
# File 'lib/aws-sdk-mediapackage/types.rb', line 101 class ChannelCreateParameters < Struct.new( :description, :id, :tags) SENSITIVE = [] include Aws::Structure end |