pub struct UpdateStandardsControlRequest {
pub control_status: Option<String>,
pub disabled_reason: Option<String>,
pub standards_control_arn: String,
}
Fields§
§control_status: Option<String>
The updated status of the security standard control.
disabled_reason: Option<String>
A description of the reason why you are disabling a security standard control. If you are disabling a control, then this is required.
standards_control_arn: String
The ARN of the security standard control to enable or disable.
Trait Implementations§
Source§impl Clone for UpdateStandardsControlRequest
impl Clone for UpdateStandardsControlRequest
Source§fn clone(&self) -> UpdateStandardsControlRequest
fn clone(&self) -> UpdateStandardsControlRequest
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 Default for UpdateStandardsControlRequest
impl Default for UpdateStandardsControlRequest
Source§fn default() -> UpdateStandardsControlRequest
fn default() -> UpdateStandardsControlRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateStandardsControlRequest
impl PartialEq for UpdateStandardsControlRequest
Source§fn eq(&self, other: &UpdateStandardsControlRequest) -> bool
fn eq(&self, other: &UpdateStandardsControlRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateStandardsControlRequest
Auto Trait Implementations§
impl Freeze for UpdateStandardsControlRequest
impl RefUnwindSafe for UpdateStandardsControlRequest
impl Send for UpdateStandardsControlRequest
impl Sync for UpdateStandardsControlRequest
impl Unpin for UpdateStandardsControlRequest
impl UnwindSafe for UpdateStandardsControlRequest
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