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
Note: for support questions, please first reference our documentation, then use Stackoverflow. This repository's issues are intended for feature requests and bug reports.
I'm submitting a ...
[X ] 🪲 bug report
What is the current behavior? If the current behavior is a 🪲bug🪲: Please provide the steps to reproduce
As per Current Behaviour to set allow policy on on say dummy action we have to write following.
var policy = new PolicyStatement(PolicyStatementProps.builder()
.withActions(List.of("dummy_action"))
.build()
);
policy.setEffect(Effect.ALLOW);
What is the expected behavior (or behavior of feature suggested)?
Expected is following.
var policy = new PolicyStatement(PolicyStatementProps.builder()
.withActions(List.of("dummy_action"))
.withEffect(Effect.ALLOW)
.build()
);
What is the motivation / use case for changing the behavior or adding this feature?
Other information (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. associated pull-request, stackoverflow, gitter, etc)
The text was updated successfully, but these errors were encountered:
Note: for support questions, please first reference our documentation, then use Stackoverflow. This repository's issues are intended for feature requests and bug reports.
I'm submitting a ...
What is the current behavior?
If the current behavior is a 🪲bug🪲: Please provide the steps to reproduce
As per Current Behaviour to set allow policy on on say dummy action we have to write following.
Expected is following.
What is the motivation / use case for changing the behavior or adding this feature?
Please tell us about your environment:
Other information (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. associated pull-request, stackoverflow, gitter, etc)
The text was updated successfully, but these errors were encountered: