aws_sdk_mediaconnect/client/
get_router_input_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 [`GetRouterInputThumbnail`](crate::operation::get_router_input_thumbnail::builders::GetRouterInputThumbnailFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`arn(impl Into<String>)`](crate::operation::get_router_input_thumbnail::builders::GetRouterInputThumbnailFluentBuilder::arn) / [`set_arn(Option<String>)`](crate::operation::get_router_input_thumbnail::builders::GetRouterInputThumbnailFluentBuilder::set_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the router input that you want to see a thumbnail of.</p><br>
7    /// - On success, responds with [`GetRouterInputThumbnailOutput`](crate::operation::get_router_input_thumbnail::GetRouterInputThumbnailOutput) with field(s):
8    ///   - [`arn(String)`](crate::operation::get_router_input_thumbnail::GetRouterInputThumbnailOutput::arn): <p>The ARN of the router input.</p>
9    ///   - [`name(String)`](crate::operation::get_router_input_thumbnail::GetRouterInputThumbnailOutput::name): <p>The name of the router input.</p>
10    ///   - [`thumbnail_details(Option<RouterInputThumbnailDetails>)`](crate::operation::get_router_input_thumbnail::GetRouterInputThumbnailOutput::thumbnail_details): <p>The details of the thumbnail associated with the router input, including the thumbnail image, timecode, timestamp, and any associated error messages.</p>
11    /// - On failure, responds with [`SdkError<GetRouterInputThumbnailError>`](crate::operation::get_router_input_thumbnail::GetRouterInputThumbnailError)
12    pub fn get_router_input_thumbnail(&self) -> crate::operation::get_router_input_thumbnail::builders::GetRouterInputThumbnailFluentBuilder {
13        crate::operation::get_router_input_thumbnail::builders::GetRouterInputThumbnailFluentBuilder::new(self.handle.clone())
14    }
15}