Class: Aws::Connect::Types::CreatedByInfo
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::CreatedByInfo
 
 
- Defined in:
 - gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
 
Overview
CreatedByInfo is a union - when making an API calls you must set exactly one of the members.
CreatedByInfo is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CreatedByInfo corresponding to the set member.
Information on the identity that created the file.
Direct Known Subclasses
Defined Under Namespace
Classes: AwsIdentityArn, ConnectUserArn, Unknown
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #aws_identity_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
STS or IAM ARN representing the identity of API Caller.
 - 
  
    
      #connect_user_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An agent ARN representing a [connect user][1].
 - 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute unknown.
 
Instance Attribute Details
#aws_identity_arn ⇒ String
STS or IAM ARN representing the identity of API Caller. SDK users
cannot populate this and this value is calculated automatically if
ConnectUserArn is not provided.
      6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124  | 
    
      # File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 6113 class CreatedByInfo < Struct.new( :connect_user_arn, :aws_identity_arn, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class ConnectUserArn < CreatedByInfo; end class AwsIdentityArn < CreatedByInfo; end class Unknown < CreatedByInfo; end end  | 
  
#connect_user_arn ⇒ String
An agent ARN representing a connect user.
      6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124  | 
    
      # File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 6113 class CreatedByInfo < Struct.new( :connect_user_arn, :aws_identity_arn, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class ConnectUserArn < CreatedByInfo; end class AwsIdentityArn < CreatedByInfo; end class Unknown < CreatedByInfo; end end  | 
  
#unknown ⇒ Object
Returns the value of attribute unknown
      6113 6114 6115  | 
    
      # File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 6113 def unknown @unknown end  |