Struct rusoto_opsworks::DescribePermissionsResult[][src]

pub struct DescribePermissionsResult {
    pub permissions: Option<Vec<Permission>>,
}

Contains the response to a DescribePermissions request.

Fields

An array of Permission objects that describe the stack permissions.

  • If the request object contains only a stack ID, the array contains a Permission object with permissions for each of the stack IAM ARNs.

  • If the request object contains only an IAM ARN, the array contains a Permission object with permissions for each of the user's stack IDs.

  • If the request contains a stack ID and an IAM ARN, the array contains a single Permission object with permissions for the specified stack and IAM ARN.

Trait Implementations

impl Default for DescribePermissionsResult
[src]

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

impl Debug for DescribePermissionsResult
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribePermissionsResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribePermissionsResult
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations