1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetAgentActionGroup`](crate::operation::get_agent_action_group::builders::GetAgentActionGroupFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`agent_id(impl Into<String>)`](crate::operation::get_agent_action_group::builders::GetAgentActionGroupFluentBuilder::agent_id) / [`set_agent_id(Option<String>)`](crate::operation::get_agent_action_group::builders::GetAgentActionGroupFluentBuilder::set_agent_id):<br>required: **true**<br>Id generated at the server side when an Agent is created<br>
    ///   - [`agent_version(impl Into<String>)`](crate::operation::get_agent_action_group::builders::GetAgentActionGroupFluentBuilder::agent_version) / [`set_agent_version(Option<String>)`](crate::operation::get_agent_action_group::builders::GetAgentActionGroupFluentBuilder::set_agent_version):<br>required: **true**<br>Version number generated when a version is created<br>
    ///   - [`action_group_id(impl Into<String>)`](crate::operation::get_agent_action_group::builders::GetAgentActionGroupFluentBuilder::action_group_id) / [`set_action_group_id(Option<String>)`](crate::operation::get_agent_action_group::builders::GetAgentActionGroupFluentBuilder::set_action_group_id):<br>required: **true**<br>Id generated at the server side when an Agent Action Group is created<br>
    /// - On success, responds with [`GetAgentActionGroupOutput`](crate::operation::get_agent_action_group::GetAgentActionGroupOutput) with field(s):
    ///   - [`agent_action_group(Option<AgentActionGroup>)`](crate::operation::get_agent_action_group::GetAgentActionGroupOutput::agent_action_group): Contains the information of an Agent Action Group
    /// - On failure, responds with [`SdkError<GetAgentActionGroupError>`](crate::operation::get_agent_action_group::GetAgentActionGroupError)
    pub fn get_agent_action_group(&self) -> crate::operation::get_agent_action_group::builders::GetAgentActionGroupFluentBuilder {
        crate::operation::get_agent_action_group::builders::GetAgentActionGroupFluentBuilder::new(self.handle.clone())
    }
}