aws_sdk_ecs/client/
describe_express_gateway_service.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DescribeExpressGatewayService`](crate::operation::describe_express_gateway_service::builders::DescribeExpressGatewayServiceFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`service_arn(impl Into<String>)`](crate::operation::describe_express_gateway_service::builders::DescribeExpressGatewayServiceFluentBuilder::service_arn) / [`set_service_arn(Option<String>)`](crate::operation::describe_express_gateway_service::builders::DescribeExpressGatewayServiceFluentBuilder::set_service_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the Express service to describe. The ARN uniquely identifies the service within your Amazon Web Services account and region.</p><br>
7    ///   - [`include(ExpressGatewayServiceInclude)`](crate::operation::describe_express_gateway_service::builders::DescribeExpressGatewayServiceFluentBuilder::include) / [`set_include(Option<Vec::<ExpressGatewayServiceInclude>>)`](crate::operation::describe_express_gateway_service::builders::DescribeExpressGatewayServiceFluentBuilder::set_include):<br>required: **false**<br><p>Specifies additional information to include in the response. Valid values are <code>TAGS</code> to include resource tags associated with the Express service.</p><br>
8    /// - On success, responds with [`DescribeExpressGatewayServiceOutput`](crate::operation::describe_express_gateway_service::DescribeExpressGatewayServiceOutput) with field(s):
9    ///   - [`service(Option<EcsExpressGatewayService>)`](crate::operation::describe_express_gateway_service::DescribeExpressGatewayServiceOutput::service): <p>The full description of the described express service.</p>
10    /// - On failure, responds with [`SdkError<DescribeExpressGatewayServiceError>`](crate::operation::describe_express_gateway_service::DescribeExpressGatewayServiceError)
11    pub fn describe_express_gateway_service(
12        &self,
13    ) -> crate::operation::describe_express_gateway_service::builders::DescribeExpressGatewayServiceFluentBuilder {
14        crate::operation::describe_express_gateway_service::builders::DescribeExpressGatewayServiceFluentBuilder::new(self.handle.clone())
15    }
16}