#[non_exhaustive]pub struct UpdateStandardsControlInput {
pub standards_control_arn: Option<String>,
pub control_status: Option<ControlStatus>,
pub disabled_reason: Option<String>,
}
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.standards_control_arn: Option<String>
The ARN of the security standard control to enable or disable.
control_status: Option<ControlStatus>
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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateStandardsControl, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateStandardsControl, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateStandardsControl
>
Creates a new builder-style object to manufacture UpdateStandardsControlInput
The ARN of the security standard control to enable or disable.
The updated status of the security standard control.
A description of the reason why you are disabling a security standard control. If you are disabling a control, then this is required.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for UpdateStandardsControlInput
impl Send for UpdateStandardsControlInput
impl Sync for UpdateStandardsControlInput
impl Unpin for UpdateStandardsControlInput
impl UnwindSafe for UpdateStandardsControlInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more