interface PersistentVolumeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Deadline.CfnFleet.PersistentVolumeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdeadline#CfnFleet_PersistentVolumeConfigurationProperty |
Java | software.amazon.awscdk.services.deadline.CfnFleet.PersistentVolumeConfigurationProperty |
Python | aws_cdk.aws_deadline.CfnFleet.PersistentVolumeConfigurationProperty |
TypeScript | aws-cdk-lib » aws_deadline » CfnFleet » PersistentVolumeConfigurationProperty |
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-lib';
const persistentVolumeConfigurationProperty: deadline.CfnFleet.PersistentVolumeConfigurationProperty = {
mountPath: 'mountPath',
// the properties below are optional
iops: 123,
lastUsedTtlHours: 123,
sizeGiB: 123,
throughputMiB: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| mount | string | |
| iops? | number | |
| last | number | |
| size | number | |
| throughput | number |
mountPath
Type:
string
iops?
Type:
number
(optional, default: 3000)
lastUsedTtlHours?
Type:
number
(optional, default: 168)
sizeGiB?
Type:
number
(optional, default: 250)
throughputMiB?
Type:
number
(optional, default: 125)

.NET
Go
Java
Python
TypeScript