Video Stream Args
Provides a Kinesis Video Stream resource. Amazon Kinesis Video Streams makes it easy to securely stream video from connected devices to AWS for analytics, machine learning (ML), playback, and other processing. For more details, see the Amazon Kinesis Documentation.
Example Usage
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.kinesis.VideoStream;
import com.pulumi.aws.kinesis.VideoStreamArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var default_ = new VideoStream("default", VideoStreamArgs.builder()
.dataRetentionInHours(1)
.deviceName("kinesis-video-device-name")
.mediaType("video/h264")
.tags(Map.of("Name", "kinesis-video-stream"))
.build());
}
}
Import
Kinesis Streams can be imported using the arn
, e.g.,
$ pulumi import aws:kinesis/videoStream:VideoStream test_stream arn:aws:kinesisvideo:us-west-2:123456789012:stream/terraform-kinesis-test/1554978910975
1https://aws.amazon.com/documentation/kinesis/ 2http://www.iana.org/assignments/media-types/media-types.xhtml 3https://tools.ietf.org/html/rfc6838#section-4.2
Constructors
Properties
The number of hours that you want to retain the data in the stream. Kinesis Video Streams retains the data in a data store that is associated with the stream. The default value is 0
, indicating that the stream does not persist data.
The name of the device that is writing to the stream. In the current implementation, Kinesis Video Streams does not use this name.
The media type of the stream. Consumers of the stream can use this information when processing the stream. For more information about media types, see Media Types. If you choose to specify the MediaType, see Naming Requirements for guidelines.