Struct aws_sdk_config::operation::start_remediation_execution::StartRemediationExecutionInput
source · #[non_exhaustive]pub struct StartRemediationExecutionInput {
pub config_rule_name: Option<String>,
pub resource_keys: Option<Vec<ResourceKey>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.config_rule_name: Option<String>The list of names of Config rules that you want to run remediation execution for.
resource_keys: Option<Vec<ResourceKey>>A list of resource keys to be processed with the current request. Each element in the list consists of the resource type and resource ID.
Implementations§
source§impl StartRemediationExecutionInput
impl StartRemediationExecutionInput
sourcepub fn config_rule_name(&self) -> Option<&str>
pub fn config_rule_name(&self) -> Option<&str>
The list of names of Config rules that you want to run remediation execution for.
sourcepub fn resource_keys(&self) -> &[ResourceKey]
pub fn resource_keys(&self) -> &[ResourceKey]
A list of resource keys to be processed with the current request. Each element in the list consists of the resource type and resource ID.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .resource_keys.is_none().
source§impl StartRemediationExecutionInput
impl StartRemediationExecutionInput
sourcepub fn builder() -> StartRemediationExecutionInputBuilder
pub fn builder() -> StartRemediationExecutionInputBuilder
Creates a new builder-style object to manufacture StartRemediationExecutionInput.
Trait Implementations§
source§impl Clone for StartRemediationExecutionInput
impl Clone for StartRemediationExecutionInput
source§fn clone(&self) -> StartRemediationExecutionInput
fn clone(&self) -> StartRemediationExecutionInput
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 PartialEq for StartRemediationExecutionInput
impl PartialEq for StartRemediationExecutionInput
source§fn eq(&self, other: &StartRemediationExecutionInput) -> bool
fn eq(&self, other: &StartRemediationExecutionInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StartRemediationExecutionInput
Auto Trait Implementations§
impl RefUnwindSafe for StartRemediationExecutionInput
impl Send for StartRemediationExecutionInput
impl Sync for StartRemediationExecutionInput
impl Unpin for StartRemediationExecutionInput
impl UnwindSafe for StartRemediationExecutionInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.