// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`RedactChannelMessage`](crate::operation::redact_channel_message::builders::RedactChannelMessageFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`channel_arn(impl Into<String>)`](crate::operation::redact_channel_message::builders::RedactChannelMessageFluentBuilder::channel_arn) / [`set_channel_arn(Option<String>)`](crate::operation::redact_channel_message::builders::RedactChannelMessageFluentBuilder::set_channel_arn): <p>The ARN of the channel containing the messages that you want to redact.</p>
/// - [`message_id(impl Into<String>)`](crate::operation::redact_channel_message::builders::RedactChannelMessageFluentBuilder::message_id) / [`set_message_id(Option<String>)`](crate::operation::redact_channel_message::builders::RedactChannelMessageFluentBuilder::set_message_id): <p>The ID of the message being redacted.</p>
/// - [`chime_bearer(impl Into<String>)`](crate::operation::redact_channel_message::builders::RedactChannelMessageFluentBuilder::chime_bearer) / [`set_chime_bearer(Option<String>)`](crate::operation::redact_channel_message::builders::RedactChannelMessageFluentBuilder::set_chime_bearer): <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
/// - On success, responds with [`RedactChannelMessageOutput`](crate::operation::redact_channel_message::RedactChannelMessageOutput) with field(s):
/// - [`channel_arn(Option<String>)`](crate::operation::redact_channel_message::RedactChannelMessageOutput::channel_arn): <p>The ARN of the channel containing the messages that you want to redact.</p>
/// - [`message_id(Option<String>)`](crate::operation::redact_channel_message::RedactChannelMessageOutput::message_id): <p>The ID of the message being redacted.</p>
/// - On failure, responds with [`SdkError<RedactChannelMessageError>`](crate::operation::redact_channel_message::RedactChannelMessageError)
pub fn redact_channel_message(
&self,
) -> crate::operation::redact_channel_message::builders::RedactChannelMessageFluentBuilder {
crate::operation::redact_channel_message::builders::RedactChannelMessageFluentBuilder::new(
self.handle.clone(),
)
}
}