Class: Aws::CognitoIdentityProvider::Types::EventContextDataType
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CognitoIdentityProvider::Types::EventContextDataType
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-cognitoidentityprovider/types.rb
 
Overview
The context data that your application submitted in an authentication request with advanced security features, as displayed in an
- AdminListUserAuthEvents][1
 - 
response.
 
[1]: docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminListUserAuthEvents.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #city  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The user’s city.
 - 
  
    
      #country  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The user’s country.
 - 
  
    
      #device_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The user’s device name.
 - 
  
    
      #ip_address  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The source IP address of your user’s device.
 - 
  
    
      #timezone  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The user’s time zone.
 
Instance Attribute Details
#city ⇒ String
The user’s city.
      5831 5832 5833 5834 5835 5836 5837 5838 5839  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5831 class EventContextDataType < Struct.new( :ip_address, :device_name, :timezone, :city, :country) SENSITIVE = [] include Aws::Structure end  | 
  
#country ⇒ String
The user’s country.
      5831 5832 5833 5834 5835 5836 5837 5838 5839  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5831 class EventContextDataType < Struct.new( :ip_address, :device_name, :timezone, :city, :country) SENSITIVE = [] include Aws::Structure end  | 
  
#device_name ⇒ String
The user’s device name.
      5831 5832 5833 5834 5835 5836 5837 5838 5839  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5831 class EventContextDataType < Struct.new( :ip_address, :device_name, :timezone, :city, :country) SENSITIVE = [] include Aws::Structure end  | 
  
#ip_address ⇒ String
The source IP address of your user’s device.
      5831 5832 5833 5834 5835 5836 5837 5838 5839  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5831 class EventContextDataType < Struct.new( :ip_address, :device_name, :timezone, :city, :country) SENSITIVE = [] include Aws::Structure end  | 
  
#timezone ⇒ String
The user’s time zone.
      5831 5832 5833 5834 5835 5836 5837 5838 5839  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5831 class EventContextDataType < Struct.new( :ip_address, :device_name, :timezone, :city, :country) SENSITIVE = [] include Aws::Structure end  |