Volume

public struct Volume : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Information about the volume attachments.

    Declaration

    Swift

    public let attachments: [VolumeAttachment]?
  • The Availability Zone for the volume.

    Declaration

    Swift

    public let availabilityZone: String?
  • The time stamp when volume creation was initiated.

    Declaration

    Swift

    public let createTime: TimeStamp?
  • Indicates whether the volume is encrypted.

    Declaration

    Swift

    public let encrypted: Bool?
  • Indicates whether the volume was created using fast snapshot restore.

    Declaration

    Swift

    public let fastRestored: Bool?
  • The number of I/O operations per second (IOPS) that the volume supports. For Provisioned IOPS SSD volumes, this represents the number of IOPS that are provisioned for the volume. For General Purpose SSD volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting. For more information, see Amazon EBS volume types in the Amazon Elastic Compute Cloud User Guide. Constraints: Range is 100-16,000 IOPS for gp2 volumes and 100 to 64,000 IOPS for io1 and io2 volumes, in most Regions. The maximum IOPS for io1 and io2 of 64,000 is guaranteed only on Nitro-based instances. Other instance families guarantee performance up to 32,000 IOPS. Condition: This parameter is required for requests to create io1 and io2 volumes; it is not used in requests to create gp2, st1, sc1, or standard volumes.

    Declaration

    Swift

    public let iops: Int?
  • The Amazon Resource Name (ARN) of the AWS Key Management Service (AWS KMS) customer master key (CMK) that was used to protect the volume encryption key for the volume.

    Declaration

    Swift

    public let kmsKeyId: String?
  • Indicates whether Amazon EBS Multi-Attach is enabled.

    Declaration

    Swift

    public let multiAttachEnabled: Bool?
  • The Amazon Resource Name (ARN) of the Outpost.

    Declaration

    Swift

    public let outpostArn: String?
  • The size of the volume, in GiBs.

    Declaration

    Swift

    public let size: Int?
  • The snapshot from which the volume was created, if applicable.

    Declaration

    Swift

    public let snapshotId: String?
  • The volume state.

    Declaration

    Swift

    public let state: VolumeState?
  • Any tags assigned to the volume.

    Declaration

    Swift

    public let tags: [Tag]?
  • The ID of the volume.

    Declaration

    Swift

    public let volumeId: String?
  • The volume type. This can be gp2 for General Purpose SSD, io1 or io2 for Provisioned IOPS SSD, st1 for Throughput Optimized HDD, sc1 for Cold HDD, or standard for Magnetic volumes.

    Declaration

    Swift

    public let volumeType: VolumeType?
  • Undocumented

    Declaration

    Swift

    public init(attachments: [VolumeAttachment]? = nil, availabilityZone: String? = nil, createTime: TimeStamp? = nil, encrypted: Bool? = nil, fastRestored: Bool? = nil, iops: Int? = nil, kmsKeyId: String? = nil, multiAttachEnabled: Bool? = nil, outpostArn: String? = nil, size: Int? = nil, snapshotId: String? = nil, state: VolumeState? = nil, tags: [Tag]? = nil, volumeId: String? = nil, volumeType: VolumeType? = nil)