This message was deleted.
# contribute
s
This message was deleted.
l
The versioning object exists in the nodejs example, I can see it:
Copy code
const versioning = new aws.s3.BucketVersioningV2("versioning", {
    bucket: versioningBucket.id,
    versioningConfiguration: {
        status: "Enabled",
    },
});
Yes, it's in the Python example too:
Copy code
versioning = aws.s3.BucketVersioningV2("versioning",
    bucket=versioning_bucket.id,
    versioning_configuration=aws.s3.BucketVersioningV2VersioningConfigurationArgs(
        status="Enabled",
    ))
s
omg, thats weird.. i dont know how i missed it. okay that's not a good example then.. but this is a good place for me possibly help out. thanks!
l
Hey @sparse-gold-10561 we're so excited and thankful you'd like to contribute here. These docs are not directly editable by the community, and the best path is to file an issue here with your suggested changes included in the details. https://github.com/pulumi/pulumi-aws/issues. I'll keep an eye out for it.
👍 1