aws-sdk-devopsagent 1.4.0

AWS SDK for AWS DevOps Agent Service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateAgentSpace`](crate::operation::update_agent_space::builders::UpdateAgentSpaceFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`agent_space_id(impl Into<String>)`](crate::operation::update_agent_space::builders::UpdateAgentSpaceFluentBuilder::agent_space_id) / [`set_agent_space_id(Option<String>)`](crate::operation::update_agent_space::builders::UpdateAgentSpaceFluentBuilder::set_agent_space_id):<br>required: **true**<br>The unique identifier of the AgentSpace<br>
    ///   - [`name(impl Into<String>)`](crate::operation::update_agent_space::builders::UpdateAgentSpaceFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_agent_space::builders::UpdateAgentSpaceFluentBuilder::set_name):<br>required: **false**<br>The updated name of the AgentSpace.<br>
    ///   - [`description(impl Into<String>)`](crate::operation::update_agent_space::builders::UpdateAgentSpaceFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_agent_space::builders::UpdateAgentSpaceFluentBuilder::set_description):<br>required: **false**<br>The updated description of the AgentSpace.<br>
    ///   - [`locale(impl Into<String>)`](crate::operation::update_agent_space::builders::UpdateAgentSpaceFluentBuilder::locale) / [`set_locale(Option<String>)`](crate::operation::update_agent_space::builders::UpdateAgentSpaceFluentBuilder::set_locale):<br>required: **false**<br>The updated locale for the AgentSpace, which determines the language used in agent responses.<br>
    /// - On success, responds with [`UpdateAgentSpaceOutput`](crate::operation::update_agent_space::UpdateAgentSpaceOutput) with field(s):
    ///   - [`agent_space(Option<AgentSpace>)`](crate::operation::update_agent_space::UpdateAgentSpaceOutput::agent_space): Represents a complete AgentSpace with all its properties, timestamps, encryption settings, and unique identifier.
    /// - On failure, responds with [`SdkError<UpdateAgentSpaceError>`](crate::operation::update_agent_space::UpdateAgentSpaceError)
    pub fn update_agent_space(&self) -> crate::operation::update_agent_space::builders::UpdateAgentSpaceFluentBuilder {
        crate::operation::update_agent_space::builders::UpdateAgentSpaceFluentBuilder::new(self.handle.clone())
    }
}