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

Permission

import type { Permission } from "https://aws-api.deno.dev/v0.3/services/opsworks.ts?docs=full";

Describes stack or user permissions.

interface Permission {
AllowSsh?: boolean | null;
AllowSudo?: boolean | null;
IamUserArn?: string | null;
Level?: string | null;
StackId?: string | null;
}

§Properties

§
AllowSsh?: boolean | null
[src]

Whether the user can use SSH.

§
AllowSudo?: boolean | null
[src]

Whether the user can use sudo.

§
IamUserArn?: string | null
[src]

The Amazon Resource Name (ARN) for an AWS Identity and Access Management (IAM) role. For more information about IAM ARNs, see Using Identifiers.

§
Level?: string | null
[src]

The user's permission level, which must be the following:

  • deny
    
  • show
    
  • deploy
    
  • manage
    
  • iam_only
    

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

§
StackId?: string | null
[src]

A stack ID.