aws-sdk-ecs 1.128.0

AWS SDK for Amazon EC2 Container Service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeDaemon`](crate::operation::describe_daemon::builders::DescribeDaemonFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`daemon_arn(impl Into<String>)`](crate::operation::describe_daemon::builders::DescribeDaemonFluentBuilder::daemon_arn) / [`set_daemon_arn(Option<String>)`](crate::operation::describe_daemon::builders::DescribeDaemonFluentBuilder::set_daemon_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the daemon to describe.</p><br>
    /// - On success, responds with [`DescribeDaemonOutput`](crate::operation::describe_daemon::DescribeDaemonOutput) with field(s):
    ///   - [`daemon(Option<DaemonDetail>)`](crate::operation::describe_daemon::DescribeDaemonOutput::daemon): <p>The full description of the daemon, including the current revisions, deployment ARN, cluster, and status information.</p>
    /// - On failure, responds with [`SdkError<DescribeDaemonError>`](crate::operation::describe_daemon::DescribeDaemonError)
    pub fn describe_daemon(&self) -> crate::operation::describe_daemon::builders::DescribeDaemonFluentBuilder {
        crate::operation::describe_daemon::builders::DescribeDaemonFluentBuilder::new(self.handle.clone())
    }
}