Interface CfnService.MCPServerSigV4AuthorizationConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnService.MCPServerSigV4AuthorizationConfigProperty.Jsii$Proxy
- Enclosing class:
CfnService
@Stability(Stable)
public static interface CfnService.MCPServerSigV4AuthorizationConfigProperty
extends software.amazon.jsii.JsiiSerializable
SigV4 authorization configuration for MCP server.
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.devopsagent.*;
MCPServerSigV4AuthorizationConfigProperty mCPServerSigV4AuthorizationConfigProperty = MCPServerSigV4AuthorizationConfigProperty.builder()
.region("region")
.roleArn("roleArn")
.service("service")
// the properties below are optional
.customHeaders(Map.of(
"customHeadersKey", "customHeaders"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.MCPServerSigV4AuthorizationConfigPropertystatic final classAn implementation forCfnService.MCPServerSigV4AuthorizationConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRegion
AWS region for SigV4 signing.Use '*' for SigV4a multi-region signing.
- See Also:
-
getRoleArn
IAM role ARN to assume for SigV4 signing.- See Also:
-
getService
AWS service name for SigV4 signing.- See Also:
-
getCustomHeaders
Custom headers for the SigV4 MCP server.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
builder
-