Interface CfnAgent.AgentActionGroupProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAgent.AgentActionGroupProperty.Jsii$Proxy
Enclosing class:
CfnAgent

@Stability(Stable) public static interface CfnAgent.AgentActionGroupProperty extends software.amazon.jsii.JsiiSerializable
Contains details about an action group.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.bedrock.*;
 AgentActionGroupProperty agentActionGroupProperty = AgentActionGroupProperty.builder()
         .actionGroupName("actionGroupName")
         // the properties below are optional
         .actionGroupExecutor(ActionGroupExecutorProperty.builder()
                 .customControl("customControl")
                 .lambda("lambda")
                 .build())
         .actionGroupState("actionGroupState")
         .apiSchema(APISchemaProperty.builder()
                 .payload("payload")
                 .s3(S3IdentifierProperty.builder()
                         .s3BucketName("s3BucketName")
                         .s3ObjectKey("s3ObjectKey")
                         .build())
                 .build())
         .description("description")
         .functionSchema(FunctionSchemaProperty.builder()
                 .functions(List.of(FunctionProperty.builder()
                         .name("name")
                         // the properties below are optional
                         .description("description")
                         .parameters(Map.of(
                                 "parametersKey", ParameterDetailProperty.builder()
                                         .type("type")
                                         // the properties below are optional
                                         .description("description")
                                         .required(false)
                                         .build()))
                         .build()))
                 .build())
         .parentActionGroupSignature("parentActionGroupSignature")
         .skipResourceInUseCheckOnDelete(false)
         .build();
 

See Also: