VolumeConfiguration

public struct VolumeConfiguration : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Specifies whether an Amazon EBS volume is encrypted. For more information, see Amazon EBS Encryption.

    Declaration

    Swift

    public let encrypted: Bool?
  • For PIOPS volumes, the IOPS per disk.

    Declaration

    Swift

    public let iops: Int?
  • The volume mount point. For example “/dev/sdh”.

    Declaration

    Swift

    public let mountPoint: String
  • The number of disks in the volume.

    Declaration

    Swift

    public let numberOfDisks: Int
  • The volume RAID level.

    Declaration

    Swift

    public let raidLevel: Int?
  • The volume size.

    Declaration

    Swift

    public let size: Int
  • The volume type. For more information, see Amazon EBS Volume Types. standard - Magnetic. Magnetic volumes must have a minimum size of 1 GiB and a maximum size of 1024 GiB. io1 - Provisioned IOPS (SSD). PIOPS volumes must have a minimum size of 4 GiB and a maximum size of 16384 GiB. gp2 - General Purpose (SSD). General purpose volumes must have a minimum size of 1 GiB and a maximum size of 16384 GiB. st1 - Throughput Optimized hard disk drive (HDD). Throughput optimized HDD volumes must have a minimum size of 500 GiB and a maximum size of 16384 GiB. sc1 - Cold HDD. Cold HDD volumes must have a minimum size of 500 GiB and a maximum size of 16384 GiB.

    Declaration

    Swift

    public let volumeType: String?
  • Undocumented

    Declaration

    Swift

    public init(encrypted: Bool? = nil, iops: Int? = nil, mountPoint: String, numberOfDisks: Int, raidLevel: Int? = nil, size: Int, volumeType: String? = nil)