aws_sdk_emr/operation/list_steps/
builders.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2pub use crate::operation::list_steps::_list_steps_output::ListStepsOutputBuilder;
3
4pub use crate::operation::list_steps::_list_steps_input::ListStepsInputBuilder;
5
6impl crate::operation::list_steps::builders::ListStepsInputBuilder {
7    /// Sends a request with this input using the given client.
8    pub async fn send_with(
9        self,
10        client: &crate::Client,
11    ) -> ::std::result::Result<
12        crate::operation::list_steps::ListStepsOutput,
13        ::aws_smithy_runtime_api::client::result::SdkError<
14            crate::operation::list_steps::ListStepsError,
15            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
16        >,
17    > {
18        let mut fluent_builder = client.list_steps();
19        fluent_builder.inner = self;
20        fluent_builder.send().await
21    }
22}
23/// Fluent builder constructing a request to `ListSteps`.
24///
25/// <p>Provides a list of steps for the cluster in reverse order unless you specify <code>stepIds</code> with the request or filter by <code>StepStates</code>. You can specify a maximum of 10 <code>stepIDs</code>. The CLI automatically paginates results to return a list greater than 50 steps. To return more than 50 steps using the CLI, specify a <code>Marker</code>, which is a pagination token that indicates the next set of steps to retrieve.</p>
26#[derive(::std::clone::Clone, ::std::fmt::Debug)]
27pub struct ListStepsFluentBuilder {
28    handle: ::std::sync::Arc<crate::client::Handle>,
29    inner: crate::operation::list_steps::builders::ListStepsInputBuilder,
30    config_override: ::std::option::Option<crate::config::Builder>,
31}
32impl crate::client::customize::internal::CustomizableSend<crate::operation::list_steps::ListStepsOutput, crate::operation::list_steps::ListStepsError>
33    for ListStepsFluentBuilder
34{
35    fn send(
36        self,
37        config_override: crate::config::Builder,
38    ) -> crate::client::customize::internal::BoxFuture<
39        crate::client::customize::internal::SendResult<crate::operation::list_steps::ListStepsOutput, crate::operation::list_steps::ListStepsError>,
40    > {
41        ::std::boxed::Box::pin(async move { self.config_override(config_override).send().await })
42    }
43}
44impl ListStepsFluentBuilder {
45    /// Creates a new `ListStepsFluentBuilder`.
46    pub(crate) fn new(handle: ::std::sync::Arc<crate::client::Handle>) -> Self {
47        Self {
48            handle,
49            inner: ::std::default::Default::default(),
50            config_override: ::std::option::Option::None,
51        }
52    }
53    /// Access the ListSteps as a reference.
54    pub fn as_input(&self) -> &crate::operation::list_steps::builders::ListStepsInputBuilder {
55        &self.inner
56    }
57    /// Sends the request and returns the response.
58    ///
59    /// If an error occurs, an `SdkError` will be returned with additional details that
60    /// can be matched against.
61    ///
62    /// By default, any retryable failures will be retried twice. Retry behavior
63    /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
64    /// set when configuring the client.
65    pub async fn send(
66        self,
67    ) -> ::std::result::Result<
68        crate::operation::list_steps::ListStepsOutput,
69        ::aws_smithy_runtime_api::client::result::SdkError<
70            crate::operation::list_steps::ListStepsError,
71            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
72        >,
73    > {
74        let input = self
75            .inner
76            .build()
77            .map_err(::aws_smithy_runtime_api::client::result::SdkError::construction_failure)?;
78        let runtime_plugins = crate::operation::list_steps::ListSteps::operation_runtime_plugins(
79            self.handle.runtime_plugins.clone(),
80            &self.handle.conf,
81            self.config_override,
82        );
83        crate::operation::list_steps::ListSteps::orchestrate(&runtime_plugins, input).await
84    }
85
86    /// Consumes this builder, creating a customizable operation that can be modified before being sent.
87    pub fn customize(
88        self,
89    ) -> crate::client::customize::CustomizableOperation<
90        crate::operation::list_steps::ListStepsOutput,
91        crate::operation::list_steps::ListStepsError,
92        Self,
93    > {
94        crate::client::customize::CustomizableOperation::new(self)
95    }
96    pub(crate) fn config_override(mut self, config_override: impl ::std::convert::Into<crate::config::Builder>) -> Self {
97        self.set_config_override(::std::option::Option::Some(config_override.into()));
98        self
99    }
100
101    pub(crate) fn set_config_override(&mut self, config_override: ::std::option::Option<crate::config::Builder>) -> &mut Self {
102        self.config_override = config_override;
103        self
104    }
105    /// Create a paginator for this request
106    ///
107    /// Paginators are used by calling [`send().await`](crate::operation::list_steps::paginator::ListStepsPaginator::send) which returns a [`PaginationStream`](aws_smithy_async::future::pagination_stream::PaginationStream).
108    pub fn into_paginator(self) -> crate::operation::list_steps::paginator::ListStepsPaginator {
109        crate::operation::list_steps::paginator::ListStepsPaginator::new(self.handle, self.inner)
110    }
111    /// <p>The identifier of the cluster for which to list the steps.</p>
112    pub fn cluster_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
113        self.inner = self.inner.cluster_id(input.into());
114        self
115    }
116    /// <p>The identifier of the cluster for which to list the steps.</p>
117    pub fn set_cluster_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
118        self.inner = self.inner.set_cluster_id(input);
119        self
120    }
121    /// <p>The identifier of the cluster for which to list the steps.</p>
122    pub fn get_cluster_id(&self) -> &::std::option::Option<::std::string::String> {
123        self.inner.get_cluster_id()
124    }
125    ///
126    /// Appends an item to `StepStates`.
127    ///
128    /// To override the contents of this collection use [`set_step_states`](Self::set_step_states).
129    ///
130    /// <p>The filter to limit the step list based on certain states.</p>
131    pub fn step_states(mut self, input: crate::types::StepState) -> Self {
132        self.inner = self.inner.step_states(input);
133        self
134    }
135    /// <p>The filter to limit the step list based on certain states.</p>
136    pub fn set_step_states(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::StepState>>) -> Self {
137        self.inner = self.inner.set_step_states(input);
138        self
139    }
140    /// <p>The filter to limit the step list based on certain states.</p>
141    pub fn get_step_states(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::StepState>> {
142        self.inner.get_step_states()
143    }
144    ///
145    /// Appends an item to `StepIds`.
146    ///
147    /// To override the contents of this collection use [`set_step_ids`](Self::set_step_ids).
148    ///
149    /// <p>The filter to limit the step list based on the identifier of the steps. You can specify a maximum of ten Step IDs. The character constraint applies to the overall length of the array.</p>
150    pub fn step_ids(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
151        self.inner = self.inner.step_ids(input.into());
152        self
153    }
154    /// <p>The filter to limit the step list based on the identifier of the steps. You can specify a maximum of ten Step IDs. The character constraint applies to the overall length of the array.</p>
155    pub fn set_step_ids(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
156        self.inner = self.inner.set_step_ids(input);
157        self
158    }
159    /// <p>The filter to limit the step list based on the identifier of the steps. You can specify a maximum of ten Step IDs. The character constraint applies to the overall length of the array.</p>
160    pub fn get_step_ids(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
161        self.inner.get_step_ids()
162    }
163    /// <p>The maximum number of steps that a single <code>ListSteps</code> action returns is 50. To return a longer list of steps, use multiple <code>ListSteps</code> actions along with the <code>Marker</code> parameter, which is a pagination token that indicates the next set of results to retrieve.</p>
164    pub fn marker(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
165        self.inner = self.inner.marker(input.into());
166        self
167    }
168    /// <p>The maximum number of steps that a single <code>ListSteps</code> action returns is 50. To return a longer list of steps, use multiple <code>ListSteps</code> actions along with the <code>Marker</code> parameter, which is a pagination token that indicates the next set of results to retrieve.</p>
169    pub fn set_marker(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
170        self.inner = self.inner.set_marker(input);
171        self
172    }
173    /// <p>The maximum number of steps that a single <code>ListSteps</code> action returns is 50. To return a longer list of steps, use multiple <code>ListSteps</code> actions along with the <code>Marker</code> parameter, which is a pagination token that indicates the next set of results to retrieve.</p>
174    pub fn get_marker(&self) -> &::std::option::Option<::std::string::String> {
175        self.inner.get_marker()
176    }
177}