Interface CfnRuntimeProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRuntimeProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)", date="2025-11-13T16:10:00.091Z") @Stability(Stable) public interface CfnRuntimeProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnRuntime.

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.*;
 CfnRuntimeProps cfnRuntimeProps = CfnRuntimeProps.builder()
         .agentRuntimeArtifact(AgentRuntimeArtifactProperty.builder()
                 .codeConfiguration(CodeConfigurationProperty.builder()
                         .code(CodeProperty.builder()
                                 .s3(S3LocationProperty.builder()
                                         .bucket("bucket")
                                         .prefix("prefix")
                                         // the properties below are optional
                                         .versionId("versionId")
                                         .build())
                                 .build())
                         .entryPoint(List.of("entryPoint"))
                         .runtime("runtime")
                         .build())
                 .containerConfiguration(ContainerConfigurationProperty.builder()
                         .containerUri("containerUri")
                         .build())
                 .build())
         .agentRuntimeName("agentRuntimeName")
         .networkConfiguration(NetworkConfigurationProperty.builder()
                 .networkMode("networkMode")
                 // the properties below are optional
                 .networkModeConfig(VpcConfigProperty.builder()
                         .securityGroups(List.of("securityGroups"))
                         .subnets(List.of("subnets"))
                         .build())
                 .build())
         .roleArn("roleArn")
         // the properties below are optional
         .authorizerConfiguration(AuthorizerConfigurationProperty.builder()
                 .customJwtAuthorizer(CustomJWTAuthorizerConfigurationProperty.builder()
                         .discoveryUrl("discoveryUrl")
                         // the properties below are optional
                         .allowedAudience(List.of("allowedAudience"))
                         .allowedClients(List.of("allowedClients"))
                         .build())
                 .build())
         .description("description")
         .environmentVariables(Map.of(
                 "environmentVariablesKey", "environmentVariables"))
         .lifecycleConfiguration(LifecycleConfigurationProperty.builder()
                 .idleRuntimeSessionTimeout(123)
                 .maxLifetime(123)
                 .build())
         .protocolConfiguration("protocolConfiguration")
         .requestHeaderConfiguration(RequestHeaderConfigurationProperty.builder()
                 .requestHeaderAllowlist(List.of("requestHeaderAllowlist"))
                 .build())
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 

See Also: