aws-sdk-gamelift 1.118.0

AWS SDK for Amazon GameLift
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 [`DescribeFleetDeployment`](crate::operation::describe_fleet_deployment::builders::DescribeFleetDeploymentFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`fleet_id(impl Into<String>)`](crate::operation::describe_fleet_deployment::builders::DescribeFleetDeploymentFluentBuilder::fleet_id) / [`set_fleet_id(Option<String>)`](crate::operation::describe_fleet_deployment::builders::DescribeFleetDeploymentFluentBuilder::set_fleet_id):<br>required: **true**<br><p>A unique identifier for the container fleet. You can use either the fleet ID or ARN value.</p><br>
    ///   - [`deployment_id(impl Into<String>)`](crate::operation::describe_fleet_deployment::builders::DescribeFleetDeploymentFluentBuilder::deployment_id) / [`set_deployment_id(Option<String>)`](crate::operation::describe_fleet_deployment::builders::DescribeFleetDeploymentFluentBuilder::set_deployment_id):<br>required: **false**<br><p>A unique identifier for the deployment to return information for.</p><br>
    /// - On success, responds with [`DescribeFleetDeploymentOutput`](crate::operation::describe_fleet_deployment::DescribeFleetDeploymentOutput) with field(s):
    ///   - [`fleet_deployment(Option<FleetDeployment>)`](crate::operation::describe_fleet_deployment::DescribeFleetDeploymentOutput::fleet_deployment): <p>The requested deployment information.</p>
    ///   - [`locational_deployments(Option<HashMap::<String, LocationalDeployment>>)`](crate::operation::describe_fleet_deployment::DescribeFleetDeploymentOutput::locational_deployments): <p>If the deployment is for a multi-location fleet, the requests returns the deployment status in each fleet location.</p>
    /// - On failure, responds with [`SdkError<DescribeFleetDeploymentError>`](crate::operation::describe_fleet_deployment::DescribeFleetDeploymentError)
    pub fn describe_fleet_deployment(&self) -> crate::operation::describe_fleet_deployment::builders::DescribeFleetDeploymentFluentBuilder {
        crate::operation::describe_fleet_deployment::builders::DescribeFleetDeploymentFluentBuilder::new(self.handle.clone())
    }
}