interface VolumeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnCapacityProvider.VolumeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnCapacityProvider_VolumeConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnCapacityProvider.VolumeConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnCapacityProvider.VolumeConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnCapacityProvider » VolumeConfigurationProperty |
Configuration for a persistent volume attached to a capacity provider session.
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 volumeConfigurationProperty: bedrockagentcore.CfnCapacityProvider.VolumeConfigurationProperty = {
ebsConfiguration: {
name: 'name',
sizeGiB: 123,
// the properties below are optional
encrypted: false,
iops: 123,
kmsKeyId: 'kmsKeyId',
snapshotId: 'snapshotId',
throughput: 123,
volumeType: 'volumeType',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| ebs | IResolvable | Ebs | Configuration for an EBS-backed persistent volume. |
ebsConfiguration
Type:
IResolvable | Ebs
Configuration for an EBS-backed persistent volume.

.NET
Go
Java
Python
TypeScript