aws-sdk-iotmanagedintegrations 1.42.0

AWS SDK for Managed integrations for AWS IoT Device Management
Documentation
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 [`ListOtaTaskExecutions`](crate::operation::list_ota_task_executions::builders::ListOtaTaskExecutionsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_ota_task_executions::builders::ListOtaTaskExecutionsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`identifier(impl Into<String>)`](crate::operation::list_ota_task_executions::builders::ListOtaTaskExecutionsFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::list_ota_task_executions::builders::ListOtaTaskExecutionsFluentBuilder::set_identifier):<br>required: **true**<br><p>The over-the-air (OTA) task id.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_ota_task_executions::builders::ListOtaTaskExecutionsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_ota_task_executions::builders::ListOtaTaskExecutionsFluentBuilder::set_next_token):<br>required: **false**<br><p>A token that can be used to retrieve the next set of results.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_ota_task_executions::builders::ListOtaTaskExecutionsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_ota_task_executions::builders::ListOtaTaskExecutionsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return at one time.</p><br>
    /// - On success, responds with [`ListOtaTaskExecutionsOutput`](crate::operation::list_ota_task_executions::ListOtaTaskExecutionsOutput) with field(s):
    ///   - [`execution_summaries(Option<Vec::<OtaTaskExecutionSummaries>>)`](crate::operation::list_ota_task_executions::ListOtaTaskExecutionsOutput::execution_summaries): <p>A list of all of the over-the-air (OTA) task executions.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_ota_task_executions::ListOtaTaskExecutionsOutput::next_token): <p>A token that can be used to retrieve the next set of results.</p>
    /// - On failure, responds with [`SdkError<ListOtaTaskExecutionsError>`](crate::operation::list_ota_task_executions::ListOtaTaskExecutionsError)
    pub fn list_ota_task_executions(&self) -> crate::operation::list_ota_task_executions::builders::ListOtaTaskExecutionsFluentBuilder {
        crate::operation::list_ota_task_executions::builders::ListOtaTaskExecutionsFluentBuilder::new(self.handle.clone())
    }
}