library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

Set SNS Topic Attributes

Sets attributes of an Amazon SNS topic.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws.pipeline.set_sns_topic_attributes \
--arg 'region=<string>' \
--arg 'topic_arn=<string>' \
--arg 'attribute_name=<string>' \
--arg 'attribute_value=<string>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = aws.pipeline.set_sns_topic_attributes
args = {
region = <string>
topic_arn = <string>
attribute_name = <string>
attribute_value = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
regionstringYesThe name of the Region.-
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
topic_arnstringYesThe Amazon Resource Name (ARN) of the Amazon SNS topic.-
attribute_namestringYesThe name of the attribute to set.-
attribute_valuestringYesThe value to set for the specified attribute.-

Outputs

This pipeline has no outputs.