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 [`GetDeviceFleetReport`](crate::operation::get_device_fleet_report::builders::GetDeviceFleetReportFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`device_fleet_name(impl Into<String>)`](crate::operation::get_device_fleet_report::builders::GetDeviceFleetReportFluentBuilder::device_fleet_name) / [`set_device_fleet_name(Option<String>)`](crate::operation::get_device_fleet_report::builders::GetDeviceFleetReportFluentBuilder::set_device_fleet_name):<br>required: **true**<br><p>The name of the fleet.</p><br>
    /// - On success, responds with [`GetDeviceFleetReportOutput`](crate::operation::get_device_fleet_report::GetDeviceFleetReportOutput) with field(s):
    ///   - [`device_fleet_arn(Option<String>)`](crate::operation::get_device_fleet_report::GetDeviceFleetReportOutput::device_fleet_arn): <p>The Amazon Resource Name (ARN) of the device.</p>
    ///   - [`device_fleet_name(Option<String>)`](crate::operation::get_device_fleet_report::GetDeviceFleetReportOutput::device_fleet_name): <p>The name of the fleet.</p>
    ///   - [`output_config(Option<EdgeOutputConfig>)`](crate::operation::get_device_fleet_report::GetDeviceFleetReportOutput::output_config): <p>The output configuration for storing sample data collected by the fleet.</p>
    ///   - [`description(Option<String>)`](crate::operation::get_device_fleet_report::GetDeviceFleetReportOutput::description): <p>Description of the fleet.</p>
    ///   - [`report_generated(Option<DateTime>)`](crate::operation::get_device_fleet_report::GetDeviceFleetReportOutput::report_generated): <p>Timestamp of when the report was generated.</p>
    ///   - [`device_stats(Option<DeviceStats>)`](crate::operation::get_device_fleet_report::GetDeviceFleetReportOutput::device_stats): <p>Status of devices.</p>
    ///   - [`agent_versions(Option<Vec::<AgentVersion>>)`](crate::operation::get_device_fleet_report::GetDeviceFleetReportOutput::agent_versions): <p>The versions of Edge Manager agent deployed on the fleet.</p>
    ///   - [`model_stats(Option<Vec::<EdgeModelStat>>)`](crate::operation::get_device_fleet_report::GetDeviceFleetReportOutput::model_stats): <p>Status of model on device.</p>
    /// - On failure, responds with [`SdkError<GetDeviceFleetReportError>`](crate::operation::get_device_fleet_report::GetDeviceFleetReportError)
    pub fn get_device_fleet_report(&self) -> crate::operation::get_device_fleet_report::builders::GetDeviceFleetReportFluentBuilder {
        crate::operation::get_device_fleet_report::builders::GetDeviceFleetReportFluentBuilder::new(self.handle.clone())
    }
}