aws_sdk_mediaconnect/client/
describe_flow_source_thumbnail.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 [`DescribeFlowSourceThumbnail`](crate::operation::describe_flow_source_thumbnail::builders::DescribeFlowSourceThumbnailFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`flow_arn(impl Into<String>)`](crate::operation::describe_flow_source_thumbnail::builders::DescribeFlowSourceThumbnailFluentBuilder::flow_arn) / [`set_flow_arn(Option<String>)`](crate::operation::describe_flow_source_thumbnail::builders::DescribeFlowSourceThumbnailFluentBuilder::set_flow_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the flow.</p><br>
7    /// - On success, responds with [`DescribeFlowSourceThumbnailOutput`](crate::operation::describe_flow_source_thumbnail::DescribeFlowSourceThumbnailOutput) with field(s):
8    ///   - [`thumbnail_details(Option<ThumbnailDetails>)`](crate::operation::describe_flow_source_thumbnail::DescribeFlowSourceThumbnailOutput::thumbnail_details): <p>The details of the thumbnail, including thumbnail base64 string, timecode and the time when thumbnail was generated.</p>
9    /// - On failure, responds with [`SdkError<DescribeFlowSourceThumbnailError>`](crate::operation::describe_flow_source_thumbnail::DescribeFlowSourceThumbnailError)
10    pub fn describe_flow_source_thumbnail(
11        &self,
12    ) -> crate::operation::describe_flow_source_thumbnail::builders::DescribeFlowSourceThumbnailFluentBuilder {
13        crate::operation::describe_flow_source_thumbnail::builders::DescribeFlowSourceThumbnailFluentBuilder::new(self.handle.clone())
14    }
15}