Interface CfnRuntimeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRuntimeProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)",
date="2025-09-25T11:29:02.629Z")
@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() .containerConfiguration(ContainerConfigurationProperty.builder() .containerUri("containerUri") .build()) .build()) .agentRuntimeName("agentRuntimeName") .networkConfiguration(NetworkConfigurationProperty.builder() .networkMode("networkMode") .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")) .protocolConfiguration("protocolConfiguration") .tags(Map.of( "tagsKey", "tags")) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRuntimeProps
static final class
An implementation forCfnRuntimeProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAgentRuntimeArtifact
- See Also:
-
getAgentRuntimeName
- See Also:
-
getNetworkConfiguration
- See Also:
-
getRoleArn
- See Also:
-
getAuthorizerConfiguration
Configuration for the authorizer.- See Also:
-
getDescription
- See Also:
-
getEnvironmentVariables
Environment variable attributes.- See Also:
-
getProtocolConfiguration
- See Also:
-
getTags
A map of tag keys and values.- See Also:
-
builder
- Returns:
- a
CfnRuntimeProps.Builder
ofCfnRuntimeProps
-