aws_sdk_quicksight/client/update_topic.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 [`UpdateTopic`](crate::operation::update_topic::builders::UpdateTopicFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`aws_account_id(impl Into<String>)`](crate::operation::update_topic::builders::UpdateTopicFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::update_topic::builders::UpdateTopicFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the topic that you want to update.</p><br>
7 /// - [`topic_id(impl Into<String>)`](crate::operation::update_topic::builders::UpdateTopicFluentBuilder::topic_id) / [`set_topic_id(Option<String>)`](crate::operation::update_topic::builders::UpdateTopicFluentBuilder::set_topic_id):<br>required: **true**<br><p>The ID of the topic that you want to modify. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p><br>
8 /// - [`topic(TopicDetails)`](crate::operation::update_topic::builders::UpdateTopicFluentBuilder::topic) / [`set_topic(Option<TopicDetails>)`](crate::operation::update_topic::builders::UpdateTopicFluentBuilder::set_topic):<br>required: **true**<br><p>The definition of the topic that you want to update.</p><br>
9 /// - [`custom_instructions(CustomInstructions)`](crate::operation::update_topic::builders::UpdateTopicFluentBuilder::custom_instructions) / [`set_custom_instructions(Option<CustomInstructions>)`](crate::operation::update_topic::builders::UpdateTopicFluentBuilder::set_custom_instructions):<br>required: **false**<br><p>Custom instructions for the topic.</p><br>
10 /// - On success, responds with [`UpdateTopicOutput`](crate::operation::update_topic::UpdateTopicOutput) with field(s):
11 /// - [`topic_id(Option<String>)`](crate::operation::update_topic::UpdateTopicOutput::topic_id): <p>The ID of the topic that you want to modify. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
12 /// - [`arn(Option<String>)`](crate::operation::update_topic::UpdateTopicOutput::arn): <p>The Amazon Resource Name (ARN) of the topic.</p>
13 /// - [`refresh_arn(Option<String>)`](crate::operation::update_topic::UpdateTopicOutput::refresh_arn): <p>The Amazon Resource Name (ARN) of the topic refresh.</p>
14 /// - [`request_id(Option<String>)`](crate::operation::update_topic::UpdateTopicOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
15 /// - [`status(i32)`](crate::operation::update_topic::UpdateTopicOutput::status): <p>The HTTP status of the request.</p>
16 /// - On failure, responds with [`SdkError<UpdateTopicError>`](crate::operation::update_topic::UpdateTopicError)
17 pub fn update_topic(&self) -> crate::operation::update_topic::builders::UpdateTopicFluentBuilder {
18 crate::operation::update_topic::builders::UpdateTopicFluentBuilder::new(self.handle.clone())
19 }
20}