interface CfnVolumeMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FSx.Mixins.CfnVolumeMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfsx/mixins#CfnVolumeMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.fsx.mixins.CfnVolumeMixinProps |
Python | aws_cdk.mixins_preview.aws_fsx.mixins.CfnVolumeMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_fsx » mixins » CfnVolumeMixinProps |
Properties for CfnVolumePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-volume.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as fsx_mixins } from '@aws-cdk/mixins-preview/aws-fsx';
const cfnVolumeMixinProps: fsx_mixins.CfnVolumeMixinProps = {
backupId: 'backupId',
name: 'name',
ontapConfiguration: {
aggregateConfiguration: {
aggregates: ['aggregates'],
constituentsPerAggregate: 123,
},
copyTagsToBackups: 'copyTagsToBackups',
junctionPath: 'junctionPath',
ontapVolumeType: 'ontapVolumeType',
securityStyle: 'securityStyle',
sizeInBytes: 'sizeInBytes',
sizeInMegabytes: 'sizeInMegabytes',
snaplockConfiguration: {
auditLogVolume: 'auditLogVolume',
autocommitPeriod: {
type: 'type',
value: 123,
},
privilegedDelete: 'privilegedDelete',
retentionPeriod: {
defaultRetention: {
type: 'type',
value: 123,
},
maximumRetention: {
type: 'type',
value: 123,
},
minimumRetention: {
type: 'type',
value: 123,
},
},
snaplockType: 'snaplockType',
volumeAppendModeEnabled: 'volumeAppendModeEnabled',
},
snapshotPolicy: 'snapshotPolicy',
storageEfficiencyEnabled: 'storageEfficiencyEnabled',
storageVirtualMachineId: 'storageVirtualMachineId',
tieringPolicy: {
coolingPeriod: 123,
name: 'name',
},
volumeStyle: 'volumeStyle',
},
openZfsConfiguration: {
copyTagsToSnapshots: false,
dataCompressionType: 'dataCompressionType',
nfsExports: [{
clientConfigurations: [{
clients: 'clients',
options: ['options'],
}],
}],
options: ['options'],
originSnapshot: {
copyStrategy: 'copyStrategy',
snapshotArn: 'snapshotArn',
},
parentVolumeId: 'parentVolumeId',
readOnly: false,
recordSizeKiB: 123,
storageCapacityQuotaGiB: 123,
storageCapacityReservationGiB: 123,
userAndGroupQuotas: [{
id: 123,
storageCapacityQuotaGiB: 123,
type: 'type',
}],
},
tags: [{
key: 'key',
value: 'value',
}],
volumeType: 'volumeType',
};
Properties
| Name | Type | Description |
|---|---|---|
| backup | string | Specifies the ID of the volume backup to use to create a new volume. |
| name? | string | The name of the volume. |
| ontap | IResolvable | Ontap | The configuration of an Amazon FSx for NetApp ONTAP volume. |
| open | IResolvable | Open | The configuration of an Amazon FSx for OpenZFS volume. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| volume | string | The type of the volume. |
backupId?
Type:
string
(optional)
Specifies the ID of the volume backup to use to create a new volume.
name?
Type:
string
(optional)
The name of the volume.
ontapConfiguration?
Type:
IResolvable | Ontap
(optional)
The configuration of an Amazon FSx for NetApp ONTAP volume.
openZfsConfiguration?
Type:
IResolvable | Open
(optional)
The configuration of an Amazon FSx for OpenZFS volume.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .
volumeType?
Type:
string
(optional)
The type of the volume.

.NET
Go
Java
Python
TypeScript