Class: Aws::SageMaker::Types::IamIdentity
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::IamIdentity
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
The IAM Identity details associated with the user. These details are associated with model package groups, model packages and project entities only.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the IAM identity.
 - 
  
    
      #principal_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the principal that assumes the IAM identity.
 - 
  
    
      #source_identity  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The person or application which assumes the IAM identity.
 
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the IAM identity.
      25098 25099 25100 25101 25102 25103 25104  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 25098 class IamIdentity < Struct.new( :arn, :principal_id, :source_identity) SENSITIVE = [] include Aws::Structure end  | 
  
#principal_id ⇒ String
The ID of the principal that assumes the IAM identity.
      25098 25099 25100 25101 25102 25103 25104  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 25098 class IamIdentity < Struct.new( :arn, :principal_id, :source_identity) SENSITIVE = [] include Aws::Structure end  | 
  
#source_identity ⇒ String
The person or application which assumes the IAM identity.
      25098 25099 25100 25101 25102 25103 25104  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 25098 class IamIdentity < Struct.new( :arn, :principal_id, :source_identity) SENSITIVE = [] include Aws::Structure end  |