aws_sdk_sagemaker/client/
get_device_fleet_report.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`GetDeviceFleetReport`](crate::operation::get_device_fleet_report::builders::GetDeviceFleetReportFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>
7    /// - On success, responds with [`GetDeviceFleetReportOutput`](crate::operation::get_device_fleet_report::GetDeviceFleetReportOutput) with field(s):
8    ///   - [`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>
9    ///   - [`device_fleet_name(Option<String>)`](crate::operation::get_device_fleet_report::GetDeviceFleetReportOutput::device_fleet_name): <p>The name of the fleet.</p>
10    ///   - [`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>
11    ///   - [`description(Option<String>)`](crate::operation::get_device_fleet_report::GetDeviceFleetReportOutput::description): <p>Description of the fleet.</p>
12    ///   - [`report_generated(Option<DateTime>)`](crate::operation::get_device_fleet_report::GetDeviceFleetReportOutput::report_generated): <p>Timestamp of when the report was generated.</p>
13    ///   - [`device_stats(Option<DeviceStats>)`](crate::operation::get_device_fleet_report::GetDeviceFleetReportOutput::device_stats): <p>Status of devices.</p>
14    ///   - [`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>
15    ///   - [`model_stats(Option<Vec::<EdgeModelStat>>)`](crate::operation::get_device_fleet_report::GetDeviceFleetReportOutput::model_stats): <p>Status of model on device.</p>
16    /// - On failure, responds with [`SdkError<GetDeviceFleetReportError>`](crate::operation::get_device_fleet_report::GetDeviceFleetReportError)
17    pub fn get_device_fleet_report(&self) -> crate::operation::get_device_fleet_report::builders::GetDeviceFleetReportFluentBuilder {
18        crate::operation::get_device_fleet_report::builders::GetDeviceFleetReportFluentBuilder::new(self.handle.clone())
19    }
20}