interface EbsVolumeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnCapacityProvider.EbsVolumeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnCapacityProvider_EbsVolumeConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnCapacityProvider.EbsVolumeConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnCapacityProvider.EbsVolumeConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnCapacityProvider » EbsVolumeConfigurationProperty |
Configuration for an EBS-backed persistent volume.
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 ebsVolumeConfigurationProperty: bedrockagentcore.CfnCapacityProvider.EbsVolumeConfigurationProperty = {
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 |
|---|---|---|
| name | string | The logical name of the volume, used to reference it when mounting. |
| size | number | The size of the volume in GiB. |
| encrypted? | boolean | IResolvable | Whether to encrypt the volume. |
| iops? | number | The number of IOPS to provision. |
| kms | string | Identifier of the KMS key to use for encryption. |
| snapshot | string | Optional EBS snapshot ID to initialize the volume from. |
| throughput? | number | The throughput in MiB/s. |
| volume | string | The EBS volume type. |
name
Type:
string
The logical name of the volume, used to reference it when mounting.
sizeGiB
Type:
number
The size of the volume in GiB.
encrypted?
Type:
boolean | IResolvable
(optional)
Whether to encrypt the volume.
Defaults to true.
iops?
Type:
number
(optional)
The number of IOPS to provision.
Only valid for gp3, io1, and io2 volumes.
kmsKeyId?
Type:
string
(optional)
Identifier of the KMS key to use for encryption.
snapshotId?
Type:
string
(optional)
Optional EBS snapshot ID to initialize the volume from.
throughput?
Type:
number
(optional)
The throughput in MiB/s.
Only valid for gp3 volumes.
volumeType?
Type:
string
(optional)
The EBS volume type.
Defaults to gp3 if not specified.

.NET
Go
Java
Python
TypeScript