Interface CfnGateway.GatewayProtocolConfigurationProperty

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

@Stability(Stable) public static interface CfnGateway.GatewayProtocolConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The protocol configuration.

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.bedrockagentcore.*;
 GatewayProtocolConfigurationProperty gatewayProtocolConfigurationProperty = GatewayProtocolConfigurationProperty.builder()
         .mcp(MCPGatewayConfigurationProperty.builder()
                 .instructions("instructions")
                 .searchType("searchType")
                 .supportedVersions(List.of("supportedVersions"))
                 .build())
         .build();
 

See Also: