Interface CfnServicePropsMixin.MCPServerSigV4DetailsProperty

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

@Stability(Stable) public static interface CfnServicePropsMixin.MCPServerSigV4DetailsProperty extends software.amazon.jsii.JsiiSerializable
SigV4-authenticated MCP server 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.cfnpropertymixins.services.devopsagent.*;
 MCPServerSigV4DetailsProperty mCPServerSigV4DetailsProperty = MCPServerSigV4DetailsProperty.builder()
         .authorizationConfig(MCPServerSigV4AuthorizationConfigProperty.builder()
                 .customHeaders(Map.of(
                         "customHeadersKey", "customHeaders"))
                 .region("region")
                 .roleArn("roleArn")
                 .service("service")
                 .build())
         .description("description")
         .endpoint("endpoint")
         .name("name")
         .build();
 

See Also: