aws-sdk-mediaconvert 1.85.0

AWS SDK for AWS Elemental MediaConvert
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`Probe`](crate::operation::probe::builders::ProbeFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`input_files(ProbeInputFile)`](crate::operation::probe::builders::ProbeFluentBuilder::input_files) / [`set_input_files(Option<Vec::<ProbeInputFile>>)`](crate::operation::probe::builders::ProbeFluentBuilder::set_input_files):<br>required: **false**<br>Specify a media file to probe.<br>
    /// - On success, responds with [`ProbeOutput`](crate::operation::probe::ProbeOutput) with field(s):
    ///   - [`probe_results(Option<Vec::<ProbeResult>>)`](crate::operation::probe::ProbeOutput::probe_results): Probe results for your media file.
    /// - On failure, responds with [`SdkError<ProbeError>`](crate::operation::probe::ProbeError)
    pub fn probe(&self) -> crate::operation::probe::builders::ProbeFluentBuilder {
        crate::operation::probe::builders::ProbeFluentBuilder::new(self.handle.clone())
    }
}