ModifyVolumeRequest
public struct ModifyVolumeRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
Declaration
Swift
public let dryRun: Bool?
-
The target IOPS rate of the volume. This is only valid for Provisioned IOPS SSD (io1 and io2) volumes. For moreinformation, see Provisioned IOPS SSD (io1 and io2) volumes. Default: If no IOPS value is specified, the existing value is retained.
Declaration
Swift
public let iops: Int?
-
The target size of the volume, in GiB. The target volume size must be greater than or equal to than the existing size of the volume. For information about available EBS volume sizes, see Amazon EBS Volume Types. Default: If no size is specified, the existing size is retained.
Declaration
Swift
public let size: Int?
-
The ID of the volume.
Declaration
Swift
public let volumeId: String
-
The target EBS volume type of the volume. Default: If no type is specified, the existing type is retained.
Declaration
Swift
public let volumeType: VolumeType?
-
Undocumented
Declaration
Swift
public init(dryRun: Bool? = nil, iops: Int? = nil, size: Int? = nil, volumeId: String, volumeType: VolumeType? = nil)