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
The example provided for S3 bucket policy in Java is invalid. GetPolicyDocumentStatementArgs does not accept a List of Output<String> (List<Output<String>>) as the example implies. Instead it accepts Output<List<String>>. Current solution cannot be used at all, since it won't compile.
.applyValue(getPolicyDocumentResult -> getPolicyDocumentResult) is redundant. It does not mutate or does anything to the value itself.
The text was updated successfully, but these errors were encountered:
Thank you @Myslawek . I imagine your not blocked by this, but if you need any help let me know. I've routed this to the team to see why this particular example didn't convert properly.
File: themes/default/content/registry/packages/aws/api-docs/s3/bucketpolicy/_index.md
The example provided for S3 bucket policy in Java is invalid.
GetPolicyDocumentStatementArgs
does not accept aList
ofOutput<String>
(List<Output<String>>
) as the example implies. Instead it acceptsOutput<List<String>>
. Current solution cannot be used at all, since it won't compile..applyValue(getPolicyDocumentResult -> getPolicyDocumentResult)
is redundant. It does not mutate or does anything to the value itself.The text was updated successfully, but these errors were encountered: