Interface CfnCodeInterpreterCustomMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCodeInterpreterCustomMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.130.0 (build 048a5ee)",
date="2026-05-21T17:27:49.807Z")
@Stability(Stable)
public interface CfnCodeInterpreterCustomMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnCodeInterpreterCustomPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.*;
CfnCodeInterpreterCustomMixinProps cfnCodeInterpreterCustomMixinProps = CfnCodeInterpreterCustomMixinProps.builder()
.certificates(List.of(CertificateProperty.builder()
.certificateLocation(CertificateLocationProperty.builder()
.secretArn("secretArn")
.build())
.build()))
.description("description")
.executionRoleArn("executionRoleArn")
.name("name")
.networkConfiguration(CodeInterpreterNetworkConfigurationProperty.builder()
.networkMode("networkMode")
.vpcConfig(VpcConfigProperty.builder()
.securityGroups(List.of("securityGroups"))
.subnets(List.of("subnets"))
.build())
.build())
.tags(Map.of(
"tagsKey", "tags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCodeInterpreterCustomMixinPropsstatic final classAn implementation forCfnCodeInterpreterCustomMixinProps -
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.default StringgetName()The name of the code interpreter.default ObjectThe 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
-
getCertificates
List of root CA certificates.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnCodeInterpreterCustomPropsMixin.CertificateProperty>- See Also:
-
getDescription
The code interpreter description.- See Also:
-
getExecutionRoleArn
The Amazon Resource Name (ARN) of the execution role.- See Also:
-
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
IResolvableorCfnCodeInterpreterCustomPropsMixin.CodeInterpreterNetworkConfigurationProperty- See Also:
-
getTags
The tags for the code interpreter.- See Also:
-
builder
-