Interface CfnCodeInterpreterCustomMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCodeInterpreterCustomMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:56.660Z")
@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()
.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 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
-
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
-