interface CfnCodeInterpreterCustomMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins.CfnCodeInterpreterCustomMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrockagentcore/mixins#CfnCodeInterpreterCustomMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.bedrockagentcore.mixins.CfnCodeInterpreterCustomMixinProps |
Python | aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnCodeInterpreterCustomMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_bedrockagentcore » mixins » CfnCodeInterpreterCustomMixinProps |
Properties for CfnCodeInterpreterCustomPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrockagentcore_mixins } from '@aws-cdk/mixins-preview/aws-bedrockagentcore';
const cfnCodeInterpreterCustomMixinProps: bedrockagentcore_mixins.CfnCodeInterpreterCustomMixinProps = {
description: 'description',
executionRoleArn: 'executionRoleArn',
name: 'name',
networkConfiguration: {
networkMode: 'networkMode',
vpcConfig: {
securityGroups: ['securityGroups'],
subnets: ['subnets'],
},
},
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The code interpreter description. |
| execution | string | The Amazon Resource Name (ARN) of the execution role. |
| name? | string | The name of the code interpreter. |
| network | IResolvable | Code | The network configuration for a code interpreter. |
| tags? | { [string]: string } | The tags for the code interpreter. |
description?
Type:
string
(optional)
The code interpreter description.
executionRoleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the execution role.
name?
Type:
string
(optional)
The name of the code interpreter.
networkConfiguration?
Type:
IResolvable | Code
(optional)
The network configuration for a code interpreter.
This structure defines how the code interpreter connects to the network.
tags?
Type:
{ [string]: string }
(optional)
The tags for the code interpreter.

.NET
Go
Java
Python
TypeScript