Provides a CloudWatch Log Stream resource.
resource "aws_cloudwatch_log_group" "yada" {
  name = "Yada"
}
resource "aws_cloudwatch_log_stream" "foo" {
  name           = "SampleLogStream1234"
  log_group_name = "${aws_cloudwatch_log_group.yada.name}"
}
The following arguments are supported:
name - (Required) The name of the log stream. Must not be longer than 512 characters and must not contain : log_group_name - (Required) The name of the log group under which the log stream is to be created. In addition to all arguments above, the following attributes are exported:
arn - The Amazon Resource Name (ARN) specifying the log stream. 
    © 2018 HashiCorpLicensed under the MPL 2.0 License.
    https://www.terraform.io/docs/providers/aws/r/cloudwatch_log_stream.html