interface EbsVolumeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnCapacityProviderPropsMixin.EbsVolumeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnCapacityProviderPropsMixin_EbsVolumeConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnCapacityProviderPropsMixin.EbsVolumeConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnCapacityProviderPropsMixin.EbsVolumeConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnCapacityProviderPropsMixin » 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/cfn-property-mixins';
const ebsVolumeConfigurationProperty: bedrockagentcore.CfnCapacityProviderPropsMixin.EbsVolumeConfigurationProperty = {
encrypted: false,
iops: 123,
kmsKeyId: 'kmsKeyId',
name: 'name',
sizeGiB: 123,
snapshotId: 'snapshotId',
throughput: 123,
volumeType: 'volumeType',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| name? | string | The logical name of the volume, used to reference it when mounting. |
| size | number | The size of the volume in GiB. |
| snapshot | string | Optional EBS snapshot ID to initialize the volume from. |
| throughput? | number | The throughput in MiB/s. |
| volume | string | The EBS volume type. |
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.
name?
Type:
string
(optional)
The logical name of the volume, used to reference it when mounting.
sizeGiB?
Type:
number
(optional)
The size of the volume in GiB.
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