interface Ec2EbsVolumeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Deadline.Mixins.CfnFleetPropsMixin.Ec2EbsVolumeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdeadline/mixins#CfnFleetPropsMixin_Ec2EbsVolumeProperty |
Java | software.amazon.awscdk.mixins.preview.services.deadline.mixins.CfnFleetPropsMixin.Ec2EbsVolumeProperty |
Python | aws_cdk.mixins_preview.aws_deadline.mixins.CfnFleetPropsMixin.Ec2EbsVolumeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_deadline » mixins » CfnFleetPropsMixin » Ec2EbsVolumeProperty |
Specifies the EBS volume.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as deadline_mixins } from '@aws-cdk/mixins-preview/aws-deadline';
const ec2EbsVolumeProperty: deadline_mixins.CfnFleetPropsMixin.Ec2EbsVolumeProperty = {
iops: 123,
sizeGiB: 123,
throughputMiB: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| iops? | number | The IOPS per volume. |
| size | number | The EBS volume size in GiB. |
| throughput | number | The throughput per volume in MiB. |
iops?
Type:
number
(optional, default: 3000)
The IOPS per volume.
sizeGiB?
Type:
number
(optional, default: 250)
The EBS volume size in GiB.
throughputMiB?
Type:
number
(optional, default: 125)
The throughput per volume in MiB.

.NET
Go
Java
Python
TypeScript