aws-sdk-securityagent 1.8.0

AWS SDK for AWS Security Agent
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListThreatModelJobTasks`](crate::operation::list_threat_model_job_tasks::builders::ListThreatModelJobTasksFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_threat_model_job_tasks::builders::ListThreatModelJobTasksFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`agent_space_id(impl Into<String>)`](crate::operation::list_threat_model_job_tasks::builders::ListThreatModelJobTasksFluentBuilder::agent_space_id) / [`set_agent_space_id(Option<String>)`](crate::operation::list_threat_model_job_tasks::builders::ListThreatModelJobTasksFluentBuilder::set_agent_space_id):<br>required: **true**<br><p>The unique identifier of the agent space.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_threat_model_job_tasks::builders::ListThreatModelJobTasksFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_threat_model_job_tasks::builders::ListThreatModelJobTasksFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return in a single call.</p><br>
    ///   - [`threat_model_job_id(impl Into<String>)`](crate::operation::list_threat_model_job_tasks::builders::ListThreatModelJobTasksFluentBuilder::threat_model_job_id) / [`set_threat_model_job_id(Option<String>)`](crate::operation::list_threat_model_job_tasks::builders::ListThreatModelJobTasksFluentBuilder::set_threat_model_job_id):<br>required: **true**<br><p>The unique identifier of the threat model job to list tasks for.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_threat_model_job_tasks::builders::ListThreatModelJobTasksFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_threat_model_job_tasks::builders::ListThreatModelJobTasksFluentBuilder::set_next_token):<br>required: **false**<br><p>A token to use for paginating results that are returned in the response.</p><br>
    /// - On success, responds with [`ListThreatModelJobTasksOutput`](crate::operation::list_threat_model_job_tasks::ListThreatModelJobTasksOutput) with field(s):
    ///   - [`threat_model_job_task_summaries(Option<Vec::<ThreatModelJobTaskSummary>>)`](crate::operation::list_threat_model_job_tasks::ListThreatModelJobTasksOutput::threat_model_job_task_summaries): <p>The list of threat model job task summaries.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_threat_model_job_tasks::ListThreatModelJobTasksOutput::next_token): <p>A token to use for paginating results that are returned in the response.</p>
    /// - On failure, responds with [`SdkError<ListThreatModelJobTasksError>`](crate::operation::list_threat_model_job_tasks::ListThreatModelJobTasksError)
    pub fn list_threat_model_job_tasks(&self) -> crate::operation::list_threat_model_job_tasks::builders::ListThreatModelJobTasksFluentBuilder {
        crate::operation::list_threat_model_job_tasks::builders::ListThreatModelJobTasksFluentBuilder::new(self.handle.clone())
    }
}