You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
should include adding a name: field that ends in ".fifo". like so
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const queue = new aws.sqs.Queue("queue", {
contentBasedDeduplication: true,
fifoQueue: true,
name: "queue.fifo"
});
The text was updated successfully, but these errors were encountered:
Going to close this as a dupe of pulumi/pulumi-aws#967 - we really need to fix that in the core library itself - there isn't an easy way to just patch the docs here (it's going to be about the same effort as to just fix the underlying issue).
File: docs/reference/pkg/nodejs/pulumi/aws/sqs/_index.md
should include adding a
name:
field that ends in ".fifo". like soThe text was updated successfully, but these errors were encountered: