Interface CfnLayerPropsMixin.IVolumeConfigurationProperty
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.OpsWorks
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnLayerPropsMixin.IVolumeConfigurationProperty
Syntax (vb)
Public Interface 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.CfnPropertyMixins.AWS.OpsWorks;
var volumeConfigurationProperty = new VolumeConfigurationProperty {
Encrypted = false,
Iops = 123,
MountPoint = "mountPoint",
NumberOfDisks = 123,
RaidLevel = 123,
Size = 123,
VolumeType = "volumeType"
};
Synopsis
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 . |
Properties
Encrypted
Specifies whether an Amazon EBS volume is encrypted.
object? Encrypted { get; }
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.
double? Iops { get; }
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.
string? MountPoint { get; }
Property Value
Remarks
NumberOfDisks
The number of disks in the volume.
double? NumberOfDisks { get; }
Property Value
Remarks
RaidLevel
Size
The volume size.
double? Size { get; }
Property Value
Remarks
VolumeType
The volume type. For more information, see Amazon EBS Volume Types .
string? VolumeType { get; }