Show / Hide Table of Contents

Class CfnLayerPropsMixin.VolumeConfigurationProperty

Inheritance
object
CfnLayerPropsMixin.VolumeConfigurationProperty
Implements
CfnLayerPropsMixin.IVolumeConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-volumeconfiguration.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-volumeconfiguration.html

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

object

Remarks

For more information, see Amazon EBS Encryption .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-volumeconfiguration.html#cfn-opsworks-layer-volumeconfiguration-encrypted

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

double?

Remarks

For PIOPS volumes, the IOPS per disk.

If you specify io1 for the volume type, you must specify this property.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-volumeconfiguration.html#cfn-opsworks-layer-volumeconfiguration-iops

MountPoint

The volume mount point.

public string? MountPoint { get; set; }
Property Value

string

Remarks

For example "/dev/sdh".

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-volumeconfiguration.html#cfn-opsworks-layer-volumeconfiguration-mountpoint

NumberOfDisks

The number of disks in the volume.

public double? NumberOfDisks { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-volumeconfiguration.html#cfn-opsworks-layer-volumeconfiguration-numberofdisks

RaidLevel

The volume RAID level .

public double? RaidLevel { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-volumeconfiguration.html#cfn-opsworks-layer-volumeconfiguration-raidlevel

Size

The volume size.

public double? Size { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-volumeconfiguration.html#cfn-opsworks-layer-volumeconfiguration-size

VolumeType

The volume type. For more information, see Amazon EBS Volume Types .

public string? VolumeType { get; set; }
Property Value

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-volumeconfiguration.html#cfn-opsworks-layer-volumeconfiguration-volumetype

    Implements

    CfnLayerPropsMixin.IVolumeConfigurationProperty
    Back to top Generated by DocFX