Interface CfnAgent.FunctionProperty

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

@Stability(Stable) public static interface CfnAgent.FunctionProperty extends software.amazon.jsii.JsiiSerializable
Defines parameters that the agent needs to invoke from the user to complete the function.

Corresponds to an action in an action group.

This data type is used in the following API operations:

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.*;
 FunctionProperty functionProperty = 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()))
         .requireConfirmation("requireConfirmation")
         .build();
 

See Also: