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

.NET
Go
Java
Python
TypeScript