Class StreamDescription
- java.lang.Object
-
- com.amazonaws.kinesisvideo.producer.StreamDescription
-
public class StreamDescription extends Object
Class to represent the stream description object coming from a successful call to the DescribeStream service API.- Author:
- dduc
-
-
Field Summary
Fields Modifier and Type Field Description static intSTREAM_DESCRIPTION_CURRENT_VERSIONCurrent version for the structure as defined in the native code
-
Constructor Summary
Constructors Constructor Description StreamDescription(int version, String deviceName, String streamName, String contentType, String updateVersion, String streamArn, StreamStatus streamStatus, long creationTime)StreamDescription(int version, String deviceName, String streamName, String contentType, String updateVersion, String streamArn, StreamStatus streamStatus, long creationTime, long retention, String kmsKeyId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetContentType()longgetCreationTime()StringgetDeviceName()StringgetKmsKeyId()longgetRetention()StringgetStreamArn()StringgetStreamName()intgetStreamStatus()StringgetUpdateVersion()intgetVersion()
-
-
-
Field Detail
-
STREAM_DESCRIPTION_CURRENT_VERSION
public static final int STREAM_DESCRIPTION_CURRENT_VERSION
Current version for the structure as defined in the native code- See Also:
- Constant Field Values
-
-
Method Detail
-
getVersion
@CalledByNativeCode public int getVersion()
-
getDeviceName
@CalledByNativeCode public String getDeviceName()
-
getStreamName
@CalledByNativeCode public String getStreamName()
-
getContentType
@CalledByNativeCode public String getContentType()
-
getUpdateVersion
@CalledByNativeCode public String getUpdateVersion()
-
getStreamArn
@CalledByNativeCode public String getStreamArn()
-
getStreamStatus
@CalledByNativeCode public int getStreamStatus()
-
getCreationTime
@CalledByNativeCode public long getCreationTime()
-
getRetention
@CalledByNativeCode public long getRetention()
-
getKmsKeyId
@CalledByNativeCode public String getKmsKeyId()
-
-