Class: Aws::LexModelsV2::Types::TestSetStorageLocation
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::LexModelsV2::Types::TestSetStorageLocation
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelsv2/types.rb
Overview
Contains information about the location in which the test set is stored.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #kms_key_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Amazon Resource Name (ARN) of an Amazon Web Services Key Management Service (KMS) key for encrypting the test set. 
- 
  
    
      #s3_bucket_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the Amazon S3 bucket in which the test set is stored. 
- 
  
    
      #s3_path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The path inside the Amazon S3 bucket where the test set is stored. 
Instance Attribute Details
#kms_key_arn ⇒ String
The Amazon Resource Name (ARN) of an Amazon Web Services Key Management Service (KMS) key for encrypting the test set.
| 14022 14023 14024 14025 14026 14027 14028 | # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 14022 class TestSetStorageLocation < Struct.new( :s3_bucket_name, :s3_path, :kms_key_arn) SENSITIVE = [] include Aws::Structure end | 
#s3_bucket_name ⇒ String
The name of the Amazon S3 bucket in which the test set is stored.
| 14022 14023 14024 14025 14026 14027 14028 | # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 14022 class TestSetStorageLocation < Struct.new( :s3_bucket_name, :s3_path, :kms_key_arn) SENSITIVE = [] include Aws::Structure end | 
#s3_path ⇒ String
The path inside the Amazon S3 bucket where the test set is stored.
| 14022 14023 14024 14025 14026 14027 14028 | # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 14022 class TestSetStorageLocation < Struct.new( :s3_bucket_name, :s3_path, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |