interface CapacityProviderVolumeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnRuntimePropsMixin.CapacityProviderVolumeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnRuntimePropsMixin_CapacityProviderVolumeConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnRuntimePropsMixin.CapacityProviderVolumeConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnRuntimePropsMixin.CapacityProviderVolumeConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnRuntimePropsMixin » 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/cfn-property-mixins';
const capacityProviderVolumeConfigurationProperty: bedrockagentcore.CfnRuntimePropsMixin.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
(optional)
Mount path for filesystem configuration.
volumeName?
Type:
string
(optional)
Name of the capacity provider volume.

.NET
Go
Java
Python
TypeScript