aws-sdk-inspector2 1.125.0

AWS SDK for Inspector2
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListCodeSecurityIntegrations`](crate::operation::list_code_security_integrations::builders::ListCodeSecurityIntegrationsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_code_security_integrations::builders::ListCodeSecurityIntegrationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_code_security_integrations::builders::ListCodeSecurityIntegrationsFluentBuilder::set_next_token):<br>required: **false**<br><p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_code_security_integrations::builders::ListCodeSecurityIntegrationsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_code_security_integrations::builders::ListCodeSecurityIntegrationsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return in a single call.</p><br>
    /// - On success, responds with [`ListCodeSecurityIntegrationsOutput`](crate::operation::list_code_security_integrations::ListCodeSecurityIntegrationsOutput) with field(s):
    ///   - [`integrations(Option<Vec::<CodeSecurityIntegrationSummary>>)`](crate::operation::list_code_security_integrations::ListCodeSecurityIntegrationsOutput::integrations): <p>A list of code security integration summaries.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_code_security_integrations::ListCodeSecurityIntegrationsOutput::next_token): <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.</p>
    /// - On failure, responds with [`SdkError<ListCodeSecurityIntegrationsError>`](crate::operation::list_code_security_integrations::ListCodeSecurityIntegrationsError)
    pub fn list_code_security_integrations(
        &self,
    ) -> crate::operation::list_code_security_integrations::builders::ListCodeSecurityIntegrationsFluentBuilder {
        crate::operation::list_code_security_integrations::builders::ListCodeSecurityIntegrationsFluentBuilder::new(self.handle.clone())
    }
}