aws_sdk_deadline/client/
get_queue_limit_association.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 [`GetQueueLimitAssociation`](crate::operation::get_queue_limit_association::builders::GetQueueLimitAssociationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`farm_id(impl Into<String>)`](crate::operation::get_queue_limit_association::builders::GetQueueLimitAssociationFluentBuilder::farm_id) / [`set_farm_id(Option<String>)`](crate::operation::get_queue_limit_association::builders::GetQueueLimitAssociationFluentBuilder::set_farm_id):<br>required: **true**<br><p>The unique identifier of the farm that contains the associated queue and limit.</p><br>
7    ///   - [`queue_id(impl Into<String>)`](crate::operation::get_queue_limit_association::builders::GetQueueLimitAssociationFluentBuilder::queue_id) / [`set_queue_id(Option<String>)`](crate::operation::get_queue_limit_association::builders::GetQueueLimitAssociationFluentBuilder::set_queue_id):<br>required: **true**<br><p>The unique identifier of the queue associated with the limit.</p><br>
8    ///   - [`limit_id(impl Into<String>)`](crate::operation::get_queue_limit_association::builders::GetQueueLimitAssociationFluentBuilder::limit_id) / [`set_limit_id(Option<String>)`](crate::operation::get_queue_limit_association::builders::GetQueueLimitAssociationFluentBuilder::set_limit_id):<br>required: **true**<br><p>The unique identifier of the limit associated with the queue.</p><br>
9    /// - On success, responds with [`GetQueueLimitAssociationOutput`](crate::operation::get_queue_limit_association::GetQueueLimitAssociationOutput) with field(s):
10    ///   - [`created_at(DateTime)`](crate::operation::get_queue_limit_association::GetQueueLimitAssociationOutput::created_at): <p>The Unix timestamp of the date and time that the association was created.</p>
11    ///   - [`created_by(String)`](crate::operation::get_queue_limit_association::GetQueueLimitAssociationOutput::created_by): <p>The user identifier of the person that created the association.</p>
12    ///   - [`updated_at(Option<DateTime>)`](crate::operation::get_queue_limit_association::GetQueueLimitAssociationOutput::updated_at): <p>The Unix timestamp of the date and time that the association was last updated.</p>
13    ///   - [`updated_by(Option<String>)`](crate::operation::get_queue_limit_association::GetQueueLimitAssociationOutput::updated_by): <p>The user identifier of the person that last updated the association.</p>
14    ///   - [`queue_id(String)`](crate::operation::get_queue_limit_association::GetQueueLimitAssociationOutput::queue_id): <p>The unique identifier of the queue associated with the limit.</p>
15    ///   - [`limit_id(String)`](crate::operation::get_queue_limit_association::GetQueueLimitAssociationOutput::limit_id): <p>The unique identifier of the limit associated with the queue.</p>
16    ///   - [`status(QueueLimitAssociationStatus)`](crate::operation::get_queue_limit_association::GetQueueLimitAssociationOutput::status): <p>The current status of the limit.</p>
17    /// - On failure, responds with [`SdkError<GetQueueLimitAssociationError>`](crate::operation::get_queue_limit_association::GetQueueLimitAssociationError)
18    pub fn get_queue_limit_association(&self) -> crate::operation::get_queue_limit_association::builders::GetQueueLimitAssociationFluentBuilder {
19        crate::operation::get_queue_limit_association::builders::GetQueueLimitAssociationFluentBuilder::new(self.handle.clone())
20    }
21}