aws_sdk_mediaconnect/client/start_router_input.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 [`StartRouterInput`](crate::operation::start_router_input::builders::StartRouterInputFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`arn(impl Into<String>)`](crate::operation::start_router_input::builders::StartRouterInputFluentBuilder::arn) / [`set_arn(Option<String>)`](crate::operation::start_router_input::builders::StartRouterInputFluentBuilder::set_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the router input that you want to start.</p><br>
7 /// - On success, responds with [`StartRouterInputOutput`](crate::operation::start_router_input::StartRouterInputOutput) with field(s):
8 /// - [`arn(String)`](crate::operation::start_router_input::StartRouterInputOutput::arn): <p>The ARN of the router input that was started.</p>
9 /// - [`name(String)`](crate::operation::start_router_input::StartRouterInputOutput::name): <p>The name of the router input that was started.</p>
10 /// - [`state(RouterInputState)`](crate::operation::start_router_input::StartRouterInputOutput::state): <p>The current state of the router input after being started.</p>
11 /// - [`maintenance_schedule_type(MaintenanceScheduleType)`](crate::operation::start_router_input::StartRouterInputOutput::maintenance_schedule_type): <p>The type of maintenance schedule associated with the router input.</p>
12 /// - [`maintenance_schedule(Option<MaintenanceSchedule>)`](crate::operation::start_router_input::StartRouterInputOutput::maintenance_schedule): <p>The details of the maintenance schedule for the router input.</p>
13 /// - On failure, responds with [`SdkError<StartRouterInputError>`](crate::operation::start_router_input::StartRouterInputError)
14 pub fn start_router_input(&self) -> crate::operation::start_router_input::builders::StartRouterInputFluentBuilder {
15 crate::operation::start_router_input::builders::StartRouterInputFluentBuilder::new(self.handle.clone())
16 }
17}