| Name |
Type |
Description |
Notes |
| resources |
Array<string> |
Resource specifier strings |
[optional] [default to undefined] |
| notResources |
Array<string> |
Targeted resources are the resources NOT in this list. The <code>resources</code> field must be empty to use this field. |
[optional] [default to undefined] |
| actions |
Array<string> |
Actions to perform on a resource |
[optional] [default to undefined] |
| notActions |
Array<string> |
Targeted actions are the actions NOT in this list. The <code>actions</code> field must be empty to use this field. |
[optional] [default to undefined] |
| effect |
string |
Whether this statement should allow or deny actions on the resources. |
[default to undefined] |
import { StatementPost } from 'launchdarkly-api-typescript';
const instance: StatementPost = {
resources,
notResources,
actions,
notActions,
effect,
};
[Back to Model list] [Back to API list] [Back to README]