Class: Aws::Transfer::Types::TestIdentityProviderResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Transfer::Types::TestIdentityProviderResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-transfer/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A message that indicates whether the test was successful or not.
 - 
  
    
      #response  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The response that is returned from your API Gateway or your Lambda function.
 - 
  
    
      #status_code  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The HTTP status code that is the response from your API Gateway or your Lambda function.
 - 
  
    
      #url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The endpoint of the service used to authenticate a user.
 
Instance Attribute Details
#message ⇒ String
A message that indicates whether the test was successful or not.
<note markdown=“1”> If an empty string is returned, the most likely cause is that the authentication failed due to an incorrect username or password.
</note>
  
      5450 5451 5452 5453 5454 5455 5456 5457  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 5450 class TestIdentityProviderResponse < Struct.new( :response, :status_code, :message, :url) SENSITIVE = [] include Aws::Structure end  | 
  
#response ⇒ String
The response that is returned from your API Gateway or your Lambda function.
      5450 5451 5452 5453 5454 5455 5456 5457  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 5450 class TestIdentityProviderResponse < Struct.new( :response, :status_code, :message, :url) SENSITIVE = [] include Aws::Structure end  | 
  
#status_code ⇒ Integer
The HTTP status code that is the response from your API Gateway or your Lambda function.
      5450 5451 5452 5453 5454 5455 5456 5457  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 5450 class TestIdentityProviderResponse < Struct.new( :response, :status_code, :message, :url) SENSITIVE = [] include Aws::Structure end  | 
  
#url ⇒ String
The endpoint of the service used to authenticate a user.
      5450 5451 5452 5453 5454 5455 5456 5457  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 5450 class TestIdentityProviderResponse < Struct.new( :response, :status_code, :message, :url) SENSITIVE = [] include Aws::Structure end  |