aws-sdk-groundstation 1.95.0

AWS SDK for AWS Ground Station
Documentation
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 [`GetAgentTaskResponseUrl`](crate::operation::get_agent_task_response_url::builders::GetAgentTaskResponseUrlFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`agent_id(impl Into<String>)`](crate::operation::get_agent_task_response_url::builders::GetAgentTaskResponseUrlFluentBuilder::agent_id) / [`set_agent_id(Option<String>)`](crate::operation::get_agent_task_response_url::builders::GetAgentTaskResponseUrlFluentBuilder::set_agent_id):<br>required: **true**<br><p>UUID of agent requesting the response URL.</p><br>
    ///   - [`task_id(impl Into<String>)`](crate::operation::get_agent_task_response_url::builders::GetAgentTaskResponseUrlFluentBuilder::task_id) / [`set_task_id(Option<String>)`](crate::operation::get_agent_task_response_url::builders::GetAgentTaskResponseUrlFluentBuilder::set_task_id):<br>required: **true**<br><p>GUID of the agent task for which the response URL is being requested.</p><br>
    /// - On success, responds with [`GetAgentTaskResponseUrlOutput`](crate::operation::get_agent_task_response_url::GetAgentTaskResponseUrlOutput) with field(s):
    ///   - [`agent_id(String)`](crate::operation::get_agent_task_response_url::GetAgentTaskResponseUrlOutput::agent_id): <p>UUID of the agent.</p>
    ///   - [`task_id(String)`](crate::operation::get_agent_task_response_url::GetAgentTaskResponseUrlOutput::task_id): <p>GUID of the agent task.</p>
    ///   - [`presigned_log_url(String)`](crate::operation::get_agent_task_response_url::GetAgentTaskResponseUrlOutput::presigned_log_url): <p>Presigned URL for uploading agent task response logs.</p>
    /// - On failure, responds with [`SdkError<GetAgentTaskResponseUrlError>`](crate::operation::get_agent_task_response_url::GetAgentTaskResponseUrlError)
    pub fn get_agent_task_response_url(&self) -> crate::operation::get_agent_task_response_url::builders::GetAgentTaskResponseUrlFluentBuilder {
        crate::operation::get_agent_task_response_url::builders::GetAgentTaskResponseUrlFluentBuilder::new(self.handle.clone())
    }
}