Class Tag
- java.lang.Object
-
- com.amazonaws.kinesisvideo.producer.Tag
-
public class Tag extends Object
Kinesis Video Tag representation.NOTE: This class must match the Tag declaration in native code in /client/Include.h
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()Gets the name of the tagStringgetValue()Gets the value of the tagStringtoString()
-
-
-
Constructor Detail
-
Tag
@CalledByNativeCode public Tag(@Nonnull String name, @Nonnull String value)
Public constructor which can be called from native code.- Parameters:
name- Name of the tagvalue- Value of the tag
-
-
Method Detail
-
getName
@Nonnull @CalledByNativeCode public String getName()
Gets the name of the tag- Returns:
- tag name
-
getValue
@Nonnull @CalledByNativeCode public String getValue()
Gets the value of the tag- Returns:
- tag value
-
-