Class: Aws::LexModelsV2::Types::BuiltInIntentSummary
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::LexModelsV2::Types::BuiltInIntentSummary
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lexmodelsv2/types.rb
 
Overview
Provides summary information about a built-in intent for the [ ListBuiltInIntents ][1] operation.
[1]: docs.aws.amazon.com/lexv2/latest/APIReference/API_ListBuiltInIntents.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The description of the intent.
 - 
  
    
      #intent_signature  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The signature of the built-in intent.
 
Instance Attribute Details
#description ⇒ String
The description of the intent.
      2889 2890 2891 2892 2893 2894  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 2889 class BuiltInIntentSummary < Struct.new( :intent_signature, :description) SENSITIVE = [] include Aws::Structure end  | 
  
#intent_signature ⇒ String
The signature of the built-in intent. Use this to specify the parent intent of a derived intent.
      2889 2890 2891 2892 2893 2894  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 2889 class BuiltInIntentSummary < Struct.new( :intent_signature, :description) SENSITIVE = [] include Aws::Structure end  |