aws_sdk_deadline/client/
delete_queue_fleet_association.rs

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 [`DeleteQueueFleetAssociation`](crate::operation::delete_queue_fleet_association::builders::DeleteQueueFleetAssociationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`farm_id(impl Into<String>)`](crate::operation::delete_queue_fleet_association::builders::DeleteQueueFleetAssociationFluentBuilder::farm_id) / [`set_farm_id(Option<String>)`](crate::operation::delete_queue_fleet_association::builders::DeleteQueueFleetAssociationFluentBuilder::set_farm_id):<br>required: **true**<br><p>The farm ID of the farm that holds the queue-fleet association.</p><br>
    ///   - [`queue_id(impl Into<String>)`](crate::operation::delete_queue_fleet_association::builders::DeleteQueueFleetAssociationFluentBuilder::queue_id) / [`set_queue_id(Option<String>)`](crate::operation::delete_queue_fleet_association::builders::DeleteQueueFleetAssociationFluentBuilder::set_queue_id):<br>required: **true**<br><p>The queue ID of the queue-fleet association.</p><br>
    ///   - [`fleet_id(impl Into<String>)`](crate::operation::delete_queue_fleet_association::builders::DeleteQueueFleetAssociationFluentBuilder::fleet_id) / [`set_fleet_id(Option<String>)`](crate::operation::delete_queue_fleet_association::builders::DeleteQueueFleetAssociationFluentBuilder::set_fleet_id):<br>required: **true**<br><p>The fleet ID of the queue-fleet association.</p><br>
    /// - On success, responds with [`DeleteQueueFleetAssociationOutput`](crate::operation::delete_queue_fleet_association::DeleteQueueFleetAssociationOutput)
    /// - On failure, responds with [`SdkError<DeleteQueueFleetAssociationError>`](crate::operation::delete_queue_fleet_association::DeleteQueueFleetAssociationError)
    pub fn delete_queue_fleet_association(
        &self,
    ) -> crate::operation::delete_queue_fleet_association::builders::DeleteQueueFleetAssociationFluentBuilder {
        crate::operation::delete_queue_fleet_association::builders::DeleteQueueFleetAssociationFluentBuilder::new(self.handle.clone())
    }
}