interface CustomPromptInterfaceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAgent.CustomPromptInterfaceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAgent_CustomPromptInterfaceProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAgent.CustomPromptInterfaceProperty |
Python | aws_cdk.aws_quicksight.CfnAgent.CustomPromptInterfaceProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnAgent » CustomPromptInterfaceProperty |
Read-only view of the resolved custom prompt interface for the agent.
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 customPromptInterfaceProperty: quicksight.CfnAgent.CustomPromptInterfaceProperty = {
customInstructions: 'customInstructions',
identity: 'identity',
modelProfileId: 'modelProfileId',
outputStyle: 'outputStyle',
promptSummary: 'promptSummary',
qbsAwsAccountId: 'qbsAwsAccountId',
responseLength: 'responseLength',
subscriptionId: 'subscriptionId',
tone: 'tone',
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | string | Custom instructions for the agent behavior. |
| identity? | string | The identity or persona of the agent. |
| model | string | The identifier of the model profile. |
| output | string | The output style for the agent responses. |
| prompt | string | A summary of the resolved prompt. |
| qbs | string | The QBS AWS account identifier. |
| response | string | The desired response length for the agent. |
| subscription | string | The subscription identifier. |
| 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.
modelProfileId?
Type:
string
(optional)
The identifier of the model profile.
outputStyle?
Type:
string
(optional)
The output style for the agent responses.
promptSummary?
Type:
string
(optional)
A summary of the resolved prompt.
qbsAwsAccountId?
Type:
string
(optional)
The QBS AWS account identifier.
responseLength?
Type:
string
(optional)
The desired response length for the agent.
subscriptionId?
Type:
string
(optional)
The subscription identifier.
tone?
Type:
string
(optional)
The tone used in agent responses.

.NET
Go
Java
Python
TypeScript