Class: Aws::LexModelsV2::Types::GrammarSlotTypeSource
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::LexModelsV2::Types::GrammarSlotTypeSource
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lexmodelsv2/types.rb
 
Overview
Describes the Amazon S3 bucket name and location for the grammar that is the source for the slot type.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #kms_key_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The KMS key required to decrypt the contents of the grammar, if any.
 - 
  
    
      #s3_bucket_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the Amazon S3 bucket that contains the grammar source.
 - 
  
    
      #s3_object_key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The path to the grammar in the Amazon S3 bucket.
 
Instance Attribute Details
#kms_key_arn ⇒ String
The KMS key required to decrypt the contents of the grammar, if any.
      7872 7873 7874 7875 7876 7877 7878  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 7872 class GrammarSlotTypeSource < Struct.new( :s3_bucket_name, :s3_object_key, :kms_key_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#s3_bucket_name ⇒ String
The name of the Amazon S3 bucket that contains the grammar source.
      7872 7873 7874 7875 7876 7877 7878  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 7872 class GrammarSlotTypeSource < Struct.new( :s3_bucket_name, :s3_object_key, :kms_key_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#s3_object_key ⇒ String
The path to the grammar in the Amazon S3 bucket.
      7872 7873 7874 7875 7876 7877 7878  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 7872 class GrammarSlotTypeSource < Struct.new( :s3_bucket_name, :s3_object_key, :kms_key_arn) SENSITIVE = [] include Aws::Structure end  |