Skip to content

Commit

Permalink
[aws][fix] Use correct type (#1762)
Browse files Browse the repository at this point in the history
  • Loading branch information
lloesche committed Aug 3, 2023
1 parent 6e8fcf7 commit 2540a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/aws/resoto_plugin_aws/resource/sqs.py
Expand Up @@ -46,7 +46,7 @@ class AwsSqsQueue(AwsResource):
"sqs_approximate_number_of_messages_delayed": S("ApproximateNumberOfMessagesDelayed") >> AsInt(),
"sqs_policy": S("Policy") >> ParseJson(keys_to_snake=True),
"sqs_redrive_policy": S("RedrivePolicy") >> ParseJson() >> Bend(AwsSqsRedrivePolicy.mapping),
"sqs_fifo_queue": S("FifoQueue"),
"sqs_fifo_queue": S("FifoQueue") >> AsBool(),
"sqs_content_based_deduplication": S("ContentBasedDeduplication") >> AsBool(),
"sqs_kms_master_key_id": S("KmsMasterKeyId"),
"sqs_kms_data_key_reuse_period_seconds": S("KmsDataKeyReusePeriodSeconds") >> AsInt(),
Expand Down

0 comments on commit 2540a2b

Please sign in to comment.