class ParentActionGroupSignature
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.Alpha.ParentActionGroupSignature |
Go | github.com/aws/aws-cdk-go/awsbedrockalpha/v2#ParentActionGroupSignature |
Java | software.amazon.awscdk.services.bedrock.alpha.ParentActionGroupSignature |
Python | aws_cdk.aws_bedrock_alpha.ParentActionGroupSignature |
TypeScript (source) | @aws-cdk/aws-bedrock-alpha ยป ParentActionGroupSignature |
AWS Defined signatures for enabling certain capabilities in your agent.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as bedrock_alpha from '@aws-cdk/aws-bedrock-alpha';
const parentActionGroupSignature = new bedrock_alpha.ParentActionGroupSignature('value');
Initializer
new ParentActionGroupSignature(value: string)
Parameters
- value
stringโ The AWS-defined signature value for this action group capability.
Constructor should be used as a temporary solution when a new signature is supported but its implementation in CDK hasn't been added yet.
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The AWS-defined signature value for this action group capability. |
| static CODE_INTERPRETER | Parent | Signature that allows your agent to generate, run, and troubleshoot code when trying to complete a task. |
| static USER_INPUT | Parent | Signature that allows your agent to request the user for additional information when trying to complete a task. |
value
Type:
string
The AWS-defined signature value for this action group capability.
static CODE_INTERPRETER
Type:
Parent
Signature that allows your agent to generate, run, and troubleshoot code when trying to complete a task.
static USER_INPUT
Type:
Parent
Signature that allows your agent to request the user for additional information when trying to complete a task.
Methods
| Name | Description |
|---|---|
| to | Returns the string representation of the signature value. |
toString()
public toString(): string
Returns
string
Returns the string representation of the signature value.
Used when configuring the action group in CloudFormation.

.NET
Go
Java
Python
TypeScript (