interface EphemeralBlockDeviceMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnCapacityProvider.EphemeralBlockDeviceMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnCapacityProvider_EphemeralBlockDeviceMappingProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnCapacityProvider.EphemeralBlockDeviceMappingProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnCapacityProvider.EphemeralBlockDeviceMappingProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnCapacityProvider » EphemeralBlockDeviceMappingProperty |
Describes an ephemeral block device mapping.
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 ephemeralBlockDeviceMappingProperty: bedrockagentcore.CfnCapacityProvider.EphemeralBlockDeviceMappingProperty = {
deviceName: 'deviceName',
ebs: {
ebsCardIndex: 123,
encrypted: false,
iops: 123,
kmsKeyId: 'kmsKeyId',
snapshotId: 'snapshotId',
throughput: 123,
volumeInitializationRate: 123,
volumeSize: 123,
volumeType: 'volumeType',
},
virtualName: 'virtualName',
};
Properties
| Name | Type | Description |
|---|---|---|
| device | string | The device name (for example, /dev/sdh or xvdh). |
| ebs? | IResolvable | Ephemeral | Parameters used to automatically set up EBS volumes when the instance is launched. |
| virtual | string | The virtual device name (ephemeralN). |
deviceName?
Type:
string
(optional)
The device name (for example, /dev/sdh or xvdh).
ebs?
Type:
IResolvable | Ephemeral
(optional)
Parameters used to automatically set up EBS volumes when the instance is launched.
virtualName?
Type:
string
(optional)
The virtual device name (ephemeralN).

.NET
Go
Java
Python
TypeScript