Class: Aws::BedrockAgent::Types::PromptMetadataEntry
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::BedrockAgent::Types::PromptMetadataEntry
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-bedrockagent/types.rb
 
Overview
Contains a key-value pair that defines a metadata tag and value to attach to a prompt variant. For more information, see [Create a prompt using Prompt management].
[1]: docs.aws.amazon.com/bedrock/latest/userguide/prompt-management-create.html
Constant Summary collapse
- SENSITIVE =
 [:key, :value]
Instance Attribute Summary collapse
- 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The key of a metadata tag for a prompt variant.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value of a metadata tag for a prompt variant.
 
Instance Attribute Details
#key ⇒ String
The key of a metadata tag for a prompt variant.
      6032 6033 6034 6035 6036 6037  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 6032 class PromptMetadataEntry < Struct.new( :key, :value) SENSITIVE = [:key, :value] include Aws::Structure end  | 
  
#value ⇒ String
The value of a metadata tag for a prompt variant.
      6032 6033 6034 6035 6036 6037  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 6032 class PromptMetadataEntry < Struct.new( :key, :value) SENSITIVE = [:key, :value] include Aws::Structure end  |