interface VolumeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnCapacityProviderPropsMixin.VolumeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnCapacityProviderPropsMixin_VolumeConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnCapacityProviderPropsMixin.VolumeConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnCapacityProviderPropsMixin.VolumeConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnCapacityProviderPropsMixin » 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/cfn-property-mixins';
const volumeConfigurationProperty: bedrockagentcore.CfnCapacityProviderPropsMixin.VolumeConfigurationProperty = {
ebsConfiguration: {
encrypted: false,
iops: 123,
kmsKeyId: 'kmsKeyId',
name: 'name',
sizeGiB: 123,
snapshotId: 'snapshotId',
throughput: 123,
volumeType: 'volumeType',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| ebs | IResolvable | Ebs | Configuration for an EBS-backed persistent volume. |
ebsConfiguration?
Type:
IResolvable | Ebs
(optional)
Configuration for an EBS-backed persistent volume.

.NET
Go
Java
Python
TypeScript