Class: Aws::RAM::Types::GetPermissionRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RAM::Types::GetPermissionRequest
 
- Defined in:
- gems/aws-sdk-ram/lib/aws-sdk-ram/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #permission_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the [Amazon Resource Name (ARN)][1] of the permission whose contents you want to retrieve. 
- 
  
    
      #permission_version  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the version number of the RAM permission to retrieve. 
Instance Attribute Details
#permission_arn ⇒ String
Specifies the Amazon Resource Name (ARN) of the permission whose contents you want to retrieve. To find the ARN for a permission, use either the ListPermissions operation or go to the Permissions library page in the RAM console and then choose the name of the permission. The ARN is displayed on the detail page.
| 1156 1157 1158 1159 1160 1161 | # File 'gems/aws-sdk-ram/lib/aws-sdk-ram/types.rb', line 1156 class GetPermissionRequest < Struct.new( :permission_arn, :permission_version) SENSITIVE = [] include Aws::Structure end | 
#permission_version ⇒ Integer
Specifies the version number of the RAM permission to retrieve. If you don't specify this parameter, the operation retrieves the default version.
To see the list of available versions, use ListPermissionVersions.
| 1156 1157 1158 1159 1160 1161 | # File 'gems/aws-sdk-ram/lib/aws-sdk-ram/types.rb', line 1156 class GetPermissionRequest < Struct.new( :permission_arn, :permission_version) SENSITIVE = [] include Aws::Structure end |