#[non_exhaustive]pub struct EvaluationResultQualifierBuilder { /* private fields */ }Expand description
A builder for EvaluationResultQualifier.
Implementations§
source§impl EvaluationResultQualifierBuilder
impl EvaluationResultQualifierBuilder
sourcepub fn config_rule_name(self, input: impl Into<String>) -> Self
pub fn config_rule_name(self, input: impl Into<String>) -> Self
The name of the Config rule that was used in the evaluation.
sourcepub fn set_config_rule_name(self, input: Option<String>) -> Self
pub fn set_config_rule_name(self, input: Option<String>) -> Self
The name of the Config rule that was used in the evaluation.
sourcepub fn get_config_rule_name(&self) -> &Option<String>
pub fn get_config_rule_name(&self) -> &Option<String>
The name of the Config rule that was used in the evaluation.
sourcepub fn resource_type(self, input: impl Into<String>) -> Self
pub fn resource_type(self, input: impl Into<String>) -> Self
The type of Amazon Web Services resource that was evaluated.
sourcepub fn set_resource_type(self, input: Option<String>) -> Self
pub fn set_resource_type(self, input: Option<String>) -> Self
The type of Amazon Web Services resource that was evaluated.
sourcepub fn get_resource_type(&self) -> &Option<String>
pub fn get_resource_type(&self) -> &Option<String>
The type of Amazon Web Services resource that was evaluated.
sourcepub fn resource_id(self, input: impl Into<String>) -> Self
pub fn resource_id(self, input: impl Into<String>) -> Self
The ID of the evaluated Amazon Web Services resource.
sourcepub fn set_resource_id(self, input: Option<String>) -> Self
pub fn set_resource_id(self, input: Option<String>) -> Self
The ID of the evaluated Amazon Web Services resource.
sourcepub fn get_resource_id(&self) -> &Option<String>
pub fn get_resource_id(&self) -> &Option<String>
The ID of the evaluated Amazon Web Services resource.
sourcepub fn evaluation_mode(self, input: EvaluationMode) -> Self
pub fn evaluation_mode(self, input: EvaluationMode) -> Self
The mode of an evaluation. The valid values are Detective or Proactive.
sourcepub fn set_evaluation_mode(self, input: Option<EvaluationMode>) -> Self
pub fn set_evaluation_mode(self, input: Option<EvaluationMode>) -> Self
The mode of an evaluation. The valid values are Detective or Proactive.
sourcepub fn get_evaluation_mode(&self) -> &Option<EvaluationMode>
pub fn get_evaluation_mode(&self) -> &Option<EvaluationMode>
The mode of an evaluation. The valid values are Detective or Proactive.
sourcepub fn build(self) -> EvaluationResultQualifier
pub fn build(self) -> EvaluationResultQualifier
Consumes the builder and constructs a EvaluationResultQualifier.
Trait Implementations§
source§impl Clone for EvaluationResultQualifierBuilder
impl Clone for EvaluationResultQualifierBuilder
source§fn clone(&self) -> EvaluationResultQualifierBuilder
fn clone(&self) -> EvaluationResultQualifierBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for EvaluationResultQualifierBuilder
impl Default for EvaluationResultQualifierBuilder
source§fn default() -> EvaluationResultQualifierBuilder
fn default() -> EvaluationResultQualifierBuilder
source§impl PartialEq for EvaluationResultQualifierBuilder
impl PartialEq for EvaluationResultQualifierBuilder
source§fn eq(&self, other: &EvaluationResultQualifierBuilder) -> bool
fn eq(&self, other: &EvaluationResultQualifierBuilder) -> bool
self and other values to be equal, and is used
by ==.