library
turbot/aws
Get Involved
Version
Pipeline: Set SQS Queue Attributes
Sets attributes of an Amazon SQS queue.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run aws.pipeline.set_sqs_queue_attributes \ --arg 'region=<string>' \ --arg 'queue_url=<string>' \ --arg 'attributes=<string>'
Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" { pipeline = aws.pipeline.set_sqs_queue_attributes args = { region = <string> queue_url = <string> attributes = <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 |
queue_url | string | Yes | The URL of the Amazon SQS queue to set attributes for. | - |
attributes | string | Yes | A map of attributes to set. | - |
Outputs
This pipeline has no outputs.