Interface CfnCodeInterpreterCustomProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCodeInterpreterCustomProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)",
date="2025-09-25T11:29:02.623Z")
@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") .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 class
A builder forCfnCodeInterpreterCustomProps
static final class
An implementation forCfnCodeInterpreterCustomProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the sandbox.- See Also:
-
getNetworkConfiguration
Network configuration for code interpreter.- See Also:
-
getDescription
Description of the code interpreter.- See Also:
-
getExecutionRoleArn
The ARN of the IAM role.- See Also:
-
getTags
A map of tag keys and values.- See Also:
-
builder
-