aws_sdk_config/client/put_external_evaluation.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`PutExternalEvaluation`](crate::operation::put_external_evaluation::builders::PutExternalEvaluationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`config_rule_name(impl Into<String>)`](crate::operation::put_external_evaluation::builders::PutExternalEvaluationFluentBuilder::config_rule_name) / [`set_config_rule_name(Option<String>)`](crate::operation::put_external_evaluation::builders::PutExternalEvaluationFluentBuilder::set_config_rule_name):<br>required: **true**<br><p>The name of the Config rule.</p><br>
7 /// - [`external_evaluation(ExternalEvaluation)`](crate::operation::put_external_evaluation::builders::PutExternalEvaluationFluentBuilder::external_evaluation) / [`set_external_evaluation(Option<ExternalEvaluation>)`](crate::operation::put_external_evaluation::builders::PutExternalEvaluationFluentBuilder::set_external_evaluation):<br>required: **true**<br><p>An <code>ExternalEvaluation</code> object that provides details about compliance.</p><br>
8 /// - On success, responds with [`PutExternalEvaluationOutput`](crate::operation::put_external_evaluation::PutExternalEvaluationOutput)
9 /// - On failure, responds with [`SdkError<PutExternalEvaluationError>`](crate::operation::put_external_evaluation::PutExternalEvaluationError)
10 pub fn put_external_evaluation(&self) -> crate::operation::put_external_evaluation::builders::PutExternalEvaluationFluentBuilder {
11 crate::operation::put_external_evaluation::builders::PutExternalEvaluationFluentBuilder::new(self.handle.clone())
12 }
13}