interface CustomPromptInputParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAgent.CustomPromptInputParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAgent_CustomPromptInputParametersProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAgent.CustomPromptInputParametersProperty |
Python | aws_cdk.aws_quicksight.CfnAgent.CustomPromptInputParametersProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnAgent » CustomPromptInputParametersProperty |
Parameters for creating a new custom prompt configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const customPromptInputParametersProperty: quicksight.CfnAgent.CustomPromptInputParametersProperty = {
customInstructions: 'customInstructions',
identity: 'identity',
outputStyle: 'outputStyle',
responseLength: 'responseLength',
tone: 'tone',
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | string | Custom instructions for the agent behavior. |
| identity? | string | The identity or persona of the agent. |
| output | string | The output style for the agent responses. |
| response | string | The desired response length for the agent. |
| tone? | string | The tone used in agent responses. |
customInstructions?
Type:
string
(optional)
Custom instructions for the agent behavior.
identity?
Type:
string
(optional)
The identity or persona of the agent.
outputStyle?
Type:
string
(optional)
The output style for the agent responses.
responseLength?
Type:
string
(optional)
The desired response length for the agent.
tone?
Type:
string
(optional)
The tone used in agent responses.

.NET
Go
Java
Python
TypeScript