aws_sdk_repostspace/client/update_channel.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 [`UpdateChannel`](crate::operation::update_channel::builders::UpdateChannelFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`space_id(impl Into<String>)`](crate::operation::update_channel::builders::UpdateChannelFluentBuilder::space_id) / [`set_space_id(Option<String>)`](crate::operation::update_channel::builders::UpdateChannelFluentBuilder::set_space_id):<br>required: **true**<br><p>The unique ID of the private re:Post.</p><br>
7 /// - [`channel_id(impl Into<String>)`](crate::operation::update_channel::builders::UpdateChannelFluentBuilder::channel_id) / [`set_channel_id(Option<String>)`](crate::operation::update_channel::builders::UpdateChannelFluentBuilder::set_channel_id):<br>required: **true**<br><p>The unique ID of the private re:Post channel.</p><br>
8 /// - [`channel_name(impl Into<String>)`](crate::operation::update_channel::builders::UpdateChannelFluentBuilder::channel_name) / [`set_channel_name(Option<String>)`](crate::operation::update_channel::builders::UpdateChannelFluentBuilder::set_channel_name):<br>required: **true**<br><p>The name for the channel. This must be unique per private re:Post.</p><br>
9 /// - [`channel_description(impl Into<String>)`](crate::operation::update_channel::builders::UpdateChannelFluentBuilder::channel_description) / [`set_channel_description(Option<String>)`](crate::operation::update_channel::builders::UpdateChannelFluentBuilder::set_channel_description):<br>required: **false**<br><p>A description for the channel. This is used only to help you identify this channel.</p><br>
10 /// - On success, responds with [`UpdateChannelOutput`](crate::operation::update_channel::UpdateChannelOutput)
11 /// - On failure, responds with [`SdkError<UpdateChannelError>`](crate::operation::update_channel::UpdateChannelError)
12 pub fn update_channel(&self) -> crate::operation::update_channel::builders::UpdateChannelFluentBuilder {
13 crate::operation::update_channel::builders::UpdateChannelFluentBuilder::new(self.handle.clone())
14 }
15}