interface CapacityProviderVolumeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnRuntime.CapacityProviderVolumeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnRuntime_CapacityProviderVolumeConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnRuntime.CapacityProviderVolumeConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnRuntime.CapacityProviderVolumeConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnRuntime » CapacityProviderVolumeConfigurationProperty |
Configuration for a CapacityProvider-managed volume to mount into the agent runtime.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const capacityProviderVolumeConfigurationProperty: bedrockagentcore.CfnRuntime.CapacityProviderVolumeConfigurationProperty = {
mountPath: 'mountPath',
volumeName: 'volumeName',
};
Properties
| Name | Type | Description |
|---|---|---|
| mount | string | Mount path for filesystem configuration. |
| volume | string | Name of the capacity provider volume. |
mountPath
Type:
string
Mount path for filesystem configuration.
volumeName
Type:
string
Name of the capacity provider volume.

.NET
Go
Java
Python
TypeScript