Show / Hide Table of Contents

Class CfnCodeInterpreterCustomMixinProps

Properties for CfnCodeInterpreterCustomPropsMixin.

Inheritance
object
CfnCodeInterpreterCustomMixinProps
Implements
ICfnCodeInterpreterCustomMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnCodeInterpreterCustomMixinProps : ICfnCodeInterpreterCustomMixinProps
Syntax (vb)
Public Class CfnCodeInterpreterCustomMixinProps Implements ICfnCodeInterpreterCustomMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins;

             var cfnCodeInterpreterCustomMixinProps = new CfnCodeInterpreterCustomMixinProps {
                 Description = "description",
                 ExecutionRoleArn = "executionRoleArn",
                 Name = "name",
                 NetworkConfiguration = new CodeInterpreterNetworkConfigurationProperty {
                     NetworkMode = "networkMode",
                     VpcConfig = new VpcConfigProperty {
                         SecurityGroups = new [] { "securityGroups" },
                         Subnets = new [] { "subnets" }
                     }
                 },
                 Tags = new Dictionary<string, string> {
                     { "tagsKey", "tags" }
                 }
             };

Synopsis

Constructors

CfnCodeInterpreterCustomMixinProps()

Properties for CfnCodeInterpreterCustomPropsMixin.

Properties

Description

The code interpreter description.

ExecutionRoleArn

The Amazon Resource Name (ARN) of the execution role.

Name

The name of the code interpreter.

NetworkConfiguration

The network configuration for a code interpreter.

Tags

The tags for the code interpreter.

Constructors

CfnCodeInterpreterCustomMixinProps()

Properties for CfnCodeInterpreterCustomPropsMixin.

public CfnCodeInterpreterCustomMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins;

             var cfnCodeInterpreterCustomMixinProps = new CfnCodeInterpreterCustomMixinProps {
                 Description = "description",
                 ExecutionRoleArn = "executionRoleArn",
                 Name = "name",
                 NetworkConfiguration = new CodeInterpreterNetworkConfigurationProperty {
                     NetworkMode = "networkMode",
                     VpcConfig = new VpcConfigProperty {
                         SecurityGroups = new [] { "securityGroups" },
                         Subnets = new [] { "subnets" }
                     }
                 },
                 Tags = new Dictionary<string, string> {
                     { "tagsKey", "tags" }
                 }
             };

Properties

Description

The code interpreter description.

public string? Description { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html#cfn-bedrockagentcore-codeinterpretercustom-description

ExecutionRoleArn

The Amazon Resource Name (ARN) of the execution role.

public string? ExecutionRoleArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html#cfn-bedrockagentcore-codeinterpretercustom-executionrolearn

Name

The name of the code interpreter.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html#cfn-bedrockagentcore-codeinterpretercustom-name

NetworkConfiguration

The network configuration for a code interpreter.

public object? NetworkConfiguration { get; set; }
Property Value

object

Remarks

This structure defines how the code interpreter connects to the network.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html#cfn-bedrockagentcore-codeinterpretercustom-networkconfiguration

Type union: either IResolvable or CfnCodeInterpreterCustomPropsMixin.ICodeInterpreterNetworkConfigurationProperty

Tags

The tags for the code interpreter.

public IDictionary<string, string>? Tags { get; set; }
Property Value

IDictionary<string, string>

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html#cfn-bedrockagentcore-codeinterpretercustom-tags

Implements

ICfnCodeInterpreterCustomMixinProps
Back to top Generated by DocFX