Interface CfnRuntimeEndpointProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRuntimeEndpointProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)",
date="2025-09-25T11:29:02.628Z")
@Stability(Stable)
public interface CfnRuntimeEndpointProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnRuntimeEndpoint
.
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.*; CfnRuntimeEndpointProps cfnRuntimeEndpointProps = CfnRuntimeEndpointProps.builder() .agentRuntimeId("agentRuntimeId") .name("name") // the properties below are optional .agentRuntimeVersion("agentRuntimeVersion") .description("description") .tags(Map.of( "tagsKey", "tags")) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRuntimeEndpointProps
static final class
An implementation forCfnRuntimeEndpointProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAgentRuntimeId
The ID of the parent Agent Runtime.- See Also:
-
getName
- See Also:
-
getAgentRuntimeVersion
- See Also:
-
getDescription
- See Also:
-
getTags
A map of tag keys and values.- See Also:
-
builder
- Returns:
- a
CfnRuntimeEndpointProps.Builder
ofCfnRuntimeEndpointProps
-