pub struct ModifyVolumeAttributeRequest {
pub auto_enable_io: Option<AttributeBooleanValue>,
pub dry_run: Option<bool>,
pub volume_id: String,
}
Fields§
§auto_enable_io: Option<AttributeBooleanValue>
Indicates whether the volume should be auto-enabled for I/O operations.
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_id: String
The ID of the volume.
Trait Implementations§
Source§impl Clone for ModifyVolumeAttributeRequest
impl Clone for ModifyVolumeAttributeRequest
Source§fn clone(&self) -> ModifyVolumeAttributeRequest
fn clone(&self) -> ModifyVolumeAttributeRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ModifyVolumeAttributeRequest
impl Debug for ModifyVolumeAttributeRequest
Source§impl Default for ModifyVolumeAttributeRequest
impl Default for ModifyVolumeAttributeRequest
Source§fn default() -> ModifyVolumeAttributeRequest
fn default() -> ModifyVolumeAttributeRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ModifyVolumeAttributeRequest
impl PartialEq for ModifyVolumeAttributeRequest
Source§fn eq(&self, other: &ModifyVolumeAttributeRequest) -> bool
fn eq(&self, other: &ModifyVolumeAttributeRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyVolumeAttributeRequest
Auto Trait Implementations§
impl Freeze for ModifyVolumeAttributeRequest
impl RefUnwindSafe for ModifyVolumeAttributeRequest
impl Send for ModifyVolumeAttributeRequest
impl Sync for ModifyVolumeAttributeRequest
impl Unpin for ModifyVolumeAttributeRequest
impl UnwindSafe for ModifyVolumeAttributeRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more