1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GenerateTemplate`](crate::operation::generate_template::builders::GenerateTemplateFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`app_id(impl Into<String>)`](crate::operation::generate_template::builders::GenerateTemplateFluentBuilder::app_id) / [`set_app_id(Option<String>)`](crate::operation::generate_template::builders::GenerateTemplateFluentBuilder::set_app_id):<br>required: **false**<br><p>The ID of the application associated with the CloudFormation template.</p><br>
    ///   - [`template_format(OutputFormat)`](crate::operation::generate_template::builders::GenerateTemplateFluentBuilder::template_format) / [`set_template_format(Option<OutputFormat>)`](crate::operation::generate_template::builders::GenerateTemplateFluentBuilder::set_template_format):<br>required: **false**<br><p>The format for generating the CloudFormation template.</p><br>
    /// - On success, responds with [`GenerateTemplateOutput`](crate::operation::generate_template::GenerateTemplateOutput) with field(s):
    ///   - [`s3_location(Option<S3Location>)`](crate::operation::generate_template::GenerateTemplateOutput::s3_location): <p>The location of the Amazon S3 object.</p>
    /// - On failure, responds with [`SdkError<GenerateTemplateError>`](crate::operation::generate_template::GenerateTemplateError)
    pub fn generate_template(&self) -> crate::operation::generate_template::builders::GenerateTemplateFluentBuilder {
        crate::operation::generate_template::builders::GenerateTemplateFluentBuilder::new(self.handle.clone())
    }
}