Struct aws_sdk_config::client::fluent_builders::PutEvaluations
source · [−]pub struct PutEvaluations { /* private fields */ }Expand description
Fluent builder constructing a request to PutEvaluations.
Used by an Lambda function to deliver evaluation results to Config. This action is required in every Lambda function that is invoked by an Config rule.
Implementations
sourceimpl PutEvaluations
impl PutEvaluations
sourcepub async fn send(
self
) -> Result<PutEvaluationsOutput, SdkError<PutEvaluationsError>>
pub async fn send(
self
) -> Result<PutEvaluationsOutput, SdkError<PutEvaluationsError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn evaluations(self, input: Evaluation) -> Self
pub fn evaluations(self, input: Evaluation) -> Self
Appends an item to Evaluations.
To override the contents of this collection use set_evaluations.
The assessments that the Lambda function performs. Each evaluation identifies an Amazon Web Services resource and indicates whether it complies with the Config rule that invokes the Lambda function.
sourcepub fn set_evaluations(self, input: Option<Vec<Evaluation>>) -> Self
pub fn set_evaluations(self, input: Option<Vec<Evaluation>>) -> Self
The assessments that the Lambda function performs. Each evaluation identifies an Amazon Web Services resource and indicates whether it complies with the Config rule that invokes the Lambda function.
sourcepub fn result_token(self, input: impl Into<String>) -> Self
pub fn result_token(self, input: impl Into<String>) -> Self
An encrypted token that associates an evaluation with an Config rule. Identifies the rule and the event that triggered the evaluation.
sourcepub fn set_result_token(self, input: Option<String>) -> Self
pub fn set_result_token(self, input: Option<String>) -> Self
An encrypted token that associates an evaluation with an Config rule. Identifies the rule and the event that triggered the evaluation.
sourcepub fn test_mode(self, input: bool) -> Self
pub fn test_mode(self, input: bool) -> Self
Use this parameter to specify a test run for PutEvaluations. You can verify whether your Lambda function will deliver evaluation results to Config. No updates occur to your existing evaluations, and evaluation results are not sent to Config.
When TestMode is true, PutEvaluations doesn't require a valid value for the ResultToken parameter, but the value cannot be null.
sourcepub fn set_test_mode(self, input: Option<bool>) -> Self
pub fn set_test_mode(self, input: Option<bool>) -> Self
Use this parameter to specify a test run for PutEvaluations. You can verify whether your Lambda function will deliver evaluation results to Config. No updates occur to your existing evaluations, and evaluation results are not sent to Config.
When TestMode is true, PutEvaluations doesn't require a valid value for the ResultToken parameter, but the value cannot be null.
Trait Implementations
sourceimpl Clone for PutEvaluations
impl Clone for PutEvaluations
sourcefn clone(&self) -> PutEvaluations
fn clone(&self) -> PutEvaluations
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
Auto Trait Implementations
impl !RefUnwindSafe for PutEvaluations
impl Send for PutEvaluations
impl Sync for PutEvaluations
impl Unpin for PutEvaluations
impl !UnwindSafe for PutEvaluations
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more