Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1005 Bytes

File metadata and controls

30 lines (23 loc) · 1005 Bytes

CustomRolePost

Properties

Name Type Description Notes
name string A human-friendly name for the custom role [default to undefined]
key string The custom role key [default to undefined]
description string Description of custom role [optional] [default to undefined]
policy Array<StatementPost> [default to undefined]
basePermissions string [optional] [default to undefined]
resourceCategory string [optional] [default to undefined]

Example

import { CustomRolePost } from 'launchdarkly-api-typescript';

const instance: CustomRolePost = {
    name,
    key,
    description,
    policy,
    basePermissions,
    resourceCategory,
};

[Back to Model list] [Back to API list] [Back to README]