aws_sdk_medialive/client/stop_input_device.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 [`StopInputDevice`](crate::operation::stop_input_device::builders::StopInputDeviceFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`input_device_id(impl Into<String>)`](crate::operation::stop_input_device::builders::StopInputDeviceFluentBuilder::input_device_id) / [`set_input_device_id(Option<String>)`](crate::operation::stop_input_device::builders::StopInputDeviceFluentBuilder::set_input_device_id):<br>required: **true**<br>The unique ID of the input device to stop. For example, hd-123456789abcdef.<br>
7 /// - On success, responds with [`StopInputDeviceOutput`](crate::operation::stop_input_device::StopInputDeviceOutput)
8 /// - On failure, responds with [`SdkError<StopInputDeviceError>`](crate::operation::stop_input_device::StopInputDeviceError)
9 pub fn stop_input_device(&self) -> crate::operation::stop_input_device::builders::StopInputDeviceFluentBuilder {
10 crate::operation::stop_input_device::builders::StopInputDeviceFluentBuilder::new(self.handle.clone())
11 }
12}