Interface CfnCodeInterpreterCustomProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCodeInterpreterCustomProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-10T13:39:59.636Z")
@Stability(Stable)
public interface CfnCodeInterpreterCustomProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnCodeInterpreterCustom.
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.*;
CfnCodeInterpreterCustomProps cfnCodeInterpreterCustomProps = CfnCodeInterpreterCustomProps.builder()
.name("name")
.networkConfiguration(CodeInterpreterNetworkConfigurationProperty.builder()
.networkMode("networkMode")
// the properties below are optional
.vpcConfig(VpcConfigProperty.builder()
.securityGroups(List.of("securityGroups"))
.subnets(List.of("subnets"))
.build())
.build())
// the properties below are optional
.description("description")
.executionRoleArn("executionRoleArn")
.tags(Map.of(
"tagsKey", "tags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCodeInterpreterCustomPropsstatic final classAn implementation forCfnCodeInterpreterCustomProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe code interpreter description.default StringThe Amazon Resource Name (ARN) of the execution role.getName()The name of the code interpreter.The network configuration for a code interpreter.getTags()The tags for the code interpreter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the code interpreter.- See Also:
-
getNetworkConfiguration
The network configuration for a code interpreter.This structure defines how the code interpreter connects to the network.
Returns union: either
IResolvableorCfnCodeInterpreterCustom.CodeInterpreterNetworkConfigurationProperty- See Also:
-
getDescription
The code interpreter description.- See Also:
-
getExecutionRoleArn
The Amazon Resource Name (ARN) of the execution role.- See Also:
-
getTags
The tags for the code interpreter.- See Also:
-
builder
-