Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SetPermissionRequest

import type { SetPermissionRequest } from "https://aws-api.deno.dev/v0.3/services/opsworks.ts?docs=full";
interface SetPermissionRequest {
AllowSsh?: boolean | null;
AllowSudo?: boolean | null;
IamUserArn: string;
Level?: string | null;
StackId: string;
}

§Properties

§
AllowSsh?: boolean | null
[src]

The user is allowed to use SSH to communicate with the instance.

§
AllowSudo?: boolean | null
[src]

The user is allowed to use sudo to elevate privileges.

§
IamUserArn: string
[src]

The user's IAM ARN. This can also be a federated user's ARN.

§
Level?: string | null
[src]

The user's permission level, which must be set to one of the following strings. You cannot set your own permissions level.

  • deny
    
  • show
    
  • deploy
    
  • manage
    
  • iam_only
    

For more information about the permissions associated with these levels, see Managing User Permissions.

§
StackId: string
[src]

The stack ID.