aws-sdk-quicksight 1.145.0

AWS SDK for Amazon QuickSight
Documentation
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 [`DescribeAgent`](crate::operation::describe_agent::builders::DescribeAgentFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`agent_id(impl Into<String>)`](crate::operation::describe_agent::builders::DescribeAgentFluentBuilder::agent_id) / [`set_agent_id(Option<String>)`](crate::operation::describe_agent::builders::DescribeAgentFluentBuilder::set_agent_id):<br>required: **true**<br><p>The unique identifier for the agent.</p><br>
    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::describe_agent::builders::DescribeAgentFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::describe_agent::builders::DescribeAgentFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the agent.</p><br>
    /// - On success, responds with [`DescribeAgentOutput`](crate::operation::describe_agent::DescribeAgentOutput) with field(s):
    ///   - [`agent(Option<Agent>)`](crate::operation::describe_agent::DescribeAgentOutput::agent): <p>The full details of the agent, including its configuration, status, and associations.</p>
    ///   - [`request_id(Option<String>)`](crate::operation::describe_agent::DescribeAgentOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
    /// - On failure, responds with [`SdkError<DescribeAgentError>`](crate::operation::describe_agent::DescribeAgentError)
    pub fn describe_agent(&self) -> crate::operation::describe_agent::builders::DescribeAgentFluentBuilder {
        crate::operation::describe_agent::builders::DescribeAgentFluentBuilder::new(self.handle.clone())
    }
}