```/** * Input properties used for looking up and...
# general
m
Copy code
/**
 * Input properties used for looking up and filtering RoleGrants resources.
 */
export interface RoleGrantsState {
    /**
     * The name of the role we are granting.
     */
    roleName?: pulumi.Input<string>;
    /**
     * Grants role to this specified role.
     */
    roles?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * Grants role to this specified user.
     */
    users?: pulumi.Input<pulumi.Input<string>[]>;
}