| 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> and <code>notActions</code> fields 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> and <code>notResources</code> fields 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 { Statement } from 'launchdarkly-api-typescript';
const instance: Statement = {
resources,
notResources,
actions,
notActions,
effect,
};
[Back to Model list] [Back to API list] [Back to README]