Show / Hide Table of Contents

Class CfnHarness.HarnessEnvironmentProviderProperty

Inheritance
object
CfnHarness.HarnessEnvironmentProviderProperty
Implements
CfnHarness.IHarnessEnvironmentProviderProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.BedrockAgentCore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnHarness.HarnessEnvironmentProviderProperty : CfnHarness.IHarnessEnvironmentProviderProperty
Syntax (vb)
Public Class CfnHarness.HarnessEnvironmentProviderProperty Implements CfnHarness.IHarnessEnvironmentProviderProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-harness-harnessenvironmentprovider.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.AWS.BedrockAgentCore;

             var harnessEnvironmentProviderProperty = new HarnessEnvironmentProviderProperty {
                 AgentCoreRuntimeEnvironment = new HarnessAgentCoreRuntimeEnvironmentProperty {
                     AgentRuntimeArn = "agentRuntimeArn",
                     AgentRuntimeId = "agentRuntimeId",
                     AgentRuntimeName = "agentRuntimeName",
                     FilesystemConfigurations = new [] { new FilesystemConfigurationProperty {
                         SessionStorage = new SessionStorageConfigurationProperty {
                             MountPath = "mountPath"
                         }
                     } },
                     LifecycleConfiguration = new LifecycleConfigurationProperty {
                         IdleRuntimeSessionTimeout = 123,
                         MaxLifetime = 123
                     },
                     NetworkConfiguration = new NetworkConfigurationProperty {
                         NetworkMode = "networkMode",

                         // the properties below are optional
                         NetworkModeConfig = new VpcConfigProperty {
                             SecurityGroups = new [] { "securityGroups" },
                             Subnets = new [] { "subnets" }
                         }
                     }
                 }
             };

Synopsis

Constructors

HarnessEnvironmentProviderProperty()

Properties

AgentCoreRuntimeEnvironment

Constructors

HarnessEnvironmentProviderProperty()

public HarnessEnvironmentProviderProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-harness-harnessenvironmentprovider.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.AWS.BedrockAgentCore;

             var harnessEnvironmentProviderProperty = new HarnessEnvironmentProviderProperty {
                 AgentCoreRuntimeEnvironment = new HarnessAgentCoreRuntimeEnvironmentProperty {
                     AgentRuntimeArn = "agentRuntimeArn",
                     AgentRuntimeId = "agentRuntimeId",
                     AgentRuntimeName = "agentRuntimeName",
                     FilesystemConfigurations = new [] { new FilesystemConfigurationProperty {
                         SessionStorage = new SessionStorageConfigurationProperty {
                             MountPath = "mountPath"
                         }
                     } },
                     LifecycleConfiguration = new LifecycleConfigurationProperty {
                         IdleRuntimeSessionTimeout = 123,
                         MaxLifetime = 123
                     },
                     NetworkConfiguration = new NetworkConfigurationProperty {
                         NetworkMode = "networkMode",

                         // the properties below are optional
                         NetworkModeConfig = new VpcConfigProperty {
                             SecurityGroups = new [] { "securityGroups" },
                             Subnets = new [] { "subnets" }
                         }
                     }
                 }
             };

Properties

AgentCoreRuntimeEnvironment

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-harness-harnessenvironmentprovider.html#cfn-bedrockagentcore-harness-harnessenvironmentprovider-agentcoreruntimeenvironment

Type union: either IResolvable or CfnHarness.IHarnessAgentCoreRuntimeEnvironmentProperty

Implements

CfnHarness.IHarnessEnvironmentProviderProperty
Back to top Generated by DocFX