aws-sdk-wellarchitected 1.110.0

AWS SDK for AWS Well-Architected Tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateAgentContext`](crate::operation::update_agent_context::builders::UpdateAgentContextFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`client_token(impl Into<String>)`](crate::operation::update_agent_context::builders::UpdateAgentContextFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::update_agent_context::builders::UpdateAgentContextFluentBuilder::set_client_token):<br>required: **false**<br><p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p><br>
    ///   - [`profile_arn(impl Into<String>)`](crate::operation::update_agent_context::builders::UpdateAgentContextFluentBuilder::profile_arn) / [`set_profile_arn(Option<String>)`](crate::operation::update_agent_context::builders::UpdateAgentContextFluentBuilder::set_profile_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the profile containing the context.</p><br>
    ///   - [`id(impl Into<String>)`](crate::operation::update_agent_context::builders::UpdateAgentContextFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::update_agent_context::builders::UpdateAgentContextFluentBuilder::set_id):<br>required: **true**<br><p>The unique identifier of the context to update.</p><br>
    ///   - [`title(impl Into<String>)`](crate::operation::update_agent_context::builders::UpdateAgentContextFluentBuilder::title) / [`set_title(Option<String>)`](crate::operation::update_agent_context::builders::UpdateAgentContextFluentBuilder::set_title):<br>required: **false**<br><p>The updated title of the context.</p><br>
    ///   - [`content(ContextContent)`](crate::operation::update_agent_context::builders::UpdateAgentContextFluentBuilder::content) / [`set_content(Option<ContextContent>)`](crate::operation::update_agent_context::builders::UpdateAgentContextFluentBuilder::set_content):<br>required: **false**<br><p>The updated typed content of the context. The structure contains application-specific fields such as account IDs, Regions, services, and resource types.</p><br>
    /// - On success, responds with [`UpdateAgentContextOutput`](crate::operation::update_agent_context::UpdateAgentContextOutput) with field(s):
    ///   - [`context(Option<ContextSummary>)`](crate::operation::update_agent_context::UpdateAgentContextOutput::context): <p>The updated context summary.</p>
    /// - On failure, responds with [`SdkError<UpdateAgentContextError>`](crate::operation::update_agent_context::UpdateAgentContextError)
    pub fn update_agent_context(&self) -> crate::operation::update_agent_context::builders::UpdateAgentContextFluentBuilder {
        crate::operation::update_agent_context::builders::UpdateAgentContextFluentBuilder::new(self.handle.clone())
    }
}