1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetSystemTemplateRevisions`](crate::operation::get_system_template_revisions::builders::GetSystemTemplateRevisionsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::get_system_template_revisions::builders::GetSystemTemplateRevisionsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`id(impl Into<String>)`](crate::operation::get_system_template_revisions::builders::GetSystemTemplateRevisionsFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::get_system_template_revisions::builders::GetSystemTemplateRevisionsFluentBuilder::set_id):<br>required: **true**<br><p>The ID of the system template.</p> <p>The ID should be in the following format.</p> <p><code>urn:tdm:REGION/ACCOUNT ID/default:system:SYSTEMNAME</code></p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::get_system_template_revisions::builders::GetSystemTemplateRevisionsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::get_system_template_revisions::builders::GetSystemTemplateRevisionsFluentBuilder::set_next_token):<br>required: **false**<br><p>The string that specifies the next page of results. Use this when you're paginating results.</p><br>
    ///   - [`max_results(i32)`](crate::operation::get_system_template_revisions::builders::GetSystemTemplateRevisionsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::get_system_template_revisions::builders::GetSystemTemplateRevisionsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return in the response.</p><br>
    /// - On success, responds with [`GetSystemTemplateRevisionsOutput`](crate::operation::get_system_template_revisions::GetSystemTemplateRevisionsOutput) with field(s):
    ///   - [`summaries(Option<Vec::<SystemTemplateSummary>>)`](crate::operation::get_system_template_revisions::GetSystemTemplateRevisionsOutput::summaries): <p>An array of objects that contain summary data about the system template revisions.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::get_system_template_revisions::GetSystemTemplateRevisionsOutput::next_token): <p>The string to specify as <code>nextToken</code> when you request the next page of results.</p>
    /// - On failure, responds with [`SdkError<GetSystemTemplateRevisionsError>`](crate::operation::get_system_template_revisions::GetSystemTemplateRevisionsError)
    #[deprecated(note = "since: 2022-08-30")]
    pub fn get_system_template_revisions(
        &self,
    ) -> crate::operation::get_system_template_revisions::builders::GetSystemTemplateRevisionsFluentBuilder {
        crate::operation::get_system_template_revisions::builders::GetSystemTemplateRevisionsFluentBuilder::new(self.handle.clone())
    }
}