Struct rusoto_opsworks::SetPermissionRequest [] [src]

pub struct SetPermissionRequest {
    pub allow_ssh: Option<bool>,
    pub allow_sudo: Option<bool>,
    pub iam_user_arn: String,
    pub level: Option<String>,
    pub stack_id: String,
}

Fields

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

The user is allowed to use sudo to elevate privileges.

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

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 on the permissions associated with these levels, see Managing User Permissions.

The stack ID.

Trait Implementations

impl Default for SetPermissionRequest
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for SetPermissionRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for SetPermissionRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations