Interface CfnCodeInterpreterCustomProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCodeInterpreterCustomProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.129.0 (build eaca441)",
date="2026-05-13T16:55:04.419Z")
@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
.certificates(List.of(CertificateProperty.builder()
.certificateLocation(CertificateLocationProperty.builder()
.secretArn("secretArn")
.build())
.build()))
.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 ObjectList of root CA certificates.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:
-
getCertificates
List of root CA certificates.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnCodeInterpreterCustom.CertificateProperty>- 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
-