Class: Aws::OpsWorks::Types::DescribePermissionsResult

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb

Overview

Contains the response to a DescribePermissions request.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#permissionsArray<Types::Permission>

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.

Returns:



2700
2701
2702
2703
2704
# File 'gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb', line 2700

class DescribePermissionsResult < Struct.new(
  :permissions)
  SENSITIVE = []
  include Aws::Structure
end