CfnCodeInterpreterCustomMixinProps
- class aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnCodeInterpreterCustomMixinProps(*, description=None, execution_role_arn=None, name=None, network_configuration=None, tags=None)
Bases:
objectProperties for CfnCodeInterpreterCustomPropsMixin.
- Parameters:
description (
Optional[str]) – The code interpreter description.execution_role_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the execution role.name (
Optional[str]) – The name of the code interpreter.network_configuration (
Union[IResolvable,CodeInterpreterNetworkConfigurationProperty,Dict[str,Any],None]) – The network configuration for a code interpreter. This structure defines how the code interpreter connects to the network.tags (
Optional[Mapping[str,str]]) – The tags for the code interpreter.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_bedrockagentcore import mixins as bedrockagentcore_mixins cfn_code_interpreter_custom_mixin_props = bedrockagentcore_mixins.CfnCodeInterpreterCustomMixinProps( description="description", execution_role_arn="executionRoleArn", name="name", network_configuration=bedrockagentcore_mixins.CfnCodeInterpreterCustomPropsMixin.CodeInterpreterNetworkConfigurationProperty( network_mode="networkMode", vpc_config=bedrockagentcore_mixins.CfnCodeInterpreterCustomPropsMixin.VpcConfigProperty( security_groups=["securityGroups"], subnets=["subnets"] ) ), tags={ "tags_key": "tags" } )
Attributes
- description
The code interpreter description.
- execution_role_arn
The Amazon Resource Name (ARN) of the execution role.
- name
The name of the code interpreter.
- network_configuration
The network configuration for a code interpreter.
This structure defines how the code interpreter connects to the network.
- tags
The tags for the code interpreter.