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 [`DescribeServices`](crate::operation::describe_services::builders::DescribeServicesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`cluster(impl Into<String>)`](crate::operation::describe_services::builders::DescribeServicesFluentBuilder::cluster) / [`set_cluster(Option<String>)`](crate::operation::describe_services::builders::DescribeServicesFluentBuilder::set_cluster):<br>required: **false**<br><p>The short name or full Amazon Resource Name (ARN)the cluster that hosts the service to describe. If you do not specify a cluster, the default cluster is assumed. This parameter is required if the service or services you are describing were launched in any cluster other than the default cluster.</p><br>
    ///   - [`services(impl Into<String>)`](crate::operation::describe_services::builders::DescribeServicesFluentBuilder::services) / [`set_services(Option<Vec::<String>>)`](crate::operation::describe_services::builders::DescribeServicesFluentBuilder::set_services):<br>required: **true**<br><p>A list of services to describe. You may specify up to 10 services to describe in a single operation.</p><br>
    ///   - [`include(ServiceField)`](crate::operation::describe_services::builders::DescribeServicesFluentBuilder::include) / [`set_include(Option<Vec::<ServiceField>>)`](crate::operation::describe_services::builders::DescribeServicesFluentBuilder::set_include):<br>required: **false**<br><p>Determines whether you want to see the resource tags for the service. If <code>TAGS</code> is specified, the tags are included in the response. If this field is omitted, tags aren't included in the response.</p><br>
    /// - On success, responds with [`DescribeServicesOutput`](crate::operation::describe_services::DescribeServicesOutput) with field(s):
    ///   - [`services(Option<Vec::<Service>>)`](crate::operation::describe_services::DescribeServicesOutput::services): <p>The list of services described.</p>
    ///   - [`failures(Option<Vec::<Failure>>)`](crate::operation::describe_services::DescribeServicesOutput::failures): <p>Any failures associated with the call.</p>
    /// - On failure, responds with [`SdkError<DescribeServicesError>`](crate::operation::describe_services::DescribeServicesError)
    pub fn describe_services(&self) -> crate::operation::describe_services::builders::DescribeServicesFluentBuilder {
        crate::operation::describe_services::builders::DescribeServicesFluentBuilder::new(self.handle.clone())
    }
}