You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::KinesisVideo::Types::TagStreamInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing TagStreamInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  stream_arn: "ResourceARN",
  stream_name: "StreamName",
  tags: { # required
    "TagKey" => "TagValue",
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#stream_arnString

The Amazon Resource Name (ARN) of the resource that you want to add the tag or tags to.

Returns:

  • (String)

    The Amazon Resource Name (ARN) of the resource that you want to add the tag or tags to.

#stream_nameString

The name of the stream that you want to add the tag or tags to.

Returns:

  • (String)

    The name of the stream that you want to add the tag or tags to.

#tagsHash<String,String>

A list of tags to associate with the specified stream. Each tag is a key-value pair (the value is optional).

Returns:

  • (Hash<String,String>)

    A list of tags to associate with the specified stream.