Class: Aws::IVS::Types::StreamKey
- Inherits:
-
Struct
- Object
- Struct
- Aws::IVS::Types::StreamKey
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ivs/types.rb
Overview
Object specifying a stream key.
Constant Summary collapse
- SENSITIVE =
[:value]
Instance Attribute Summary collapse
-
#arn ⇒ String
Stream-key ARN.
-
#channel_arn ⇒ String
Channel ARN for the stream.
-
#tags ⇒ Hash<String,String>
Tags attached to the resource.
-
#value ⇒ String
Stream-key value.
Instance Attribute Details
#arn ⇒ String
Stream-key ARN.
2101 2102 2103 2104 2105 2106 2107 2108 |
# File 'lib/aws-sdk-ivs/types.rb', line 2101 class StreamKey < Struct.new( :arn, :channel_arn, :tags, :value) SENSITIVE = [:value] include Aws::Structure end |
#channel_arn ⇒ String
Channel ARN for the stream.
2101 2102 2103 2104 2105 2106 2107 2108 |
# File 'lib/aws-sdk-ivs/types.rb', line 2101 class StreamKey < Struct.new( :arn, :channel_arn, :tags, :value) SENSITIVE = [:value] include Aws::Structure end |
#tags ⇒ Hash<String,String>
Tags attached to the resource. Array of 1-50 maps, each of the form ‘string:string (key:value)`. See [Best practices and strategies] in *Tagging Amazon Web Services Resources and Tag Editor* for details, including restrictions that apply to tags and “Tag naming limits and requirements”; Amazon IVS has no service-specific constraints beyond what is documented there.
[1]: docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
2101 2102 2103 2104 2105 2106 2107 2108 |
# File 'lib/aws-sdk-ivs/types.rb', line 2101 class StreamKey < Struct.new( :arn, :channel_arn, :tags, :value) SENSITIVE = [:value] include Aws::Structure end |