CodeInterpreterCustomAttributes
- class aws_cdk.aws_bedrock_agentcore_alpha.CodeInterpreterCustomAttributes(*, code_interpreter_arn, role_arn, created_at=None, last_updated_at=None, security_groups=None, status=None)
Bases:
object(deprecated) Attributes for specifying an imported Code Interpreter Custom.
- Parameters:
code_interpreter_arn (
str) – (deprecated) The ARN of the agent.role_arn (
str) – (deprecated) The ARN of the IAM role associated to the code interpreter.created_at (
Optional[str]) – (deprecated) The created timestamp of the code interpreter. Default: undefined - No created timestamp is providedlast_updated_at (
Optional[str]) – (deprecated) When this code interpreter was last updated. Default: undefined - No last updated timestamp is providedsecurity_groups (
Optional[Sequence[ISecurityGroup]]) – (deprecated) The security groups for this code interpreter, if in a VPC. Default: - By default, the code interpreter is not in a VPC.status (
Optional[str]) – (deprecated) The status of the code interpreter. Default: undefined - No status is provided
- Deprecated:
Use the equivalent construct from
aws-cdk-lib/aws-bedrockagentcoreinstead.- Stability:
deprecated
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_bedrock_agentcore_alpha as bedrock_agentcore_alpha from aws_cdk import aws_ec2 as ec2 # security_group: ec2.SecurityGroup code_interpreter_custom_attributes = bedrock_agentcore_alpha.CodeInterpreterCustomAttributes( code_interpreter_arn="codeInterpreterArn", role_arn="roleArn", # the properties below are optional created_at="createdAt", last_updated_at="lastUpdatedAt", security_groups=[security_group], status="status" )
Attributes
- code_interpreter_arn
(deprecated) The ARN of the agent.
- Stability:
deprecated
- Attribute:
true
- created_at
(deprecated) The created timestamp of the code interpreter.
- Default:
undefined - No created timestamp is provided
- Stability:
deprecated
- last_updated_at
(deprecated) When this code interpreter was last updated.
- Default:
undefined - No last updated timestamp is provided
- Stability:
deprecated
- role_arn
(deprecated) The ARN of the IAM role associated to the code interpreter.
- Stability:
deprecated
- Attribute:
true
- security_groups
(deprecated) The security groups for this code interpreter, if in a VPC.
- Default:
By default, the code interpreter is not in a VPC.
- Stability:
deprecated
- status
(deprecated) The status of the code interpreter.
- Default:
undefined - No status is provided
- Stability:
deprecated