library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

Create CloudWatch Log Stream

Creates a new CloudWatch log stream within a specified log group.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws.pipeline.create_cloudwatch_log_stream \
--arg 'region=<string>' \
--arg 'log_group_name=<string>' \
--arg 'log_stream_name=<string>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = aws.pipeline.create_cloudwatch_log_stream
args = {
region = <string>
log_group_name = <string>
log_stream_name = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
regionstringYesThe name of the Region.-
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
log_group_namestringYesThe name of the CloudWatch log group in which the log stream will be created.-
log_stream_namestringYesThe name of the CloudWatch log stream to be created.-

Outputs

NameDescription
log_stream_creationConfirmation of the CloudWatch log stream creation.