Class: Aws::BedrockAgent::Types::UpdatePromptRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::BedrockAgent::Types::UpdatePromptRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-bedrockagent/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 [:variants]
Instance Attribute Summary collapse
- 
  
    
      #customer_encryption_key_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the KMS key to encrypt the prompt.
 - 
  
    
      #default_variant  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the default variant for the prompt.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A description for the prompt.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A name for the prompt.
 - 
  
    
      #prompt_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier of the prompt.
 - 
  
    
      #variants  ⇒ Array<Types::PromptVariant> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of objects, each containing details about a variant of the prompt.
 
Instance Attribute Details
#customer_encryption_key_arn ⇒ String
The Amazon Resource Name (ARN) of the KMS key to encrypt the prompt.
      7608 7609 7610 7611 7612 7613 7614 7615 7616 7617  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 7608 class UpdatePromptRequest < Struct.new( :customer_encryption_key_arn, :default_variant, :description, :name, :prompt_identifier, :variants) SENSITIVE = [:variants] include Aws::Structure end  | 
  
#default_variant ⇒ String
The name of the default variant for the prompt. This value must match the ‘name` field in the relevant [PromptVariant] object.
[1]: docs.aws.amazon.com/bedrock/latest/APIReference/API_agent_PromptVariant.html
      7608 7609 7610 7611 7612 7613 7614 7615 7616 7617  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 7608 class UpdatePromptRequest < Struct.new( :customer_encryption_key_arn, :default_variant, :description, :name, :prompt_identifier, :variants) SENSITIVE = [:variants] include Aws::Structure end  | 
  
#description ⇒ String
A description for the prompt.
      7608 7609 7610 7611 7612 7613 7614 7615 7616 7617  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 7608 class UpdatePromptRequest < Struct.new( :customer_encryption_key_arn, :default_variant, :description, :name, :prompt_identifier, :variants) SENSITIVE = [:variants] include Aws::Structure end  | 
  
#name ⇒ String
A name for the prompt.
      7608 7609 7610 7611 7612 7613 7614 7615 7616 7617  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 7608 class UpdatePromptRequest < Struct.new( :customer_encryption_key_arn, :default_variant, :description, :name, :prompt_identifier, :variants) SENSITIVE = [:variants] include Aws::Structure end  | 
  
#prompt_identifier ⇒ String
The unique identifier of the prompt.
      7608 7609 7610 7611 7612 7613 7614 7615 7616 7617  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 7608 class UpdatePromptRequest < Struct.new( :customer_encryption_key_arn, :default_variant, :description, :name, :prompt_identifier, :variants) SENSITIVE = [:variants] include Aws::Structure end  | 
  
#variants ⇒ Array<Types::PromptVariant>
A list of objects, each containing details about a variant of the prompt.
      7608 7609 7610 7611 7612 7613 7614 7615 7616 7617  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 7608 class UpdatePromptRequest < Struct.new( :customer_encryption_key_arn, :default_variant, :description, :name, :prompt_identifier, :variants) SENSITIVE = [:variants] include Aws::Structure end  |