pub struct DescribeVolumesModificationsRequest {
pub dry_run: Option<bool>,
pub filters: Option<Vec<Filter>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub volume_ids: Option<Vec<String>>,
}
Fields§
§dry_run: Option<bool>
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
.
filters: Option<Vec<Filter>>
The filters.
-
modification-state
- The current modification state (modifying | optimizing | completed | failed). -
original-iops
- The original IOPS rate of the volume. -
original-size
- The original size of the volume, in GiB. -
original-volume-type
- The original volume type of the volume (standard | io1 | io2 | gp2 | sc1 | st1). -
originalMultiAttachEnabled
- Indicates whether Multi-Attach support was enabled (true | false). -
start-time
- The modification start time. -
target-iops
- The target IOPS rate of the volume. -
target-size
- The target size of the volume, in GiB. -
target-volume-type
- The target volume type of the volume (standard | io1 | io2 | gp2 | sc1 | st1). -
targetMultiAttachEnabled
- Indicates whether Multi-Attach support is to be enabled (true | false). -
volume-id
- The ID of the volume.
max_results: Option<i64>
The maximum number of results (up to a limit of 500) to be returned in a paginated request.
next_token: Option<String>
The nextToken
value returned by a previous paginated request.
volume_ids: Option<Vec<String>>
The IDs of the volumes.
Trait Implementations§
Source§impl Clone for DescribeVolumesModificationsRequest
impl Clone for DescribeVolumesModificationsRequest
Source§fn clone(&self) -> DescribeVolumesModificationsRequest
fn clone(&self) -> DescribeVolumesModificationsRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for DescribeVolumesModificationsRequest
impl Default for DescribeVolumesModificationsRequest
Source§fn default() -> DescribeVolumesModificationsRequest
fn default() -> DescribeVolumesModificationsRequest
Source§impl PartialEq for DescribeVolumesModificationsRequest
impl PartialEq for DescribeVolumesModificationsRequest
Source§fn eq(&self, other: &DescribeVolumesModificationsRequest) -> bool
fn eq(&self, other: &DescribeVolumesModificationsRequest) -> bool
self
and other
values to be equal, and is used by ==
.