aws_sdk_iot/operation/list_managed_job_templates/
_list_managed_job_templates_input.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2#[allow(missing_docs)] // documentation missing in model
3#[non_exhaustive]
4#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
5pub struct ListManagedJobTemplatesInput {
6    /// <p>An optional parameter for template name. If specified, only the versions of the managed job templates that have the specified template name will be returned.</p>
7    pub template_name: ::std::option::Option<::std::string::String>,
8    /// <p>Maximum number of entries that can be returned.</p>
9    pub max_results: ::std::option::Option<i32>,
10    /// <p>The token to retrieve the next set of results.</p>
11    pub next_token: ::std::option::Option<::std::string::String>,
12}
13impl ListManagedJobTemplatesInput {
14    /// <p>An optional parameter for template name. If specified, only the versions of the managed job templates that have the specified template name will be returned.</p>
15    pub fn template_name(&self) -> ::std::option::Option<&str> {
16        self.template_name.as_deref()
17    }
18    /// <p>Maximum number of entries that can be returned.</p>
19    pub fn max_results(&self) -> ::std::option::Option<i32> {
20        self.max_results
21    }
22    /// <p>The token to retrieve the next set of results.</p>
23    pub fn next_token(&self) -> ::std::option::Option<&str> {
24        self.next_token.as_deref()
25    }
26}
27impl ListManagedJobTemplatesInput {
28    /// Creates a new builder-style object to manufacture [`ListManagedJobTemplatesInput`](crate::operation::list_managed_job_templates::ListManagedJobTemplatesInput).
29    pub fn builder() -> crate::operation::list_managed_job_templates::builders::ListManagedJobTemplatesInputBuilder {
30        crate::operation::list_managed_job_templates::builders::ListManagedJobTemplatesInputBuilder::default()
31    }
32}
33
34/// A builder for [`ListManagedJobTemplatesInput`](crate::operation::list_managed_job_templates::ListManagedJobTemplatesInput).
35#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
36#[non_exhaustive]
37pub struct ListManagedJobTemplatesInputBuilder {
38    pub(crate) template_name: ::std::option::Option<::std::string::String>,
39    pub(crate) max_results: ::std::option::Option<i32>,
40    pub(crate) next_token: ::std::option::Option<::std::string::String>,
41}
42impl ListManagedJobTemplatesInputBuilder {
43    /// <p>An optional parameter for template name. If specified, only the versions of the managed job templates that have the specified template name will be returned.</p>
44    pub fn template_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
45        self.template_name = ::std::option::Option::Some(input.into());
46        self
47    }
48    /// <p>An optional parameter for template name. If specified, only the versions of the managed job templates that have the specified template name will be returned.</p>
49    pub fn set_template_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
50        self.template_name = input;
51        self
52    }
53    /// <p>An optional parameter for template name. If specified, only the versions of the managed job templates that have the specified template name will be returned.</p>
54    pub fn get_template_name(&self) -> &::std::option::Option<::std::string::String> {
55        &self.template_name
56    }
57    /// <p>Maximum number of entries that can be returned.</p>
58    pub fn max_results(mut self, input: i32) -> Self {
59        self.max_results = ::std::option::Option::Some(input);
60        self
61    }
62    /// <p>Maximum number of entries that can be returned.</p>
63    pub fn set_max_results(mut self, input: ::std::option::Option<i32>) -> Self {
64        self.max_results = input;
65        self
66    }
67    /// <p>Maximum number of entries that can be returned.</p>
68    pub fn get_max_results(&self) -> &::std::option::Option<i32> {
69        &self.max_results
70    }
71    /// <p>The token to retrieve the next set of results.</p>
72    pub fn next_token(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
73        self.next_token = ::std::option::Option::Some(input.into());
74        self
75    }
76    /// <p>The token to retrieve the next set of results.</p>
77    pub fn set_next_token(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
78        self.next_token = input;
79        self
80    }
81    /// <p>The token to retrieve the next set of results.</p>
82    pub fn get_next_token(&self) -> &::std::option::Option<::std::string::String> {
83        &self.next_token
84    }
85    /// Consumes the builder and constructs a [`ListManagedJobTemplatesInput`](crate::operation::list_managed_job_templates::ListManagedJobTemplatesInput).
86    pub fn build(
87        self,
88    ) -> ::std::result::Result<
89        crate::operation::list_managed_job_templates::ListManagedJobTemplatesInput,
90        ::aws_smithy_types::error::operation::BuildError,
91    > {
92        ::std::result::Result::Ok(crate::operation::list_managed_job_templates::ListManagedJobTemplatesInput {
93            template_name: self.template_name,
94            max_results: self.max_results,
95            next_token: self.next_token,
96        })
97    }
98}