library
turbot/aws
Get Involved
Version
Pipeline: 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
| Name | Type | Required | Description | Default |
|---|---|---|---|---|
| region | string | Yes | The name of the Region. | - |
| conn | connection.aws | Yes | Name of AWS connection to use. If not provided, the default AWS connection will be used. | connection.aws.default |
| log_group_name | string | Yes | The name of the CloudWatch log group in which the log stream will be created. | - |
| log_stream_name | string | Yes | The name of the CloudWatch log stream to be created. | - |
Outputs
| Name | Description |
|---|---|
| log_stream_creation | Confirmation of the CloudWatch log stream creation. |