1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteRecommendationTemplate`](crate::operation::delete_recommendation_template::builders::DeleteRecommendationTemplateFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`recommendation_template_arn(impl Into<String>)`](crate::operation::delete_recommendation_template::builders::DeleteRecommendationTemplateFluentBuilder::recommendation_template_arn) / [`set_recommendation_template_arn(Option<String>)`](crate::operation::delete_recommendation_template::builders::DeleteRecommendationTemplateFluentBuilder::set_recommendation_template_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) for a recommendation template.</p><br>
    ///   - [`client_token(impl Into<String>)`](crate::operation::delete_recommendation_template::builders::DeleteRecommendationTemplateFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::delete_recommendation_template::builders::DeleteRecommendationTemplateFluentBuilder::set_client_token):<br>required: **false**<br><p>Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. You should not reuse the same client token for other API requests.</p><br>
    /// - On success, responds with [`DeleteRecommendationTemplateOutput`](crate::operation::delete_recommendation_template::DeleteRecommendationTemplateOutput) with field(s):
    ///   - [`recommendation_template_arn(String)`](crate::operation::delete_recommendation_template::DeleteRecommendationTemplateOutput::recommendation_template_arn): <p>The Amazon Resource Name (ARN) for a recommendation template.</p>
    ///   - [`status(RecommendationTemplateStatus)`](crate::operation::delete_recommendation_template::DeleteRecommendationTemplateOutput::status): <p>Status of the action.</p>
    /// - On failure, responds with [`SdkError<DeleteRecommendationTemplateError>`](crate::operation::delete_recommendation_template::DeleteRecommendationTemplateError)
    pub fn delete_recommendation_template(
        &self,
    ) -> crate::operation::delete_recommendation_template::builders::DeleteRecommendationTemplateFluentBuilder {
        crate::operation::delete_recommendation_template::builders::DeleteRecommendationTemplateFluentBuilder::new(self.handle.clone())
    }
}