aws-sdk-securityagent 1.4.0

AWS SDK for AWS Security Agent
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 [`BatchGetCodeReviewJobs`](crate::operation::batch_get_code_review_jobs::builders::BatchGetCodeReviewJobsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`code_review_job_ids(impl Into<String>)`](crate::operation::batch_get_code_review_jobs::builders::BatchGetCodeReviewJobsFluentBuilder::code_review_job_ids) / [`set_code_review_job_ids(Option<Vec::<String>>)`](crate::operation::batch_get_code_review_jobs::builders::BatchGetCodeReviewJobsFluentBuilder::set_code_review_job_ids):<br>required: **true**<br><p>The list of code review job identifiers to retrieve.</p><br>
    ///   - [`agent_space_id(impl Into<String>)`](crate::operation::batch_get_code_review_jobs::builders::BatchGetCodeReviewJobsFluentBuilder::agent_space_id) / [`set_agent_space_id(Option<String>)`](crate::operation::batch_get_code_review_jobs::builders::BatchGetCodeReviewJobsFluentBuilder::set_agent_space_id):<br>required: **true**<br><p>The unique identifier of the agent space that contains the code review jobs.</p><br>
    /// - On success, responds with [`BatchGetCodeReviewJobsOutput`](crate::operation::batch_get_code_review_jobs::BatchGetCodeReviewJobsOutput) with field(s):
    ///   - [`code_review_jobs(Option<Vec::<CodeReviewJob>>)`](crate::operation::batch_get_code_review_jobs::BatchGetCodeReviewJobsOutput::code_review_jobs): <p>The list of code review jobs that were found.</p>
    ///   - [`not_found(Option<Vec::<String>>)`](crate::operation::batch_get_code_review_jobs::BatchGetCodeReviewJobsOutput::not_found): <p>The list of code review job identifiers that were not found.</p>
    /// - On failure, responds with [`SdkError<BatchGetCodeReviewJobsError>`](crate::operation::batch_get_code_review_jobs::BatchGetCodeReviewJobsError)
    pub fn batch_get_code_review_jobs(&self) -> crate::operation::batch_get_code_review_jobs::builders::BatchGetCodeReviewJobsFluentBuilder {
        crate::operation::batch_get_code_review_jobs::builders::BatchGetCodeReviewJobsFluentBuilder::new(self.handle.clone())
    }
}