interface Ec2EbsVolumeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Deadline.CfnFleetPropsMixin.Ec2EbsVolumeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdeadline#CfnFleetPropsMixin_Ec2EbsVolumeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.deadline.CfnFleetPropsMixin.Ec2EbsVolumeProperty |
Python | aws_cdk.cfn_property_mixins.aws_deadline.CfnFleetPropsMixin.Ec2EbsVolumeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_deadline » 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 { aws_deadline as deadline } from '@aws-cdk/cfn-property-mixins';
const ec2EbsVolumeProperty: deadline.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