Struct aws_sdk_ec2::operation::describe_volumes_modifications::DescribeVolumesModificationsInput
source · #[non_exhaustive]pub struct DescribeVolumesModificationsInput {
pub dry_run: Option<bool>,
pub volume_ids: Option<Vec<String>>,
pub filters: Option<Vec<Filter>>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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
.
volume_ids: Option<Vec<String>>
The IDs of the volumes.
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.
next_token: Option<String>
The token returned by a previous paginated request. Pagination continues from the end of the items returned by the previous request.
max_results: Option<i32>
The maximum number of results (up to a limit of 500) to be returned in a paginated request. For more information, see Pagination.
Implementations§
source§impl DescribeVolumesModificationsInput
impl DescribeVolumesModificationsInput
sourcepub fn dry_run(&self) -> Option<bool>
pub fn dry_run(&self) -> 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
.
sourcepub fn volume_ids(&self) -> Option<&[String]>
pub fn volume_ids(&self) -> Option<&[String]>
The IDs of the volumes.
sourcepub fn filters(&self) -> Option<&[Filter]>
pub fn filters(&self) -> Option<&[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.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token returned by a previous paginated request. Pagination continues from the end of the items returned by the previous request.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results (up to a limit of 500) to be returned in a paginated request. For more information, see Pagination.
source§impl DescribeVolumesModificationsInput
impl DescribeVolumesModificationsInput
sourcepub fn builder() -> DescribeVolumesModificationsInputBuilder
pub fn builder() -> DescribeVolumesModificationsInputBuilder
Creates a new builder-style object to manufacture DescribeVolumesModificationsInput
.
Trait Implementations§
source§impl Clone for DescribeVolumesModificationsInput
impl Clone for DescribeVolumesModificationsInput
source§fn clone(&self) -> DescribeVolumesModificationsInput
fn clone(&self) -> DescribeVolumesModificationsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<DescribeVolumesModificationsInput> for DescribeVolumesModificationsInput
impl PartialEq<DescribeVolumesModificationsInput> for DescribeVolumesModificationsInput
source§fn eq(&self, other: &DescribeVolumesModificationsInput) -> bool
fn eq(&self, other: &DescribeVolumesModificationsInput) -> bool
self
and other
values to be equal, and is used
by ==
.