Class CfnLayerPropsMixin.VolumeConfigurationProperty
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.OpsWorks.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnLayerPropsMixin.VolumeConfigurationProperty : CfnLayerPropsMixin.IVolumeConfigurationProperty
Syntax (vb)
Public Class CfnLayerPropsMixin.VolumeConfigurationProperty Implements CfnLayerPropsMixin.IVolumeConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.OpsWorks.Mixins;
var volumeConfigurationProperty = new VolumeConfigurationProperty {
Encrypted = false,
Iops = 123,
MountPoint = "mountPoint",
NumberOfDisks = 123,
RaidLevel = 123,
Size = 123,
VolumeType = "volumeType"
};
Synopsis
Constructors
| VolumeConfigurationProperty() |
Properties
| Encrypted | Specifies whether an Amazon EBS volume is encrypted. |
| Iops | The number of I/O operations per second (IOPS) to provision for the volume. |
| MountPoint | The volume mount point. |
| NumberOfDisks | The number of disks in the volume. |
| RaidLevel | The volume RAID level . |
| Size | The volume size. |
| VolumeType | The volume type. For more information, see Amazon EBS Volume Types . |
Constructors
VolumeConfigurationProperty()
public VolumeConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.OpsWorks.Mixins;
var volumeConfigurationProperty = new VolumeConfigurationProperty {
Encrypted = false,
Iops = 123,
MountPoint = "mountPoint",
NumberOfDisks = 123,
RaidLevel = 123,
Size = 123,
VolumeType = "volumeType"
};
Properties
Encrypted
Specifies whether an Amazon EBS volume is encrypted.
public object? Encrypted { get; set; }
Property Value
Remarks
For more information, see Amazon EBS Encryption .
Type union: either bool or IResolvable
Iops
The number of I/O operations per second (IOPS) to provision for the volume.
public double? Iops { get; set; }
Property Value
Remarks
For PIOPS volumes, the IOPS per disk.
If you specify io1 for the volume type, you must specify this property.
MountPoint
The volume mount point.
public string? MountPoint { get; set; }
Property Value
Remarks
NumberOfDisks
The number of disks in the volume.
public double? NumberOfDisks { get; set; }
Property Value
Remarks
RaidLevel
Size
The volume size.
public double? Size { get; set; }
Property Value
Remarks
VolumeType
The volume type. For more information, see Amazon EBS Volume Types .
public string? VolumeType { get; set; }